Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 800 for states (0.11 sec)

  1. guava/src/com/google/common/util/concurrent/ServiceManager.java

    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static com.google.common.util.concurrent.Service.State.FAILED;
    import static com.google.common.util.concurrent.Service.State.NEW;
    import static com.google.common.util.concurrent.Service.State.RUNNING;
    import static com.google.common.util.concurrent.Service.State.STARTING;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializerTest.groovy

        }
    
        private CompilationState compilationState(Map<File, SourceFileState> states) {
            return new CompilationState(ImmutableMap.copyOf(states))
        }
    
        private CompilationState serialized(CompilationState state) {
            serialize(state, serializer) as CompilationState
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

    // CarpStatus represents information about the status of a carp. Status may trail the actual
    // state of a system.
    message CarpStatus {
      // Current condition of the carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializer.java

            fileSerializer = new BaseSerializerFactory().getSerializerFor(File.class);
        }
    
        @Override
        public CompilationState read(Decoder decoder) throws Exception {
            // Deduplicates the include file states, as these are often shared between source files
            Map<Integer, IncludeFileEdge> ids = new HashMap<Integer, IncludeFileEdge>();
            int sourceFileCount = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/google/cadvisor/third_party/containerd/NOTICE

    This product includes software developed at Docker, Inc. (https://www.docker.com).
    
    The following is courtesy of our legal counsel:
    
    
    Use and transfer of Docker may be subject to certain restrictions by the
    United States and other governments.
    It is your responsibility to ensure that your use and/or transfer does not
    violate applicable laws.
    
    For more information, please see https://www.bis.doc.gov
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 03 16:47:06 UTC 2022
    - 519 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
    	Type PodConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=PodConditionType"`
    	// Status is the status of the condition.
    	// Can be True, False, Unknown.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. docs/select/select.py

        InputSerialization={
            'CSV': {
                "FileHeaderInfo": "USE",
            },
            'CompressionType': 'GZIP',
        },
        OutputSerialization={'CSV': {}},
    )
    
    for event in r['Payload']:
        if 'Records' in event:
            records = event['Records']['Payload'].decode('utf-8')
            print(records)
        elif 'Stats' in event:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 18 00:11:39 UTC 2018
    - 1K bytes
    - Viewed (0)
  8. internal/bucket/versioning/versioning.go

    	"io"
    	"strings"
    
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    // State - enabled/disabled/suspended states
    // for multifactor and status of versioning.
    type State string
    
    // Various supported states
    const (
    	Enabled State = "Enabled"
    	// Disabled  State = "Disabled" only used by MFA Delete not supported yet.
    	Suspended State = "Suspended"
    )
    
    var (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/runtime/mem.go

    package runtime
    
    import "unsafe"
    
    // OS memory management abstraction layer
    //
    // Regions of the address space managed by the runtime may be in one of four
    // states at any given time:
    // 1) None - Unreserved and unmapped, the default state of any region.
    // 2) Reserved - Owned by the runtime, but accessing it would cause a fault.
    //               Does not count against the process' memory footprint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/syscall/netlink_linux.go

    // properly.
    func rtaAlignOf(attrlen int) int {
    	return (attrlen + RTA_ALIGNTO - 1) & ^(RTA_ALIGNTO - 1)
    }
    
    // NetlinkRouteRequest represents a request message to receive routing
    // and link states from the kernel.
    type NetlinkRouteRequest struct {
    	Header NlMsghdr
    	Data   RtGenmsg
    }
    
    func (rr *NetlinkRouteRequest) toWireFormat() []byte {
    	b := make([]byte, rr.Header.Len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top