Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 122 for Missing (0.13 sec)

  1. 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)
  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. 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)
  5. 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)
  6. 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)
  7. cmd/erasure-healing_test.go

    				errFileNotFound,
    				nil,
    			},
    			dataErrs:         nil,
    			expectedMeta:     FileInfo{Deleted: true},
    			expectedDangling: true,
    		},
    		{
    			name: "FileInfoDecided-case3-(enough data-dir missing)",
    			metaArr: []FileInfo{
    				{},
    				{},
    				{},
    				fi,
    			},
    			errs: []error{
    				errFileNotFound,
    				errFileNotFound,
    				nil,
    				nil,
    			},
    			dataErrs: map[int][]int{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    					// No difference in terms of domainIPs and nothing
    					// has changed so we don't change anything on the etcd.
    					//
    					// Additionally also check if domain is updated/missing with more
    					// entries, if that is the case we should update the
    					// new domain entries as well.
    					continue
    				}
    
    				// if domain IPs intersect then it won't be an empty set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    				goto Error
    			}
    
    		default:
    			// TODO(gri) provide better error messages depending on context
    			check.error(e, UntypedLit, "missing type in composite literal")
    			goto Error
    		}
    
    		switch utyp := coreType(base).(type) {
    		case *Struct:
    			// Prevent crash if the struct referred to is not yet set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// Deprecated: ErrMissingContentLength is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrMissingContentLength = &ProtocolError{"missing ContentLength in HEAD response"}
    )
    
    func badStringError(what, val string) error { return fmt.Errorf("%s %q", what, val) }
    
    // Headers that Request.Write handles itself and should be skipped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top