Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 470 for gStates (0.09 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Type is the type of the condition.
      // Currently only Ready.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      optional string type = 1;
    
      // Status is the status of the condition.
      // Can be True, False, Unknown.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      optional string status = 2;
    
      // Last time we probed the condition.
      // +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)
  2. src/internal/chacha8rand/chacha8_amd64.s

    // ChaCha8 is ChaCha with 8 rounds.
    // See https://cr.yp.to/chacha/chacha-20080128.pdf.
    // See chacha8_generic.go for additional details.
    
    // ROL rotates the uint32s in register R left by N bits, using temporary T.
    #define ROL(N, R, T) \
    	MOVO R, T; PSLLL $(N), T; PSRLL $(32-(N)), R; PXOR T, R
    
    // ROL16 rotates the uint32s in register R left by 16, using temporary T if needed.
    #ifdef GOAMD64_v2
    #define ROL16(R, T) PSHUFB ·rol16<>(SB), R
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test

    -- expect --
    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=23
    ProcStatus dt=1 p=1 pstatus=2
    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    GoSyscallBegin dt=1 p_seq=1 stack=0
    ProcStart dt=1 p=1 p_seq=1
    GoSyscallEndBlocked dt=1
    EventBatch gen=1 m=1 time=0 size=5
    ProcSteal dt=1 p=0 p_seq=2 m=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 529 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

    type PodStatus struct {
    	// Current condition of the pod.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
    	// +optional
    	Phase PodPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PodPhase"`
    	// Current service state of pod.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
    	// +optional
    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

    r = s3.select_object_content(
        Bucket='mycsvbucket',
        Key='sampledata/TotalPopulation.csv.gz',
        ExpressionType='SQL',
        Expression="select * from s3object s where s.Location like '%United States%'",
        InputSerialization={
            'CSV': {
                "FileHeaderInfo": "USE",
            },
            'CompressionType': 'GZIP',
        },
        OutputSerialization={'CSV': {}},
    )
    
    for event in r['Payload']:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 18 00:11:39 UTC 2018
    - 1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/generic.go

    }
    
    // AddFeatureGatesStringFlag adds the --feature-gates flag to the given flagset
    func AddFeatureGatesStringFlag(fs *pflag.FlagSet, featureGatesString *string) {
    	if knownFeatures := features.KnownFeatures(&features.InitFeatureGates); len(knownFeatures) > 0 {
    		fs.StringVar(featureGatesString, FeatureGatesString, *featureGatesString, "A set of key=value pairs that describe feature gates for various features. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/test/cmd/init_test.go

    					(err == nil),
    				)
    			}
    		})
    	}
    }
    
    // TestCmdInitFeatureGates test that feature gates won't make kubeadm panic.
    // When go panics it will exit with a 2 code. While we don't expect the init
    // calls to succeed in these tests, we ensure that the exit code of calling
    // kubeadm with different feature gates is not 2.
    func TestCmdInitFeatureGates(t *testing.T) {
    	const PanicExitcode = 2
    
    	initTest := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Mutate.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation mutates the rule subject.
     * <p>
     * Mutate rules execute after {@link Defaults} rules, but before {@link Finalize} rules.
     * The first parameter of the rule is the rule subject, which is mutable for the duration of the rule.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top