Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for corerest (0.16 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    					Args: &runtime.Unknown{
    						Raw: []byte(`{ "scoreRes": 1 }`),
    					},
    				},
    				{
    					Name: scoreWithNormalizePlugin1,
    					Args: &runtime.Unknown{
    						Raw: []byte(`{ "scoreRes": 3, "normalizeRes": 4}`),
    					},
    				},
    				{
    					Name: scoreWithNormalizePlugin2,
    					Args: &runtime.Unknown{
    						Raw: []byte(`{ "scoreRes": 4, "normalizeRes": 5}`),
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		podStatus   v1.PodPhase
    	}{
    		{
    			name:        "correct OS label, wrong pod selector, admission denied",
    			nodeLabels:  map[string]string{v1.LabelOSStable: goruntime.GOOS, v1.LabelArchStable: goruntime.GOARCH},
    			podSelector: map[string]string{v1.LabelOSStable: "dummyOS"},
    			podStatus:   v1.PodFailed,
    		},
    		{
    			name:        "correct OS label, correct pod selector, admission denied",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          absl::StrCat("outside_compilation_", oc_cluster_name, "_recv"),
          "_XlaRecvAtHost");
      NodeDef recv_at_host_def;
      recv_at_host_builder.Attr("Toutputs", recv_at_host_dtypes);
      // The correct device_ordinal will be inserted during replication in a
      // subsequent rewrite.
      AttrValue device_ordinal_value;
      device_ordinal_value.set_placeholder("_device_ordinal");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    		t.Error("Extra fields with 'secret' in the name found. Verify VisitPodSecretNames() is including these fields if appropriate, then correct expectedSecretPaths")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        # make the config for the signer
        echo '{"signing":{"default":{"expiry":"43800h","usages":["signing","key encipherment","client auth"]}}}' > "ca-config.json"
        # create the kubelet client cert with the correct groups
        echo '{"CN":"kubelet","names":[{"O":"system:nodes"}],"hosts":[""],"key":{"algo":"rsa","size":2048}}' | "${CFSSL_BIN}" gencert -ca=pki/ca.crt -ca-key=pki/private/ca.key -config=ca-config.json - | "${CFSSLJSON_BIN}" -bare kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    mismatchDescription.appendText("was empty"); } }; This is a variant of CustomMatcher that first type checks the argument being matched. By the time TypeSafeMatcher.matchesSafely(T) is is called the argument is guaranteed to be non-null and of the correct type. Author: Neil Dunn Constructor Summary CustomTypeSafeMatche(java.lang.String description) Method Summary void describeTo(Description description) Generates a description of the object. Methods inherited from class org.hamcrest.TypeSafeMatcher...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/spdx-correct": {
          "version": "3.2.0",
          "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
          "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	getObjectInfo := objectAPI.GetObjectInfo
    
    	// Check for auth type to return S3 compatible error.
    	// type to return the correct error (NoSuchKey vs AccessDenied)
    	if s3Error := checkRequestAuthType(ctx, r, policy.GetObjectAction, bucket, object); s3Error != ErrNone {
    		if getRequestAuthType(r) == authTypeAnonymous {
    			// As per "Permission" section in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation_test.go

    					},
    					{
    						Name:       "bar",
    						Expression: "variables.foo + 1",
    					},
    				},
    				Validations: []admissionregistration.Validation{
    					{
    						Expression: "variables.foo > 1", // correct
    					},
    					{
    						Expression: "variables.replicas == 2", // replicas undefined
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    						makeNode(deployment1apps), // still queued, no longer virtual
    					},
    				}),
    
    				// 21,22: process pending delete of good parent
    				// final state: good parent in graph with correct coordinates, good children remain, no pending deletions
    				processAttemptToDelete(1),
    				assertState(state{
    					clientActions: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top