Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for sandboxes (0.27 sec)

  1. guava/src/com/google/common/net/HttpHeaders.java

       * Supports-Loading-Mode}</a> header field name. This can be used to specify, for example, <a
       * href="https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/#server-opt-in">fenced
       * frames</a>.
       *
       * @since 32.0.0
       */
      public static final String SUPPORTS_LOADING_MODE = "Supports-Loading-Mode";
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    			namespace = v
    		}
    		if v, ok := c.Spec.Labels[kubelettypes.KubernetesContainerNameLabel]; ok {
    			containerName = v
    		}
    		// Associate pod cgroup with pod so we have an accurate accounting of sandbox
    		if podName == "" && namespace == "" {
    			if pod, found := s.GetPodByCgroupfs(c.Name); found {
    				podName = pod.Name
    				namespace = pod.Namespace
    			}
    		}
    		set := map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// owner: @ddebroy, @kannon92
    	// alpha: v1.25
    	// beta: v1.29
    	//
    	// Enables reporting of PodReadyToStartContainersCondition condition in pod status after pod
    	// sandbox creation and network configuration completes successfully
    	PodReadyToStartContainersCondition featuregate.Feature = "PodReadyToStartContainersCondition"
    
    	// owner: @wzshiming
    	// kep: http://kep.k8s.io/2681
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server_test.go

    				}
    			}
    
    			ss.fakeRuntime.portForwardFunc = func(podSandboxID string, port int32, stream io.ReadWriteCloser) error {
    				defer close(portForwardFuncDone)
    				assert.Equal(t, testPodSandboxID, podSandboxID, "pod sandbox id")
    				// The port should be valid if it reaches here.
    				testPort, err := strconv.ParseInt(test.port, 10, 32)
    				require.NoError(t, err, "parse port")
    				assert.Equal(t, int32(testPort), port, "port")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    				_ = cmd.Flags().MarkDeprecated("pod-infra-container-image", "--pod-infra-container-image will be removed in 1.30. Image garbage collector will get sandbox image information from CRI.")
    			}
    
    			// load kubelet config file, if provided
    			if len(kubeletFlags.KubeletConfigFile) > 0 {
    				kubeletConfig, err = loadConfigFile(kubeletFlags.KubeletConfigFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    Bazaar, Fossil, or Subversion repositories by default, because those downloads
    use the Go module mirror, which takes on the security risk of running the
    version control commands using a custom sandbox.
    
    The GOVCS variable can be used to change the allowed version control systems
    for specific packages (identified by a module or import path).
    The GOVCS variable applies when building package in both module-aware mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // Bazaar, Fossil, or Subversion repositories by default, because those downloads
    // use the Go module mirror, which takes on the security risk of running the
    // version control commands using a custom sandbox.
    //
    // The GOVCS variable can be used to change the allowed version control systems
    // for specific packages (identified by a module or import path).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    			RuntimeClassName: utilpointer.String("valid-sandbox"),
    		},
    		"populate Overhead": {
    			Containers:       []core.Container{{Name: "ctr", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: "File"}},
    			RestartPolicy:    core.RestartPolicyAlways,
    			DNSPolicy:        core.DNSClusterFirst,
    			RuntimeClassName: utilpointer.String("valid-sandbox"),
    			Overhead:         core.ResourceList{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - `kubeadm`: now shows a warning message when detecting that the sandbox image of the container runtime is inconsistent with that used by kubeadm ([#115610](https://github.com/kubernetes/kubernetes/pull/115610), [@SataQiu](https://github.com/SataQiu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// disruption (such as preemption, eviction API or garbage-collection).
    	DisruptionTarget PodConditionType = "DisruptionTarget"
    	// PodReadyToStartContainers pod sandbox is successfully configured and
    	// the pod is ready to launch containers.
    	PodReadyToStartContainers PodConditionType = "PodReadyToStartContainers"
    )
    
    // These are reasons for a pod's transition to a condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top