Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for combinations (0.33 sec)

  1. cmd/api-errors.go

    	},
    	ErrOverlappingFilterNotification: {
    		Code:           "InvalidArgument",
    		Description:    "An object key name filtering rule defined with overlapping prefixes, overlapping suffixes, or overlapping combinations of prefixes and suffixes for the same event types.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterNameInvalid: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    			t.Fatal("cmpAbsTests entries not sorted in ascending order")
    		}
    		values[i] = x
    		prev = x
    	}
    
    	for i, x := range values {
    		for j, y := range values {
    			// try all combinations of signs for x, y
    			for k := 0; k < 4; k++ {
    				var a, b Int
    				a.Set(x)
    				b.Set(y)
    				if k&1 != 0 {
    					a.Neg(&a)
    				}
    				if k&2 != 0 {
    					b.Neg(&b)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	// Creates compound/prefix transformers with different ordering of available transformers.
    	// Transforms data using one of them, and tries to untransform using the others.
    	// Repeats this for all possible combinations.
    	// Math for GracePeriod is explained at - https://github.com/kubernetes/kubernetes/blob/c9ed04762f94a319d7b1fb718dc345491a32bea6/staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go#L159-L163
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	// clean up the temporary test backend.
    	removeRoots(append(erasureDisks, fsDir))
    }
    
    // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed.
    // This can be used to test functionality when reading and writing data.
    func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	pendingFinalizers := len(accessor.GetFinalizers()) != 0
    	var ignoreNotFound bool
    	var deleteImmediately bool = true
    	var lastExisting, out runtime.Object
    
    	// Handle combinations of graceful deletion and finalization by issuing
    	// the correct updates.
    	shouldUpdateFinalizers, _ := deletionFinalizersForGarbageCollection(ctx, e, accessor, options)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      /**
       * A helper object for operating on {@link InternalEntry} instances in a type-safe and efficient
       * manner.
       *
       * <p>For each of the four combinations of strong/weak key and strong/weak value, there are
       * corresponding {@link InternalEntry}, {@link Segment}, and {@link InternalEntryHelper}
       * implementations.
       *
       * @param <K> the type of the key in each entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      /**
       * A helper object for operating on {@link InternalEntry} instances in a type-safe and efficient
       * manner.
       *
       * <p>For each of the four combinations of strong/weak key and strong/weak value, there are
       * corresponding {@link InternalEntry}, {@link Segment}, and {@link InternalEntryHelper}
       * implementations.
       *
       * @param <K> the type of the key in each entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

        => (SET(B|AE)store [off] {sym} ptr (BTQconst [63] x) mem)
    (SET(NE|EQ)store [off] {sym} ptr (TESTL z1:(SHRLconst [31] x) z2) mem) && z1==z2
        => (SET(B|AE)store [off] {sym} ptr (BTLconst [31] x) mem)
    
    // Fold combinations of bit ops on same bit. An example is math.Copysign(c,-1)
    (BTSQconst [c] (BTRQconst [c] x)) => (BTSQconst [c] x)
    (BTSQconst [c] (BTCQconst [c] x)) => (BTSQconst [c] x)
    (BTRQconst [c] (BTSQconst [c] x)) => (BTRQconst [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	_, volumeSpec, _, err :=
    		dswp.createVolumeSpec(pod.Spec.Volumes[0], pod, mountsMap, devicesMap)
    
    	// Assert
    	if volumeSpec == nil || err != nil {
    		t.Fatalf("Failed to create volumeSpec with combination of filesystem mode and volumeMounts. err: %v", err)
    	}
    }
    
    func TestCreateVolumeSpec_Valid_Nil_VolumeMounts(t *testing.T) {
    	// create dswp
    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    message ValidatingAdmissionPolicyBinding {
      // Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top