Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 250 for zeroing (1.17 sec)

  1. pkg/proxy/endpointslicecache_test.go

    					&BaseEndpointInfo{ip: "10.0.1.4", port: 80, endpoint: "10.0.1.4:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.5", port: 80, endpoint: "10.0.1.5:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.1.6", port: 80, endpoint: "10.0.1.6:80", isLocal: false, ready: false, serving: false, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/certificates_test.go

    		ClusterSigningDuration: metav1.Duration{Duration: 10 * time.Hour},
    		KubeletServingSignerConfiguration: csrsigningconfig.CSRSigningConfiguration{
    			CertFile: "/cluster-signing-kubelet-serving/cert-file",
    			KeyFile:  "/cluster-signing-kubelet-serving/key-file",
    		},
    		KubeletClientSignerConfiguration: csrsigningconfig.CSRSigningConfiguration{
    			CertFile: "/cluster-signing-kubelet-client/cert-file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  3. pkg/apis/certificates/v1beta1/defaults_test.go

    	tests := map[string]struct {
    		req    *x509.CertificateRequest
    		usages []capi.KeyUsage
    		exp    bool
    	}{
    		"defaults for kubelet-serving": {
    			req:    newCSR(kubeletServerPEMOptions),
    			usages: kubeletServerUsages,
    			exp:    true,
    		},
    		"defaults without key encipherment for kubelet-serving": {
    			req:    newCSR(kubeletServerPEMOptions),
    			usages: kubeletServerUsagesNoRSA,
    			exp:    true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  4. pkg/proxy/topology_test.go

    			&BaseEndpointInfo{endpoint: "10.0.0.1:80", ready: false, serving: false, isLocal: true},
    			&BaseEndpointInfo{endpoint: "10.0.0.2:80", ready: false, serving: true, terminating: true, isLocal: true},
    			&BaseEndpointInfo{endpoint: "10.0.0.3:80", ready: false, serving: true, terminating: true, isLocal: false},
    		},
    		clusterEndpoints: sets.New[string]("10.0.0.0:80"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

    During local development, there is a script that builds the site and checks for any changes, live-reloading:
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    <span style="color: green;">[INFO]</span> Start watching changes
    <span style="color: green;">[INFO]</span> Start detecting changes
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    		if err != nil {
    			return fmt.Errorf("invalid serving cert keypair: %v", err)
    		}
    
    		x509Cert, err := x509.ParseCertificate(cert.Certificate[0])
    		if err != nil {
    			return fmt.Errorf("invalid serving cert: %v", err)
    		}
    
    		klog.V(2).InfoS("Loaded serving cert", "certName", c.servingCert.Name(), "certDetail", GetHumanCertDetail(x509Cert))
    		if c.eventRecorder != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // Header keys used by the audit system.
    const (
    	// Header to hold the audit ID as the request is propagated through the serving hierarchy. The
    	// Audit-ID header should be set by the first server to receive the request (e.g. the federation
    	// server or kube-aggregator).
    	//
    	// Audit ID is also returned to client by http response header.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

    Along with caching, partial computations are a critical performance optimization to ensure that we do not need to build (or send) every resource to every proxy on every change. This is discussed more in the Config Serving section.
    
    ### Config Serving
    
    Config serving is the layer that actually accepts proxy clients, connected over bidirectional gRPC streams, and serve them the required configuration.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/wasm/asm.go

    						zeroEnd++
    					}
    					// emit segment if omitting zeroes reduces the output size
    					if zeroEnd-segmentEnd >= segmentOverhead || zeroEnd == dataLen {
    						break
    					}
    					segmentEnd = zeroEnd
    				}
    			}
    
    			segments = append(segments, &dataSegment{
    				offset: offset,
    				data:   data[:segmentEnd],
    			})
    			data = data[zeroEnd:]
    			offset += zeroEnd
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/types.go

    	// "kubernetes.io/kubelet-serving" issues serving certificates that kubelets use to serve TLS endpoints,
    	// which kube-apiserver can connect to securely.
    	// Never auto-approved by kube-controller-manager.
    	// Can be issued by the "csrsigning" controller in kube-controller-manager.
    	KubeletServingSignerName = "kubernetes.io/kubelet-serving"
    )
    
    // ExtraValue masks the value so protobuf can generate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top