Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 220 for regular (0.32 sec)

  1. internal/bucket/lifecycle/lifecycle.go

    	// DelMarkerDeleteAllVersionsAction deletes all versions when an object with delete marker as latest version expires
    	DelMarkerDeleteAllVersionsAction
    	// ActionCount must be the last action and shouldn't be used as a regular action.
    	ActionCount
    )
    
    // DeleteRestored - Returns true if action demands delete on restored objects
    func (a Action) DeleteRestored() bool {
    	return a == DeleteRestoredAction || a == DeleteRestoredVersionAction
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	// runs sequentially when `EnableK8SServiceSelectWorkloadEntries` is enabled. Otherwise,
    	// we may end up with eds updates can go out of order with workload entry updates causing
    	// incorrect endpoints. For regular endpoint updates, pushEDS is already serialized
    	// because the events are queued.
    	esc.endpointCache.mu.Lock()
    	defer esc.endpointCache.mu.Unlock()
    	for _, hostname := range hostnames {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers_test.go

    }
    
    func TestGetContainerSpec(t *testing.T) {
    	for _, tc := range []struct {
    		name          string
    		havePod       *v1.Pod
    		haveName      string
    		wantContainer *v1.Container
    	}{
    		{
    			name: "regular container",
    			havePod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Name: "plain-ole-container"},
    					},
    					InitContainers: []v1.Container{
    						{Name: "init-container"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    	}
    	return nil
    }
    
    // mayberemovefile removes a file only if it is a regular file
    // When running as a user with sufficient privileges, we may delete
    // even device files, for example, which is not intended.
    func mayberemovefile(s string) {
    	if fi, err := os.Lstat(s); err == nil && !fi.Mode().IsRegular() {
    		return
    	}
    	os.Remove(s)
    }
    
    // writeFile writes the text to file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				ContainersToStart:     []int{},
    				ContainersToKill:      getKillMapWithInitContainers(basePod, baseStatus, []int{}),
    			},
    		},
    		"restart terminated restartable init container and regular containers": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    		// Reorder plugins. Here is the expected order:
    		// - part 1: overridePlugins. Their order stay intact as how they're specified in regular extension point.
    		// - part 2: multiPointEnabled - i.e., plugin defined in multipoint but not in regular extension point.
    		// - part 3: other plugins (excluded by part 1 & 2) in regular extension point.
    		newPlugins := reflect.New(reflect.TypeOf(e.slicePtr).Elem()).Elem()
    		// part 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit.go

    // width in each resource dimension. Because init-containers run sequentially, we collect
    // the max in each dimension iteratively. In contrast, we sum the resource vectors for
    // regular containers since they run simultaneously.
    //
    // # The resources defined for Overhead should be added to the calculated Resource request sum
    //
    // Example:
    //
    // Pod:
    //
    //	InitContainers
    //	  IC1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. pkg/volume/util/util_test.go

    								SecurityContext: &v1.SecurityContext{
    									RunAsUser: ptr.To[int64](1001),
    								},
    							},
    						},
    					},
    				},
    			},
    			wantFsUser: nil,
    		},
    		{
    			desc: "init and regular containers have runAsUser specified and the same",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					SecurityContext: &v1.PodSecurityContext{},
    					InitContainers: []v1.Container{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. docs/en/docs/python-types.md

    That means: "the variable `items` is a `list`, and each of the items in this list is a `str`".
    
    !!! tip
        If you use Python 3.9 or above, you don't have to import `List` from `typing`, you can use the same regular `list` type instead.
    
    By doing that, your editor can provide support even while processing items from the list:
    
    <img src="/img/python-types/image05.png">
    
    Without types, that's almost impossible to achieve.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/testing/testing.go

    //
    // To write a new test suite, create a file that
    // contains the TestXxx functions as described here,
    // and give that file a name ending in "_test.go".
    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    // The test file can be in the same package as the one being tested,
    // or in a corresponding package with the suffix "_test".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top