Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for alternate (0.2 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                          during TLS handshake.
                                        type: string
                                      subjectAltNames:
                                        description: A list of alternate names to verify
                                          the subject identity in the certificate.
                                        items:
                                          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    SA_ONSTACK flag with sigaction. Failing to do so is likely to cause
    the program to crash if the signal is received. Go programs routinely
    run with a limited stack, and therefore set up an alternate signal
    stack.
    
    If the non-Go code installs a signal handler for any of the
    synchronous signals (SIGBUS, SIGFPE, SIGSEGV), then it should record
    the existing Go signal handler. If those signals occur while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

                                          during TLS handshake.
                                        type: string
                                      subjectAltNames:
                                        description: A list of alternate names to verify
                                          the subject identity in the certificate.
                                        items:
                                          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	}
    	tr.mu.Unlock()
    }
    
    // useRegisteredProtocol reports whether an alternate protocol (as registered
    // with Transport.RegisterProtocol) should be respected for this request.
    func (t *Transport) useRegisteredProtocol(req *Request) bool {
    	if req.URL.Scheme == "https" && req.requiresHTTP1() {
    		// If this request requires HTTP/1, don't use the
    		// "https" alternate protocol, which is used by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	ec := newClusterWrapper(c)
    	cb.setUpstreamProtocol(ec, port)
    	addTelemetryMetadata(c, port, service, direction, inboundServices)
    	if direction == model.TrafficDirectionOutbound {
    		// If stat name is configured, build the alternate stats name.
    		if len(cb.req.Push.Mesh.OutboundClusterStatName) != 0 {
    			ec.cluster.AltStatName = telemetry.BuildStatPrefix(cb.req.Push.Mesh.OutboundClusterStatName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
      PRIMARY_CN="${primary_cn}" SANS="${sans}" generate-certs
      AGGREGATOR_PRIMARY_CN="${primary_cn}" AGGREGATOR_SANS="${sans}" generate-aggregator-certs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //		instead of making them read-only.
    //	-modfile file
    //		in module aware mode, read (and possibly write) an alternate go.mod
    //		file instead of the one in the module root directory. A file named
    //		"go.mod" must still be present in order to determine the module root
    //		directory, but it is not accessed. When -modfile is specified, an
    //		alternate go.sum file is also used: its path is derived from the
    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. src/cmd/go/internal/help/helpdoc.go

    direct path to the underlying code hosting site.
    
    Import path checking is disabled for code found within vendor trees.
    This makes it possible to copy code into alternate locations in vendor trees
    without needing to update import comments.
    
    Import path checking is also disabled when using modules.
    Import path comments are obsoleted by the go.mod file's module statement.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		runtimeVal := envVar.Value
    		if runtimeVal != "" {
    			// Step 1a: expand variable references
    			runtimeVal = expansion.Expand(runtimeVal, mappingFunc)
    		} else if envVar.ValueFrom != nil {
    			// Step 1b: resolve alternate env var sources
    			switch {
    			case envVar.ValueFrom.FieldRef != nil:
    				runtimeVal, err = kl.podFieldSelectorRuntimeValue(envVar.ValueFrom.FieldRef, pod, podIP, podIPs)
    				if err != nil {
    					return result, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

        args:
        - -c
        - test -e /scrub && find /scrub -mindepth 1 -delete && test -z $(ls -A /scrub) || exit 1
        volumeMounts:
        - name: vol
          mountPath: /scrub
    EOF
    
    # fixup the alternate registry if specified
    if [[ -n "${KUBE_ADDON_REGISTRY:-}" ]]; then
      sed -i -e "******@****.***@${KUBE_ADDON_REGISTRY}@g" "${PV_RECYCLER_OVERRIDE_TEMPLATE}"
    fi
    }
    
    function wait-till-apiserver-ready() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top