Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for sandboxes (0.15 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_test.go

    			containers:  []string{"1", "2"},
    			shouldError: false,
    		},
    		{
    			name:       "invalid: remove pod sandbox fails",
    			containers: []string{"1"},
    			prepare: func(mock *fakeImpl) {
    				mock.RemovePodSandboxReturns(errTest)
    			},
    			shouldError: true,
    		},
    		{
    			name:       "invalid: stop pod sandbox fails",
    			containers: []string{"1"},
    			prepare: func(mock *fakeImpl) {
    				mock.StopPodSandboxReturns(errTest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/kubelet/checkpointmanager/testing/example_checkpoint_formats/v1/types.go

    */
    
    package v1
    
    import (
    	"encoding/json"
    
    	"k8s.io/kubernetes/pkg/kubelet/checkpointmanager/checksum"
    )
    
    type protocol string
    
    // PortMapping is the port mapping configurations of a sandbox.
    type PortMapping struct {
    	// protocol of the port mapping.
    	Protocol *protocol
    	// Port number within the container.
    	ContainerPort *int32
    	// Port number on the host.
    	HostPort *int32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 19 03:53:33 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  3. pkg/kubelet/status/generate_test.go

    		expected v1.PodCondition
    	}{
    		"Empty pod status": {
    			pod:    &v1.Pod{},
    			status: &kubecontainer.PodStatus{},
    			expected: v1.PodCondition{
    				Status: v1.ConditionFalse,
    			},
    		},
    		"Pod sandbox status not ready": {
    			pod: &v1.Pod{},
    			status: &kubecontainer.PodStatus{
    				SandboxStatuses: []*runtimeapi.PodSandboxStatus{
    					{
    						Metadata: &runtimeapi.PodSandboxMetadata{Attempt: uint32(0)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. pkg/kubelet/config/flags.go

    	fs.MarkDeprecated("pod-infra-container-image", "will be removed in a future release. Image garbage collector will get sandbox image information from CRI.")
    
    	// Image credential provider settings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. .github/bot_config.yml

       
          * Try Google Colab to use TensorFlow.
             * The easiest way to use TF will be to switch to [google colab](https://colab.sandbox.google.com/notebooks/welcome.ipynb#recent=true). You get pre-installed latest stable TF version. Also you can use ```pip install```  to install any other preferred TF version.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    	HostNetwork  bool           `json:"host_network,omitempty"`
    	V2Field      string         `json:"v2field"`
    }
    
    type protocol string
    
    // portMapping is the port mapping configurations of a sandbox.
    type PortMapping struct {
    	// protocol of the port mapping.
    	Protocol *protocol
    	// Port number within the container.
    	ContainerPort *int32
    	// Port number on the host.
    	HostPort *int32
    	// Host ip to expose.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  7. src/html/template/attr.go

    	"readonly":    contentTypePlain,
    	"rel":         contentTypeUnsafe,
    	"required":    contentTypePlain,
    	"reversed":    contentTypePlain,
    	"rows":        contentTypePlain,
    	"rowspan":     contentTypePlain,
    	"sandbox":     contentTypeUnsafe,
    	"spellcheck":  contentTypePlain,
    	"scope":       contentTypePlain,
    	"scoped":      contentTypePlain,
    	"seamless":    contentTypePlain,
    	"selected":    contentTypePlain,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		DetectedRestoreBinary: iptablesRestoreBin,
    		Version:               parsedVer,
    		Legacy:                !isNft,
    		ExistingRules:         existingRules,
    	}, nil
    }
    
    // runInSandbox builds a lightweight sandbox ("container") to build a suitable environment to run iptables commands in.
    // This is used in CNI, where commands are executed from the host but from within the container network namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

            return cleanOrCreate(perVersion)
        }
    
        private File perVersionStudioSandboxDirectory(File workingDir) {
            File studioSandboxDir = new File(workingDir, "studio-sandbox")
            return cleanOrCreate(studioSandboxDir)
        }
    
        private static File cleanOrCreate(File directory) {
            if (!directory.exists()) {
                directory.mkdirs()
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:            "foo",
    					Image:           "busybox",
    					ImagePullPolicy: v1.PullIfNotPresent,
    				},
    			},
    		},
    	}
    
    	// Create fake sandbox and container
    	_, fakeContainers := makeAndSetFakePod(t, m, fakeRuntime, pod)
    	assert.Equal(t, len(fakeContainers), 1)
    
    	containerID := fakeContainers[0].Id
    	fakeOS := m.osInterface.(*containertest.FakeOS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top