Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for sandboxes (0.21 sec)

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

    	return runtimeService.ListPodSandbox(ctx, filter)
    }
    
    func (*defaultImpl) StopPodSandbox(ctx context.Context, runtimeService criapi.RuntimeService, sandboxID string) error {
    	return runtimeService.StopPodSandbox(ctx, sandboxID)
    }
    
    func (*defaultImpl) RemovePodSandbox(ctx context.Context, runtimeService criapi.RuntimeService, podSandboxID string) error {
    	return runtimeService.RemovePodSandbox(ctx, podSandboxID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. SECURITY.md

    libraries we consider that it is safe to work with untrusted inputs for PNG,
    BMP, GIF, WAV, RAW, RAW\_PADDED, CSV and PROTO formats. All other input formats,
    including tensorflow-io should be sandboxed if used to process untrusted data.
    
    For example, if an attacker were to upload a malicious video file, they could
    potentially exploit a vulnerability in the TensorFlow code that handles videos,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    func (kl *Kubelet) ListMetricDescriptors(ctx context.Context) ([]*runtimeapi.MetricDescriptor, error) {
    	return kl.containerRuntime.ListMetricDescriptors(ctx)
    }
    
    // ListPodSandboxMetrics retrieves the metrics for all pod sandboxes.
    func (kl *Kubelet) ListPodSandboxMetrics(ctx context.Context) ([]*runtimeapi.PodSandboxMetrics, error) {
    	return kl.containerRuntime.ListPodSandboxMetrics(ctx)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. test/fixedbugs/bug366.go

           // 5
           var a, b byte = 5, 3
           five(int64(a / (a / b)))
           
           // integer divide by zero in golang.org sandbox
           // 0 on windows/amd64
           x := [3]byte{2, 3, 5}
           five(int64(x[2] / (x[2] / x[1])))
    
           // integer divide by zero in golang.org sandbox
           // crash on windows/amd64
           y := x[1:3]
           five(int64(y[1] / (y[1] / y[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 799 bytes
    - Viewed (0)
  5. pkg/kubelet/container/sync_result.go

    	// ErrCreatePodSandbox returned when runtime failed to create a sandbox for pod.
    	ErrCreatePodSandbox = errors.New("CreatePodSandboxError")
    	// ErrConfigPodSandbox returned when runetime failed to get pod sandbox config from pod.
    	ErrConfigPodSandbox = errors.New("ConfigPodSandboxError")
    	// ErrKillPodSandbox returned when runtime failed to stop pod's sandbox.
    	ErrKillPodSandbox = errors.New("KillPodSandboxError")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/evented_test.go

    	}
    	pleg.cache.UpdateTime(time.Now())
    
    	expectedMetric := `
    # HELP kubelet_running_pods [ALPHA] Number of pods that have a running pod sandbox
    # TYPE kubelet_running_pods gauge
    kubelet_running_pods 5
    `
    	testMetric(t, expectedMetric, metrics.RunningPodCount.FQName())
    
    	// stop sandbox containers for first 2 pods
    	for _, podStatus := range podStatuses[:2] {
    		podId := string(podStatus.ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 01 07:45:05 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_compiled_concurrent.txt

    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    go list -json -compiled -test=false -export=false -deps=true -- . &
    go list -json -compiled -test=false -export=false -deps=true -- . &
    wait
    
    -- go.mod --
    module sandbox/bar
    -- bar.go --
    package bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 401 bytes
    - Viewed (0)
  8. pkg/kubelet/status/generate.go

    	newSandboxNeeded, _, _ := runtimeutil.PodSandboxChanged(pod, podStatus)
    	// if a new sandbox does not need to be created for a pod, it indicates that
    	// a sandbox for the pod with networking configured already exists.
    	// Otherwise, the kubelet needs to invoke the container runtime to create a
    	// fresh sandbox and configure networking for the sandbox.
    	if !newSandboxNeeded {
    		return v1.PodCondition{
    			Type:   v1.PodReadyToStartContainers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. pkg/kubelet/runtimeclass/testing/fake_manager.go

    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/kubernetes/pkg/kubelet/runtimeclass"
    )
    
    const (
    	// SandboxRuntimeClass is a valid RuntimeClass pre-populated in the populated dynamic client.
    	SandboxRuntimeClass = "sandbox"
    	// SandboxRuntimeHandler is the handler associated with the SandboxRuntimeClass.
    	SandboxRuntimeHandler = "kata-containers"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

                    throw new RuntimeException("Should have been a miss");
                });
    
            // Produce some example output (simulate executing cacheable work in a temporary sandbox)
            Path sandboxOutputDirectory = Files.createTempDirectory("sandbox-output");
            Path sandboxOutputTxt = sandboxOutputDirectory.resolve("output.txt");
            Files.write(sandboxOutputTxt, Collections.singleton("contents"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top