Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for corerest (0.87 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	// Allow claims to refer to the serving URL of the test server.  For this,
    	// substitute all references to {{.URL}} in appropriate places.
    	// Use {{.Expired}} to handle the token expiry date string with correct timezone handling.
    	v := struct {
    		URL     string
    		Expired string
    	}{
    		URL:     ts.URL,
    		Expired: fmt.Sprintf("%v", time.Unix(expired.Unix(), 0)),
    	}
    	c.claims = replace(c.claims, &v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		if pcCFLAGS, pcLDFLAGS, err = b.getPkgConfigFlags(a); err != nil {
    			return
    		}
    	}
    
    	// Compute overlays for .c/.cc/.h/etc. and if there are any overlays
    	// put correct contents of all those files in the objdir, to ensure
    	// the correct headers are included. nonGoOverlay is the overlay that
    	// points from nongo files to the copied files in objdir.
    	nonGoFileLists := [][]string{p.CFiles, p.SFiles, p.CXXFiles, p.HFiles, p.FFiles}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    	//      to the apiserver, it could still restart the terminated pod (even
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top