Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 151 for assign_id (1.68 sec)

  1. src/go/types/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
    - 31K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/cc/framework/scope.h

      /// the device field set to 'device'.
      Scope WithDevice(const string& device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
      /// their assigned device set to `assigned_device`.
      Scope WithAssignedDevice(const string& assigned_device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.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: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    		// - Update. Updating on an existing Pod's labels (e.g., removal) may make
    		// an unschedulable Pod schedulable.
    		// - Add. An unschedulable Pod may fail due to violating pod-affinity constraints,
    		// adding an assigned Pod may make it schedulable.
    		//
    		// A note about UpdateNodeTaint event:
    		// NodeAdd QueueingHint isn't always called because of the internal feature called preCheck.
    		// As a common problematic scenario,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. src/encoding/gob/doc.go

    the top-level value is complete.
    
    The representation of types is described below. When a type is defined on a given
    connection between an [Encoder] and [Decoder], it is assigned a signed integer type
    id. When [Encoder.Encode](v) is called, it makes sure there is an id assigned for
    the type of v and all its elements and then it sends the pair (typeid, encoded-v)
    where typeid is the type id of the encoded type of v and encoded-v is the gob
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top