Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 206 for Missing (0.45 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    			requests: []resource.Quantity{resource.MustParse("1.0"), resource.MustParse("1.0"), resource.MustParse("1.0"), resource.MustParse("1.0")},
    			levels:   makePodMetricLevels(500, 700), // TODO: This test is broken and works only because of missing metrics
    
    			targetUtilization:   30,
    			expectedUtilization: 60,
    			expectedValue:       600,
    		},
    		container: "container1",
    	}
    	tc.runTest(t)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		t.Fatalf("Endpoint with IP 10.11.1.2 is expected to be in network2 but get: %s", ep[1].Network)
    	}
    
    	missing := kube.ServiceHostname("does-not-exist", ns, defaultFakeDomainSuffix)
    	svc = sds.GetService(missing)
    	if svc != nil {
    		t.Fatalf("GetService(%q) => %s, should not exist", missing, svc.Hostname)
    	}
    }
    
    func makeService(n, ns string, cl *FakeController, t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter_test.go

    			spec: func(fsType string, options []string) *volume.Spec {
    				return volume.NewSpecFromPersistentVolume(makeTestPV("pv1", 20, testDriver, "vol2"), false)
    			},
    		},
    		{
    			name:                 "setup with missing spec",
    			newMounterShouldFail: true,
    			spec:                 func(fsType string, options []string) *volume.Spec { return nil },
    		},
    		{
    			name:   "setup with unknown CSI driver",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        def other = catalogs.find("otherLibs").get()
                        assert !catalogs.find("missing").present
                        def lib = libs.findLibrary('lib')
                        assert lib.present
                        assert lib.get() instanceof Provider
                        assert !libs.findLibrary('missing').present
                        assert libs.findPlugin('plug').present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. src/encoding/json/decode_test.go

    		t.Errorf(`key "foo" missing in map: %v`, p)
    	}
    }
    
    func TestUnmarshalRescanLiteralMangledUnquote(t *testing.T) {
    	// See golang.org/issues/38105.
    	var p map[textUnmarshalerString]string
    	if err := Unmarshal([]byte(`{"开源":"12345开源"}`), &p); err != nil {
    		t.Fatalf("Unmarshal error: %v", err)
    	}
    	if _, ok := p["开源"]; !ok {
    		t.Errorf(`key "开源" missing in map: %v`, p)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. plugin/pkg/admission/resourcequota/admission_test.go

    					},
    				},
    			},
    			expErr: "",
    		},
    		{
    			description: "Two scopes,BestEffort and PriorityClassIN, in two LimitedResources. Only BestEffort scope matches pod. Pod admit fails because covering quota is missing for BestEffort scope",
    			testPod:     validPodWithPriority("allowed-pod", 1, getResourceRequirements(getResourceList("", ""), getResourceList("", "")), "fake-priority"),
    			quota:       &corev1.ResourceQuota{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // Including:
    // - Adding fields to the patch present in modified, missing from original
    // - Setting fields to the patch present in modified and original with different values
    // - Delete fields present in original, missing from modified through
    // - IFF map field - set to nil in patch
    // - IFF list of maps && merge strategy - use deleteDirective for the elements
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectRequeueAfter:      true,
    			expectedRequeueDuration: 1*time.Minute + nextScheduleDelta,
    			expectUpdateStatus:      true,
    		},
    
    		// Tests for slow job lister
    		"this started but went missing, not past deadline, A": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			deadline:                   longDead,
    			ranPreviously:              true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    				`{{if .T}} id="{{"<iconId>"}}"{{end}}` +
    				// Double quotes inside if/else.
    				` src=` +
    				`{{if .T}}"?{{"<iconPath>"}}"` +
    				`{{else}}"images/cleardot.gif"{{end}}` +
    				// Missing space before title, but it is not a
    				// part of the src attribute.
    				`{{if .T}}title="{{"<title>"}}"{{end}}` +
    				// Quotes outside if/else.
    				` alt="` +
    				`{{if .T}}{{"<alt>"}}` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    If an exclusion in a Maven POM was missing either a `groupId` or `artifactId`, Gradle used to ignore the exclusion.
    Now the missing elements are treated as implicit wildcards — e.g. `<groupId>*</groupId>` — which means that some of your dependencies may now be excluded where they weren't before.
    
    You will need to explicitly declare any missing dependencies that you need.
    
    [[rel4.7:plain_console_output]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top