Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for Missing (0.39 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		if loggerV := logger.V(6); loggerV.Enabled() {
    			loggerV.Info("PodSchedulingContext with missing resource claim information, keep waiting", "pod", klog.KObj(pod), "podSchedulingDiff", cmp.Diff(oldPodScheduling, podScheduling))
    		} else {
    			logger.V(5).Info("PodSchedulingContext with missing resource claim information, keep waiting", "pod", klog.KObj(pod))
    		}
    		return framework.QueueSkip, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
            }
        }
    
        def "chooses highest version that is included in both ranges, with the highest version in the intersection missing"() {
            given:
            (1..10).findAll {
                // We skip v6, as we test what happens when the top version of the intersection is missing
                it != 6
            }.each {
                mavenRepo.module("org", "leaf", "$it").publish()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    		// TODO(#45551): Do something more principled instead of checking
    		// cfg.CmdName directly here.
    		if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
    			// go line is missing from go.mod; add one there and add to derived requirements.
    			v := gover.Local()
    			if opts != nil && opts.TidyGoVersion != "" {
    				v = opts.TidyGoVersion
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    // passing InsecureSkipVerify flag.  This code is a simplified version of
    // https://golang.org/src/crypto/tls/generate_cert.go
    func generateTLSCertKey(host string) ([]byte, []byte, error) {
    	validFor := 365 * 24 * time.Hour
    	rsaBits := 2048
    
    	if len(host) == 0 {
    		return nil, nil, fmt.Errorf("Missing host parameter")
    	}
    
    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/server/options/encryptionconfig/config_test.go

    			# TYPE apiserver_envelope_encryption_invalid_key_id_from_status_total counter
    			apiserver_envelope_encryption_invalid_key_id_from_status_total{error="empty",provider_name="testplugin"} 1
    			`,
    		},
    		{
    			desc: "missing keyID",
    			statusResponse: &kmsservice.StatusResponse{
    				Healthz: "ok",
    				Version: "v2beta1",
    			},
    			expectedErr: "got invalid KMSv2 KeyID ",
    			wantMetrics: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  6. src/time/format.go

    	if ns, err = atoi(value[1:nbytes]); err != nil {
    		return
    	}
    	if ns < 0 {
    		rangeErrString = "fractional second"
    		return
    	}
    	// We need nanoseconds, which means scaling by the number
    	// of missing digits in the format, maximum length 10.
    	scaleDigits := 10 - nbytes
    	for i := 0; i < scaleDigits; i++ {
    		ns *= 10
    	}
    	return
    }
    
    var errLeadingInt = errors.New("time: bad [0-9]*") // never printed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    NOTE: At the time of writing, all versions of the Android Plugin for Gradle up to 3.2.0 present in the `google()` repository lack plugin marker artifacts.
    
    If those artifacts are missing, then you can't use the `plugins {}` block. You must instead fall back to declaring your plugin dependencies using the `buildscript {}` block in the root project build script. Here's an example of doing that for the Android Plugin:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    			expectConditions: []v1.NodeCondition{*makeReadyCondition(false, "[runtime, network]", now, now)},
    		},
    		{
    			desc:             "new, not ready: missing capacities",
    			node:             &v1.Node{},
    			expectConditions: []v1.NodeCondition{*makeReadyCondition(false, "missing node capacity for resources: cpu, memory, pods, ephemeral-storage", now, now)},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if !apihelpers.IsProtectedCommunityGroup(newCRD.Spec.Group) {
    		// no-op for non-protected groups
    		return nil
    	}
    
    	// default to a state that allows missing values to continue to be missing
    	var oldApprovalState *apihelpers.APIApprovalState
    	if oldCRD != nil {
    		t, _ := apihelpers.GetAPIApprovalState(oldCRD.Annotations)
    		oldApprovalState = &t // +k8s:verify-mutation:reason=clone
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	// All PVs have been unmodified in cache
    	pvCache := env.internalBinder.pvCache
    	for _, b := range bindings {
    		pv, _ := pvCache.GetPV(b.pv.Name)
    		apiPV, _ := pvCache.GetAPIPV(b.pv.Name)
    		// PV could be nil if it's missing from cache
    		if pv != nil && pv != apiPV {
    			t.Errorf("PV %q was modified in cache", b.pv.Name)
    		}
    	}
    
    	// Check pvc cache
    	pvcCache := env.internalBinder.pvcCache
    	for _, p := range provisionings {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top