Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for emptypb (0.18 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    	}
    	claim.Name = "volume-2-my-set"
    	if pod := getClaimPodName(&set, &claim); pod != "" {
    		t.Errorf("Expected empty string found %s", pod)
    	}
    	claim.Name = "volume-pod-2"
    	if pod := getClaimPodName(&set, &claim); pod != "" {
    		t.Errorf("Expected empty string found %s", pod)
    	}
    }
    
    func TestIsMemberOf(t *testing.T) {
    	set := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. src/runtime/map.go

    	emptyRest      = 0 // this cell is empty, and there are no more non-empty cells at higher indexes or overflows.
    	emptyOne       = 1 // this cell is empty
    	evacuatedX     = 2 // key/elem is valid.  Entry has been evacuated to first half of larger table.
    	evacuatedY     = 3 // same as above, but evacuated to second half of larger table.
    	evacuatedEmpty = 4 // cell is empty, bucket is evacuated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // defaults common fields.
    func (e *Store) CompleteWithOptions(options *generic.StoreOptions) error {
    	if e.DefaultQualifiedResource.Empty() {
    		return fmt.Errorf("store %#v must have a non-empty qualified resource", e)
    	}
    	if e.SingularQualifiedResource.Empty() {
    		return fmt.Errorf("store %#v must have a non-empty singular qualified resource", e)
    	}
    	if e.DefaultQualifiedResource.Group != e.SingularQualifiedResource.Group {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	// For other (non-defined) types it returns the empty string.
    	Name() string
    
    	// PkgPath returns a defined type's package path, that is, the import path
    	// that uniquely identifies the package, such as "encoding/base64".
    	// If the type was predeclared (string, error) or not defined (*T, struct{},
    	// []int, or A where A is an alias for a non-defined type), the package path
    	// will be the empty string.
    	PkgPath() string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            "<scope>test</scope>"    | ""                    | ""                       | ""              | MavenScope.Compile
        }
    
        def "uses empty version if parent pom dependency management section does not provide default values for dependency"() {
            given:
            def parent = tmpDir.file("parent.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if len(attachedVolumes) != 0 {
    		t.Fatalf("len(attachedVolumes) Expected: <0> Actual: <%v>", len(attachedVolumes))
    	}
    }
    
    // Calls DeleteVolumeNode() to delete volume/node on empty data struct
    // Verifies no volume/node entries exists.
    func Test_DeleteVolumeNode_Positive_VolumeDoesntExistNodeDoesntExist(t *testing.T) {
    	// Arrange
    	volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    		// File is allowed to be missing, in which case output should be empty.
    		b = nil
    	} else if err != nil {
    		return err
    	}
    	got = strings.Replace(got, "\r\n", "\n", -1)
    	if got != string(b) {
    		if err == nil {
    			return fmt.Errorf("output does not match expected in %s. Instead saw\n%s", filename, got)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    // activeQ is empty and waits until a new item is added to the queue. It
    // increments scheduling cycle when a pod is popped.
    func (p *PriorityQueue) Pop(logger klog.Logger) (*framework.QueuedPodInfo, error) {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    	for p.activeQ.Len() == 0 {
    		// When the queue is empty, invocation of Pop() is blocked until new item is enqueued.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	ss2Rev2.Namespace = ss2.Namespace
    	tests := []testcase{
    		{
    			name:     "delete empty fails",
    			revision: ss1Rev1,
    			existing: nil,
    			err:      true,
    		},
    		{
    			name:     "delete existing succeeds",
    			revision: ss1Rev1,
    			existing: []struct {
    				parent   metav1.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | [[skip-when-empty]]`@link:{javadocPath}/org/gradle/api/tasks/SkipWhenEmpty.html[SkipWhenEmpty]`
    | `File` or `Iterable&lt;File&gt;`+++*+++
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top