Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for clobber (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	Stdin  bool
    	Stdout bool
    	Stderr bool
    	Tty    bool
    }
    
    // conns contains the connection and streams used when
    // forwarding an attach or execute session into a container.
    type conns struct {
    	conn         io.Closer
    	stdinStream  io.ReadCloser
    	stdoutStream io.WriteCloser
    	stderrStream io.WriteCloser
    	writeStatus  func(status *apierrors.StatusError) error
    	resizeStream io.ReadCloser
    	resizeChan   chan remotecommand.TerminalSize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/winstats/perfcounter_nodestats.go

    	// GlobalMemoryStatusEx returns the amount of physical memory that is available
    	// for the operating system to use. The amount returned by GlobalMemoryStatusEx
    	// is closer in parity with Linux
    	// https://www.kernel.org/doc/Documentation/filesystems/proc.txt
    	var statex MemoryStatusEx
    	statex.Length = uint32(unsafe.Sizeof(statex))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/ambient/waypoint.go

    	"istio.io/istio/pkg/test/framework/resource"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var _ io.Closer = &kubeComponent{}
    
    type kubeComponent struct {
    	id resource.ID
    
    	ns       namespace.Instance
    	inbound  istioKube.PortForwarder
    	outbound istioKube.PortForwarder
    	pod      v1.Pod
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. docs/en/docs/how-to/custom-docs-ui-assets.md

    By default, those files are served from a <abbr title="Content Delivery Network: A service, normally composed of several servers, that provides static files, like JavaScript and CSS. It's commonly used to serve those files from the server closer to the client, improving performance.">CDN</abbr>.
    
    But it's possible to customize it, you can set a specific CDN, or serve the files yourself.
    
    ## Custom CDN for JavaScript and CSS
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/ingress.go

    	discoveryPort = 15012
    )
    
    var (
    	getAddressTimeout = retry.Timeout(3 * time.Minute)
    	getAddressDelay   = retry.BackoffDelay(500 * time.Millisecond)
    
    	_ ingress.Instance = &ingressImpl{}
    	_ io.Closer        = &ingressImpl{}
    )
    
    type ingressConfig struct {
    	// Service is the kubernetes Service name for the cluster
    	Service types.NamespacedName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/namespace/kube.go

    		return
    	}
    
    	kube2.DumpPods(n.ctx, d, n.name, []string{})
    	kube2.DumpDeployments(n.ctx, d, n.name)
    }
    
    var (
    	_ Instance          = &kubeNamespace{}
    	_ io.Closer         = &kubeNamespace{}
    	_ resource.Resource = &kubeNamespace{}
    	_ resource.Dumper   = &kubeNamespace{}
    )
    
    func (n *kubeNamespace) Name() string {
    	return n.name
    }
    
    func (n *kubeNamespace) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cmd/erasure-decode.go

    				case errors.Is(err, errDiskNotFound):
    					atomic.AddInt32(&disksNotFound, 1)
    				}
    
    				// This will be communicated upstream.
    				p.orgReaders[bufIdx] = nil
    				if br, ok := p.readers[i].(io.Closer); ok {
    					br.Close()
    				}
    				p.readers[i] = nil
    
    				// Since ReadAt returned error, trigger another read.
    				readTriggerCh <- true
    				return
    			}
    			newBufLK.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/net/http/httputil/dump.go

    	io.WriteString(&b, "\r\n")
    
    	if req.Body != nil {
    		var dest io.Writer = &b
    		if chunked {
    			dest = NewChunkedWriter(dest)
    		}
    		_, err = io.Copy(dest, req.Body)
    		if chunked {
    			dest.(io.Closer).Close()
    			io.WriteString(&b, "\r\n")
    		}
    	}
    
    	req.Body = save
    	if err != nil {
    		return nil, err
    	}
    	return b.Bytes(), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top