Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for combinations (0.64 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/arm/asm5.go

    		op := &ops[i]
    		if int(op.a2) == a2 && c1[op.a1] && c3[op.a3] {
    			p.Optab = uint16(cap(optab) - cap(ops) + i + 1)
    			checkSuffix(c, p, op)
    			return op
    		}
    	}
    
    	c.ctxt.Diag("illegal combination %v; %v %v %v; from %d %d; to %d %d", p, DRconv(a1), DRconv(a2), DRconv(a3), p.From.Type, p.From.Name, p.To.Type, p.To.Name)
    	if ops == nil {
    		ops = optab
    	}
    	return &ops[0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. 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)
  7. src/time/format.go

    				value = value[1:]
    			}
    			day, value, err = getnum(value, std == stdZeroDay)
    			// Note that we allow any one- or two-digit day here.
    			// The month, day, year combination is validated after we've completed parsing.
    		case stdUnderYearDay, stdZeroYearDay:
    			for i := 0; i < 2; i++ {
    				if std == stdUnderYearDay && len(value) > 0 && value[0] == ' ' {
    					value = value[1:]
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    // 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.
    type ValidatingAdmissionPolicyBinding struct {
    	metav1.TypeMeta
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "", "obj0", "", 1, resultCases[19], nil, true},
    		// Testing with both marker and prefix, but without truncation (43-45).
    		// The valid combination of marker and prefix should satisfy strings.HasPrefix(marker, prefix).
    		{"test-bucket-list-object", "obj", "obj0", "", 2, resultCases[20], nil, true},
    		{"test-bucket-list-object", "obj", "obj1", "", 1, resultCases[21], nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
Back to top