Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 213 for chains (0.1 sec)

  1. manifests/charts/gateways/istio-ingress/values.yaml

          logLevel: warning
    
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	KMSv2KDF featuregate.Feature = "KMSv2KDF"
    
    	// owner: @alexzielenski, @cici37, @jiahuif
    	// kep: https://kep.k8s.io/3962
    	// alpha: v1.30
    	//
    	// Enables the MutatingAdmissionPolicy in Admission Chain
    	MutatingAdmissionPolicy featuregate.Feature = "MutatingAdmissionPolicy"
    
    	// owner: @jiahuif
    	// kep: https://kep.k8s.io/2887
    	// alpha: v1.23
    	// beta: v1.24
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    func (f *FieldNode) Copy() Node {
    	return &FieldNode{tr: f.tr, NodeType: NodeField, Pos: f.Pos, Ident: append([]string{}, f.Ident...)}
    }
    
    // ChainNode holds a term followed by a chain of field accesses (identifier starting with '.').
    // The names may be chained ('.x.y').
    // The periods are dropped from each ident.
    type ChainNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Node  Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/values.yaml

          logLevel: warning
    
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

        remotePilotAddress: ""
    
        ##############################################################################################
        # The following values are found in other charts. To effectively modify these values, make   #
        # make sure they are consistent across your Istio helm charts                                #
        ##############################################################################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    | Ok to use. If chained `withType().getByName()`, use `TaskCollection.named()` instead. +
    
    | link:{javadocPath}/org/gradle/api/DomainObjectCollection.html#configureEach-org.gradle.api.Action-[DomainObjectCollection.configureEach()]
    | Returns `void`, so it cannot be chained.
    
    |===
    
    == Eager APIs to avoid
    
    [cols="a,a", options="header"]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            private MixInMappingAction(List<? extends ViewDecoration> decorations) {
                assert decorations.size() >= 2;
                this.decorations = decorations;
            }
    
            static ViewDecoration chain(List<? extends ViewDecoration> decorations) {
                if (decorations.isEmpty()) {
                    return NO_OP_MAPPER;
                }
                if (decorations.size() == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/crypto/tls/tls.go

    // files. The files must contain PEM encoded data. The certificate file may
    // contain intermediate certificates following the leaf certificate to form a
    // certificate chain. On successful return, Certificate.Leaf will be populated.
    //
    // Before Go 1.23 Certificate.Leaf was left nil, and the parsed certificate was
    // discarded. This behavior can be re-enabled by setting "x509keypairleaf=0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/lds.go

    		log.Warnf("could not find mTLS mode for %s on %s; defaulting to DISABLE", si.Service.Hostname, node.ID)
    		mode = model.MTLSDisable
    	}
    	if mode == model.MTLSPermissive {
    		// TODO gRPC's filter chain match is super limited - only effective transport_protocol match is "raw_buffer"
    		// see https://github.com/grpc/proposal/blob/master/A36-xds-for-servers.md for detail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/net/lookup_windows.go

    				return nil, newDNSError(syscall.EWINDOWS, name, "")
    			}
    		}
    		return addrs, nil
    	}
    
    	type ret struct {
    		addrs []IPAddr
    		err   error
    	}
    
    	var ch chan ret
    	if ctx.Err() == nil {
    		ch = make(chan ret, 1)
    		go func() {
    			addr, err := getaddr()
    			ch <- ret{addrs: addr, err: err}
    		}()
    	}
    
    	select {
    	case r := <-ch:
    		return r.addrs, r.err
    	case <-ctx.Done():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top