Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 638 for zeroing (0.95 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SelectN [0] (MakeResult x ___)) => x
    (SelectN [1] (MakeResult x y ___)) => y
    (SelectN [2] (MakeResult x y z ___)) => z
    
    // for late-expanded calls, recognize newobject and remove zeroing and nilchecks
    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    (Store (SelectN [0] call:(StaticLECall _ _)) x mem:(SelectN [1] call))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/signature_constants.h

    #ifndef TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
    #define TENSORFLOW_CC_SAVED_MODEL_SIGNATURE_CONSTANTS_H_
    
    namespace tensorflow {
    
    /// Key in the signature def map for `default` serving signatures. The default
    /// signature is used in inference requests where a specific signature was not
    /// specified.
    static constexpr char kDefaultServingSignatureDefKey[] = "serving_default";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 22:31:28 UTC 2018
    - 2.5K 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. releasenotes/notes/prom-rewrite.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 21366
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 208 bytes
    - Viewed (0)
  6. pkg/proxy/endpoint.go

    }
    
    func newBaseEndpointInfo(ip string, port int, isLocal, ready, serving, terminating bool, zoneHints sets.Set[string]) *BaseEndpointInfo {
    	return &BaseEndpointInfo{
    		ip:          ip,
    		port:        port,
    		endpoint:    net.JoinHostPort(ip, strconv.Itoa(port)),
    		isLocal:     isLocal,
    		ready:       ready,
    		serving:     serving,
    		terminating: terminating,
    		zoneHints:   zoneHints,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. releasenotes/notes/agent-metrics.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 22825
    releaseNotes:
    - |
      **Added** Prometheus metrics to istio-agent.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 300 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    // - not use the replace directive.
    // - generate duplicate integers for a merging list patch.
    // - generate empty merging lists.
    // - use patch format from an old client.
    var customStrategicMergePatchTestCaseData = []byte(`
    testCases:
      - description: unique scalars when merging lists
        original:
          mergingIntList:
            - 1
            - 2
        twoWay:
          mergingIntList:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/options_test.go

    	"--cluster-name=k8s",
    	"--cluster-signing-cert-file=/cluster-signing-cert",
    	"--cluster-signing-key-file=/cluster-signing-key",
    	"--cluster-signing-kubelet-serving-cert-file=/cluster-signing-kubelet-serving/cert-file",
    	"--cluster-signing-kubelet-serving-key-file=/cluster-signing-kubelet-serving/key-file",
    	"--cluster-signing-kubelet-client-cert-file=/cluster-signing-kubelet-client/cert-file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca_test.go

    				clientCA: caBundleContent{caBundle: []byte("foo")},
    			},
    			rhs: &dynamicCertificateContent{
    				clientCA: caBundleContent{caBundle: []byte("bar")},
    			},
    			expected: false,
    		},
    		{
    			name: "same with serving",
    			lhs: &dynamicCertificateContent{
    				clientCA:    caBundleContent{caBundle: []byte("foo")},
    				servingCert: certKeyContent{cert: []byte("foo"), key: []byte("foo")},
    			},
    			rhs: &dynamicCertificateContent{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 17 13:37:16 UTC 2019
    - 3.8K bytes
    - Viewed (0)
Back to top