Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 116 of 116 for volumeID (0.12 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    					Name: "container-1",
    					Ports: []corev1.ContainerPort{
    						{
    							Name: "http",
    						},
    					},
    				},
    				{
    					Name: "container-2",
    				},
    			},
    			Volumes: []corev1.Volume{
    				{
    					Name: "test",
    				},
    			},
    		},
    		Status: corev1.PodStatus{
    			InitContainerStatuses: []corev1.ContainerStatus{
    				{
    					Name: "init-container",
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	// ShouldPodRuntimeBeRemoved returns true if runtime managers within the Kubelet
    	// should aggressively cleanup pod resources that are not containers or on disk
    	// content, like attached volumes. This is true when a pod is not yet observed
    	// by a worker after the first sync (meaning it can't be running yet) or after
    	// all running containers are stopped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. src/math/big/int_test.go

    		if q.Cmp(expectedQ) != 0 || r.Cmp(expectedR) != 0 {
    			t.Errorf("#%d got (%s, %s) want (%s, %s)", i, q, r, expectedQ, expectedR)
    		}
    	}
    }
    
    func TestQuoStepD6(t *testing.T) {
    	// See Knuth, Volume 2, section 4.3.1, exercise 21. This code exercises
    	// a code path which only triggers 1 in 10^{-19} cases.
    
    	u := &Int{false, nat{0, 0, 1 + 1<<(_W-1), _M ^ (1 << (_W - 1))}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters_test.go

    			setter := VolumesInUse(syncedFunc, volumesInUseFunc)
    			// call setter on node
    			if err := setter(ctx, tc.node); err != nil {
    				t.Fatalf("unexpected error: %v", err)
    			}
    			// check expected volumes
    			assert.True(t, apiequality.Semantic.DeepEqual(tc.expectVolumesInUse, tc.node.Status.VolumesInUse),
    				"Diff: %s", cmp.Diff(tc.expectVolumesInUse, tc.node.Status.VolumesInUse))
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    		// healed upon regular heal process.
    		if missingBlocks > 0 && missingBlocks < fi.Erasure.DataBlocks {
    			globalMRFState.addPartialOp(partialOperation{
    				bucket:    fi.Volume,
    				object:    fi.Name,
    				versionID: fi.VersionID,
    				queued:    time.Now(),
    				setIndex:  er.setIndex,
    				poolIndex: er.poolIndex,
    			})
    		}
    
    		return
    	}()
    
    	validResp := 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	}
    }
    
    func TestDirFSRootDir(t *testing.T) {
    	t.Parallel()
    
    	cwd, err := Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cwd = cwd[len(filepath.VolumeName(cwd)):] // trim volume prefix (C:) on Windows
    	cwd = filepath.ToSlash(cwd)               // convert \ to /
    	cwd = strings.TrimPrefix(cwd, "/")        // trim leading /
    
    	// Test that Open can open a path starting at /.
    	d := DirFS("/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top