Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for CLUSTER_ID (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      auto result_init = getOperation().walk([&](TF::TPUCompilationResultOp op) {
        auto cluster_id = op->getAttrOfType<StringAttr>("_tpu_compilation_status");
        if (!cluster_id) {
          op->emitOpError("missing '_tpu_compilation_status'");
          return WalkResult::interrupt();
        }
        compilation_results[cluster_id].push_back(op);
        return WalkResult::advance();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    	ClusterName = env.Register("CLUSTER_ID", constants.DefaultClusterName,
    		"Defines the cluster and service registry that this Istiod instance belongs to").Get()
    
    	ExternalIstiod = env.Register("EXTERNAL_ISTIOD", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.proto

      repeated string authorization_policies = 16;
    
      WorkloadStatus status = 17;
    
      // The cluster ID that the workload instance belongs to
      string cluster_id = 18;
    
      // The Locality defines information about where a workload is geographically deployed
      Locality locality = 24;
    
      // Reservations for deleted fields.
      reserved 15;
    }
    
    message Locality {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller.go

    		}
    
    		c.deleteCluster(secretKey, cluster)
    	}
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    func (c *Controller) deleteCluster(secretKey string, cluster *Cluster) {
    	log.Infof("Deleting cluster_id=%v configured by secret=%v", cluster.ID, secretKey)
    	cluster.Stop()
    	c.handleDelete(cluster.ID)
    	c.cs.Delete(secretKey, cluster.ID)
    
    	log.Infof("Number of remote clusters: %d", c.cs.Len())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller.go

    	nodeClusterID := nodeClusterID(node)
    	for _, r := range c.GetRegistries() {
    		if skipSearchingRegistryForProxy(nodeClusterID, r) {
    			log.Debugf("GetProxyServiceTargets(): not searching registry %v: proxy %v CLUSTER_ID is %v",
    				r.Cluster(), node.ID, nodeClusterID)
    			continue
    		}
    
    		instances := r.GetProxyServiceTargets(node)
    		if len(instances) > 0 {
    			out = append(out, instances...)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pkg/model/proxy.go

    	// MeshID specifies the mesh ID environment variable.
    	MeshID string `json:"MESH_ID,omitempty"`
    
    	// ClusterID defines the cluster the node belongs to.
    	ClusterID cluster.ID `json:"CLUSTER_ID,omitempty"`
    
    	// Network defines the network the node belongs to. It is an optional metadata,
    	// set at injection time. When set, the Endpoints returned to a node and not on same network
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tracing.go

    			},
    		},
    		{
    			Tag: "istio.namespace",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: namespace,
    				},
    			},
    		},
    		{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: clusterID,
    				},
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tracing_test.go

    			Tag: "istio.canonical_service",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: "unknown",
    				},
    			},
    		},
    		&tracing.CustomTag{
    			Tag: "istio.cluster_id",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: "unknown",
    				},
    			},
    		},
    		&tracing.CustomTag{
    			Tag: "istio.mesh_id",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	Connected []AdsClient `json:"clients,omitempty"`
    }
    
    // SyncStatus is the synchronization status between Pilot and a given Envoy
    type SyncStatus struct {
    	ClusterID            string         `json:"cluster_id,omitempty"`
    	ProxyID              string         `json:"proxy,omitempty"`
    	ProxyType            model.NodeType `json:"proxy_type,omitempty"`
    	ProxyVersion         string         `json:"proxy_version,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top