Package org.platanios.tensorflow.proto
Interface ResetRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ResetRequest
,ResetRequest.Builder
public interface ResetRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getContainer(int index)
A list of container names, which may be empty.com.google.protobuf.ByteString
getContainerBytes(int index)
A list of container names, which may be empty.int
getContainerCount()
A list of container names, which may be empty.java.util.List<java.lang.String>
getContainerList()
A list of container names, which may be empty.java.lang.String
getDeviceFilters(int index)
When any filters are present, only devices that match the filters will be reset.com.google.protobuf.ByteString
getDeviceFiltersBytes(int index)
When any filters are present, only devices that match the filters will be reset.int
getDeviceFiltersCount()
When any filters are present, only devices that match the filters will be reset.java.util.List<java.lang.String>
getDeviceFiltersList()
When any filters are present, only devices that match the filters will be reset.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContainerList
java.util.List<java.lang.String> getContainerList()
A list of container names, which may be empty. If 'container' is not empty, releases resources in the given containers in all devices. If 'container' is empty, releases resources in the default container in all devices.
repeated string container = 1;
- Returns:
- A list containing the container.
-
getContainerCount
int getContainerCount()
A list of container names, which may be empty. If 'container' is not empty, releases resources in the given containers in all devices. If 'container' is empty, releases resources in the default container in all devices.
repeated string container = 1;
- Returns:
- The count of container.
-
getContainer
java.lang.String getContainer(int index)
A list of container names, which may be empty. If 'container' is not empty, releases resources in the given containers in all devices. If 'container' is empty, releases resources in the default container in all devices.
repeated string container = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The container at the given index.
-
getContainerBytes
com.google.protobuf.ByteString getContainerBytes(int index)
A list of container names, which may be empty. If 'container' is not empty, releases resources in the given containers in all devices. If 'container' is empty, releases resources in the default container in all devices.
repeated string container = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the container at the given index.
-
getDeviceFiltersList
java.util.List<java.lang.String> getDeviceFiltersList()
When any filters are present, only devices that match the filters will be reset. Each filter can be partially specified, e.g. "/job:ps" "/job:worker/replica:3", etc.
repeated string device_filters = 2;
- Returns:
- A list containing the deviceFilters.
-
getDeviceFiltersCount
int getDeviceFiltersCount()
When any filters are present, only devices that match the filters will be reset. Each filter can be partially specified, e.g. "/job:ps" "/job:worker/replica:3", etc.
repeated string device_filters = 2;
- Returns:
- The count of deviceFilters.
-
getDeviceFilters
java.lang.String getDeviceFilters(int index)
When any filters are present, only devices that match the filters will be reset. Each filter can be partially specified, e.g. "/job:ps" "/job:worker/replica:3", etc.
repeated string device_filters = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The deviceFilters at the given index.
-
getDeviceFiltersBytes
com.google.protobuf.ByteString getDeviceFiltersBytes(int index)
When any filters are present, only devices that match the filters will be reset. Each filter can be partially specified, e.g. "/job:ps" "/job:worker/replica:3", etc.
repeated string device_filters = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the deviceFilters at the given index.
-
-