Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for SAME (0.05 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                ClassDetails classDetails = classes.get(type);
                if (classDetails == null) {
                    // Multiple thread may calculate this at the same time, which is ok. All threads should end up with the same details object
                    ClassDetails newDetails = new ClassDetails(type);
                    classDetails = classes.putIfAbsent(type, newDetails);
                    if (classDetails == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // "{ValidatingAdmissionPolicy name}/{key}".
      //
      // If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
      // and the same audit annotation key, the annotation key will be identical.
      // In this case, the first annotation written with the key will be included
      // in the audit event and all subsequent annotations with the same key
      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				if c := q.Cmp(got); c != 0 {
    					t.Errorf("%v: round trip from decimal back to quantity is not comparable: %d: %#v vs %#v", item.input, c, got, q)
    				}
    			}
    
    			// verify that we can decompose the input and get the same result by building up from the base.
    			positive, _, num, denom, suffix, err := parseQuantityString(item.input)
    			if err != nil {
    				t.Errorf("%v: unexpected error: %v", item.input, err)
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    // This feature is currently implemented in watch cache layer, so this is optional.
    //
    // TODO(#109831): ProgressNotify feature is effectively implementing the same
    //
    //	functionality, so we should refactor this functionality to share the same input.
    func RunTestWatchDispatchBookmarkEvents(ctx context.Context, t *testing.T, store storage.Interface, expectedWatchBookmarks bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/runtime/map.go

    // noverflow counts the number of overflow buckets.
    // This is used to trigger same-size map growth.
    // See also tooManyOverflowBuckets.
    // To keep hmap small, noverflow is a uint16.
    // When there are few buckets, noverflow is an exact count.
    // When there are many buckets, noverflow is an approximate count.
    func (h *hmap) incrnoverflow() {
    	// We trigger same-size map growth if there are
    	// as many overflow buckets as buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	// Prefer traffic in the same region.
    	LoadBalancing_REGION LoadBalancing_Scope = 1
    	// Prefer traffic in the same zone.
    	LoadBalancing_ZONE LoadBalancing_Scope = 2
    	// Prefer traffic in the same subzone.
    	LoadBalancing_SUBZONE LoadBalancing_Scope = 3
    	// Prefer traffic on the same node.
    	LoadBalancing_NODE LoadBalancing_Scope = 4
    	// Prefer traffic in the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. cmd/iam.go

    // has the same name as the value of this field.
    //
    // - from special JWT claim from STS request for AssumeRoleWithOIDC API (when
    // not using RoleARN). The claim value can be a string or a list and refers to
    // the names of access policies.
    //
    // For all except the RoleARN case, the implementation is the same - the policy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    		"old and new no mode": {
    			oldClass:      noBinding,
    			newClass:      noBinding,
    			shouldSucceed: true,
    		},
    		"old and new same mode ptr": {
    			oldClass:      immediateBinding1,
    			newClass:      immediateBinding1,
    			shouldSucceed: true,
    		},
    		"old and new same mode value": {
    			oldClass:      immediateBinding1,
    			newClass:      immediateBinding2,
    			shouldSucceed: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// this list must have at least one matching (by name) volumeMount in one
    	// container in the template. A claim in this list takes precedence over
    	// any volumes in the template, with the same name.
    	// TODO: Define the behavior if a claim already exists with the same name.
    	// +optional
    	// +listType=atomic
    	VolumeClaimTemplates []v1.PersistentVolumeClaim `json:"volumeClaimTemplates,omitempty" protobuf:"bytes,4,rep,name=volumeClaimTemplates"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	}
    	testPod.Status = podStatus
    
    	t.Logf("If the pod status is the same, a reconciliation is not needed and syncBatch should do nothing")
    	syncer.podManager.(mutablePodManager).UpdatePod(testPod)
    	if syncer.needsReconcile(testPod.UID, podStatus) {
    		t.Fatalf("Pod status is the same, a reconciliation is not needed")
    	}
    	syncer.SetPodStatus(testPod, podStatus)
    	syncer.syncBatch(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top