Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for nodeType (0.23 sec)

  1. pilot/pkg/xds/bench_test.go

    	// If set, only run for this config type
    	OnlyRunType string
    	// If set, skip runs for this config type
    	SkipType string
    	// ResourceType of proxy to generate configs for. If not set, sidecar is used
    	ProxyType model.NodeType
    }
    
    var testCases = []ConfigInput{
    	{
    		// Gateways provides an example config for a large Ingress deployment. This will create N
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				obj = obj.children("a:eq(0)");
    				if(s) {
    					obj = obj.clone();
    					obj.children("INS").remove();
    					return obj.html();
    				}
    				else {
    					obj = obj.contents().filter(function() { return this.nodeType == 3; })[0];
    					return obj.nodeValue;
    				}
    			},
    			set_text	: function (obj, val) {
    				obj = this._get_node(obj);
    				if(!obj.length) { return false; }
    				obj = obj.children("a:eq(0)");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    	if strings.HasPrefix(cfg.ID, "waypoint~") {
    		xdsType = "DELTA_GRPC"
    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    		option.NodeType(cfg.ID),
    		option.PilotSubjectAltName(cfg.Metadata.PilotSubjectAltName),
    		option.OutlierLogPath(cfg.Metadata.OutlierLogPath),
    		option.ApplicationLogJSON(cfg.LogAsJSON),
    		option.DiscoveryHost(discHost),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    	proxyID            string                // Identifier that uniquely identifies a proxy.
    	proxyVersion       string                // Version of Proxy.
    	proxyType          model.NodeType        // Indicates whether the proxy is sidecar or gateway.
    	sidecarScope       *model.SidecarScope   // Computed sidecar for the proxy.
    	passThroughBindIPs []string              // Passthrough IPs to be used while building clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		Attributes: model.ServiceAttributes{
    			Name: sidecar,
    			// This will ensure that the right AuthN policies are selected
    			Namespace: sidecarns,
    		},
    	}
    }
    
    func convertResolution(proxyType model.NodeType, service *model.Service) cluster.Cluster_DiscoveryType {
    	switch service.Resolution {
    	case model.ClientSideLB:
    		return cluster.Cluster_EDS
    	case model.DNSLB:
    		return cluster.Cluster_STRICT_DNS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            with(executeTransformationOp.details) {
                transformerName == "FileSizer"
                subjectName == "lib.jar (project :lib)"
                with(plannedTransformStepIdentity) {
                    nodeType == "TRANSFORM_STEP"
                    consumerBuildPath == ":"
                    consumerProjectPath == ":app"
                    componentId == [buildPath: ":", projectPath: ":lib"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    {Element} common offset parent\n */\nexport default function findCommonOffsetParent(element1, element2) {\n  // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n  if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n    return document.documentElement;\n  }\n\n  // Here we make sure to give as \"start\" the element that comes first in the DOM\n  const order =\n    element1.compareDocumentPosition(element2) &\n    Node.DOCUMENT_POSITION_FOLLOWING;\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  9. src/html/template/escape.go

    	}
    	return append(cmds, cmd)
    }
    
    // newIdentCmd produces a command containing a single identifier node.
    func newIdentCmd(identifier string, pos parse.Pos) *parse.CommandNode {
    	return &parse.CommandNode{
    		NodeType: parse.NodeCommand,
    		Args:     []parse.Node{parse.NewIdentifier(identifier).SetTree(nil).SetPos(pos)}, // TODO: SetTree.
    	}
    }
    
    // nudge returns the context that would result from following empty string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    		s.errorf("unknown node: %s", node)
    	}
    }
    
    // walkIfOrWith walks an 'if' or 'with' node. The two control structures
    // are identical in behavior except that 'with' sets dot.
    func (s *state) walkIfOrWith(typ parse.NodeType, dot reflect.Value, pipe *parse.PipeNode, list, elseList *parse.ListNode) {
    	defer s.pop(s.mark())
    	val := s.evalPipeline(dot, pipe)
    	truth, ok := isTrue(indirectInterface(val))
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top