Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 173 for Missing (0.41 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    	// otherwise-missing test dependencies for packages in "all". For those test
    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    	assert.Len(t, client.Actions(), 0)
    
    	// TriggerTimeTracker should have removed the reference to the missing service
    	assert.NotContains(t, esController.triggerTimeTracker.ServiceStates, missingServiceKey)
    
    	// TriggerTimeTracker should have left the reference to the missing service
    	assert.Contains(t, esController.triggerTimeTracker.ServiceStates, existingServiceKey)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. src/time/time.go

    		if sec < minWall || maxWall < sec {
    			return
    		}
    		t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
    	}
    	t.ext = m
    }
    
    // mono returns t's monotonic clock reading.
    // It returns 0 for a missing reading.
    // This function is used only for testing,
    // so it's OK that technically 0 is a valid
    // monotonic clock reading as well.
    func (t *Time) mono() int64 {
    	if t.wall&hasMonotonic == 0 {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top