Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for assign_id (0.28 sec)

  1. src/cmd/compile/internal/types2/decl.go

    	// it depends on are the remaining objects on that path. Color encoding
    	// is such that the color value of a grey object indicates the index of
    	// that object in the object path.
    
    	// During type-checking, white objects may be assigned a type without
    	// traversing through objDecl; e.g., when initializing constants and
    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//  var _ T2 = x
    	InvalidChanAssign
    
    	// IncompatibleAssign occurs when the type of the right-hand side expression
    	// in an assignment cannot be assigned to the type of the variable being
    	// assigned.
    	//
    	// Example:
    	//  var x []int
    	//  var _ int = x
    	IncompatibleAssign
    
    	// UnaddressableFieldAssign occurs when trying to assign to a struct field
    	// in a map value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	BinaryPathFilename = "/usr/local/bin/envoy"
    
    	// ServiceClusterName service cluster name used in xDS calls
    	ServiceClusterName = "istio-proxy"
    
    	// IstioIngressGatewayName is the internal gateway name assigned to ingress
    	IstioIngressGatewayName = "istio-autogenerated-k8s-ingress"
    
    	KubernetesGatewayName = "istio-autogenerated-k8s-gateway"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

      }
    };
    
    // Checks if the input producer op is supported in this transform. Right now, we
    // only check if it is a tf.IteratorGetNext where resource input is coming from
    // a VarHandle on CPU or a function argument assigned to CPU.
    bool IsSupportedInputOp(
        Operation* op,
        const TF::ResourceAliasAnalysis::Info& resource_alias_analysis) {
      TF::IteratorGetNextOp iterator_op = llvm::dyn_cast<TF::IteratorGetNextOp>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	persistentVolumeSize *resource.Quantity
    
    	// effectiveSELinuxMountFileLabel is the SELinux label that will be applied to the volume using mount options.
    	// If empty, then:
    	// - either the context+label is unknown (assigned randomly by the container runtime)
    	// - or the volume plugin responsible for this volume does not support mounting with -o context
    	// - or the volume is not ReadWriteOncePod
    	// - or the OS does not support SELinux
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. schema/schema.go

    	FieldsByBindName          map[string]*Field // embedded fields is 'Embed.Field'
    	FieldsByDBName            map[string]*Field
    	FieldsWithDefaultDBValue  []*Field // fields with default value assigned by database
    	Relationships             Relationships
    	CreateClauses             []clause.Interface
    	QueryClauses              []clause.Interface
    	UpdateClauses             []clause.Interface
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/pod.go

    }
    
    // onEvent updates the IP-based index (pc.podsByIP).
    func (pc *PodCache) onEvent(_, pod *v1.Pod, ev model.Event) error {
    	ip := pod.Status.PodIP
    	// PodIP will be empty when pod is just created, but before the IP is assigned
    	// via UpdateStatus.
    	if len(ip) == 0 {
    		return nil
    	}
    
    	key := config.NamespacedName(pod)
    	switch ev {
    	case model.EventAdd:
    		if shouldPodBeInEndpoints(pod) && IsPodReady(pod) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers.go

    			// it's not routable at this point and something is wrong/we should discard this event.
    			podIPs := util.GetPodIPsIfPresent(pod)
    			if len(podIPs) == 0 {
    				log.Warnf("pod %s does not appear to have any assigned IPs, not capturing", pod.Name)
    				return nil
    			}
    
    			err := s.dataplane.AddPodToMesh(s.ctx, pod, podIPs, "")
    			if err != nil {
    				log.Warnf("AddPodToMesh(%s) returned %v", newPod.Name, err)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. cmd/config-current.go

    // found, otherwise use default parameters
    func newSrvConfig(objAPI ObjectLayer) error {
    	// Initialize server config.
    	srvCfg := newServerConfig()
    
    	// hold the mutex lock before a new config is assigned.
    	globalServerConfigMu.Lock()
    	globalServerConfig = srvCfg
    	globalServerConfigMu.Unlock()
    
    	// Save config into file.
    	return saveServerConfig(GlobalContext, objAPI, srvCfg)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

      internal var allocationLimit = 1
        private set
    
      /** Current calls carried by this connection. */
      val calls = mutableListOf<Reference<RealCall>>()
    
      /** Timestamp when `allocations.size()` reached zero. Also assigned upon initial connection. */
      var idleAtNs = Long.MAX_VALUE
    
      /**
       * Returns true if this is an HTTP/2 connection. Such connections can be used in multiple HTTP
       * requests simultaneously.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top