Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for nodeType (0.14 sec)

  1. pkg/istio-agent/agent.go

    // Shared properties with Pilot Proxy struct.
    type Proxy struct {
    	ID          string
    	IPAddresses []string
    	Type        model.NodeType
    	ipMode      model.IPMode
    	DNSDomain   string
    }
    
    func (node *Proxy) DiscoverIPMode() {
    	node.ipMode = model.DiscoverIPMode(node.IPAddresses)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental_graph.cc

        return absl::OkStatus();
      }
    
      tensorflow::FullTypeDef FullType() const override {
        const FullTypeDef* ft;
        mutex_lock l(graph_->mu);
        graph_->graph.NodeType(output_.oper->node.name(), &ft);
        if (ft == nullptr) {
          return FullTypeDef();
        } else {
          return *ft;
        }
      }
    
      TF_Output output_;
    
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/fmt.go

    				if vf.Len() == 0 {
    					continue
    				}
    				if name != "" {
    					indent(w, depth)
    					fmt.Fprintf(w, "%+v-%s", n.Op(), name)
    				}
    				for i, n := 0, vf.Len(); i < n; i++ {
    					dumpNode(w, vf.Index(i).Interface().(Node), depth+1)
    				}
    			}
    		}
    	}
    }
    
    var nodeType = reflect.TypeOf((*Node)(nil)).Elem()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. pilot/test/xds/fake.go

    			return f.BufListener.Dial()
    		}))
    	}
    	adscConn, err := adsc.New(f.Listener.Addr().String(), &adsc.ADSConfig{
    		Config: adsc.Config{
    			IP:        p.IPAddresses[0],
    			NodeType:  p.Type,
    			Meta:      p.Metadata.ToStruct(),
    			Locality:  p.Locality,
    			Namespace: p.ConfigNamespace,
    			GrpcOpts:  opts,
    		},
    		InitialDiscoveryRequests: initialWatch,
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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