Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for 3$ (0.17 sec)

  1. cmd/iam-store.go

    						err = store.loadMappedPolicyWithRetry(ctx, svc.Credentials.ParentUser, regUser, false, cache.iamUserPolicyMap, 3)
    					}
    				} else {
    					// In case of LDAP the parent user's policy mapping needs to be
    					// loaded into sts map
    					err = store.loadMappedPolicyWithRetry(ctx, svc.Credentials.ParentUser, stsUser, false, cache.iamSTSPolicyMap, 3)
    				}
    			}
    		}
    
    		// Check for STS account
    		stsAccountFound := false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1.025Ti", true, "1.025", "1", "025", "Ti"},
    		{"-1.025Ti", false, "-1.025", "1", "025", "Ti"},
    		{".", true, ".", "0", "", ""},
    		{"-.", false, "-.", "0", "", ""},
    		{"1E-3", true, "1", "1", "", "E-3"},
    	}
    	for _, test := range table {
    		positive, value, num, denom, suffix, err := parseQuantityString(test.input)
    		if err != nil {
    			t.Errorf("%s: error: %v", test.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)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // operator verification.
        if (!input_type || input_type.isDynamicDim(3)) {
          return failure();
        }
        // Check if the given op is based on grouped convolution.
        // Dim size zero will be verified by the tf.Conv2D operator verification.
        if (input_type.getDimSize(3) % filter_type.getDimSize(2) != 0) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			expectedOut:    []example.Pod{*preset[3]},
    			expectContinue: true,
    		},
    		{
    			name:   "test List with filter returning only one item, covers the entire list",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "barfoo"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    			expectedOut:    []example.Pod{*preset[3]},
    			expectContinue: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/SetsTest.java

        checkHashCode(Sets.cartesianProduct(set(1, num), set(2, num - 1)));
        checkHashCode(Sets.cartesianProduct(set(1, num), set(2, num - 1), set(3, num + 1)));
    
        // a bigger one
        checkHashCode(
            Sets.cartesianProduct(set(1, num, num + 1), set(2), set(3, num + 2), set(4, 5, 6, 7, 8)));
      }
    
      public void testPowerSetEmpty() {
        ImmutableSet<Integer> elements = ImmutableSet.of();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			InitContainers: []v1.Container{init1, init2},
    		},
    	}
    
    	templates := []containerTemplate{
    		{pod: pod, container: &init1, attempt: 3, createdAt: 3, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{pod: pod, container: &init1, attempt: 2, createdAt: 2, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		//
    		// AuxInt value indicates conditions 0=LT 1=GT 2=EQ 3=SO 4=GE 5=LE 6=NE 7=NSO.
    		// ISEL accepts a CR bit argument, not a condition as expressed by AuxInt.
    		// Convert the condition to a CR bit argument by the following conversion:
    		//
    		// AuxInt&3 ? arg0 : arg1 for conditions LT, GT, EQ, SO
    		// AuxInt&3 ? arg1 : arg0 for conditions GE, LE, NE, NSO
    		p := s.Prog(v.Op.Asm())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    		}
    		// checking that the line is like "35258904 1 @ 0x48288d 0x47cd28 0x458931"
    		r2 := `^\d+ \d+ @(?: 0x[[:xdigit:]]+)+`
    		if ok, err := regexp.MatchString(r2, lines[3]); err != nil || !ok {
    			t.Errorf("%q didn't match %q", lines[3], r2)
    		}
    		r3 := "^#.*runtime/pprof.blockMutex.*$"
    		if ok, err := regexp.MatchString(r3, lines[5]); err != nil || !ok {
    			t.Errorf("%q didn't match %q", lines[5], r3)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  32,
    		},
    		{
    			name:             "index of array with int-or-strings",
    			schemaGenerator:  genArrayWithRule("int-or-string", "self[0] == 5"),
    			expectedCalcCost: 3,
    			setMaxElements:   10,
    			expectedSetCost:  3,
    		},
    		{
    			name:             "index of array with booleans",
    			schemaGenerator:  genArrayWithRule("boolean", "self[0] == false"),
    			expectedCalcCost: 2,
    			setMaxElements:   25,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. src/syscall/zerrors_solaris_amd64.go

    	34:  "result too large",
    	35:  "no message of desired type",
    	36:  "identifier removed",
    	37:  "channel number out of range",
    	38:  "level 2 not synchronized",
    	39:  "level 3 halted",
    	40:  "level 3 reset",
    	41:  "link number out of range",
    	42:  "protocol driver not attached",
    	43:  "no CSI structure available",
    	44:  "level 2 halted",
    	45:  "deadlock situation detected/avoided",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top