Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Assigned (0.23 sec)

  1. doc/go1.17_spec.html

    <pre class="grammar">
    uint8       the set of all unsigned  8-bit integers (0 to 255)
    uint16      the set of all unsigned 16-bit integers (0 to 65535)
    uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "ip": {
              "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod",
              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodReadinessGate": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	return ret
    }
    
    // These conversion functions are returned by convertOp
    // for classes of conversions. For example, the first function, cvtInt,
    // takes any value v of signed int type and returns the value converted
    // to type t, where t is any signed or unsigned int type.
    
    // convertOp: intXX -> [u]intXX
    func cvtInt(v Value, t Type) Value {
    	return makeInt(v.flag.ro(), uint64(v.Int()), t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.ebss", 0), sect)
    	bssGcEnd := state.datsize - int64(sect.Vaddr)
    
    	// Emit gcdata for bss symbols now that symbol values have been assigned.
    	gcsToEmit := []struct {
    		symName string
    		symKind sym.SymKind
    		gcEnd   int64
    	}{
    		{"runtime.gcdata", sym.SDATA, dataGcEnd},
    		{"runtime.gcbss", sym.SBSS, bssGcEnd},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NodeConfigStatus) DeepCopyInto(out *NodeConfigStatus) {
    	*out = *in
    	if in.Assigned != nil {
    		in, out := &in.Assigned, &out.Assigned
    		*out = new(NodeConfigSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Active != nil {
    		in, out := &in.Active, &out.Active
    		*out = new(NodeConfigSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NodeConfigStatus) DeepCopyInto(out *NodeConfigStatus) {
    	*out = *in
    	if in.Assigned != nil {
    		in, out := &in.Assigned, &out.Assigned
    		*out = new(NodeConfigSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Active != nil {
    		in, out := &in.Active, &out.Active
    		*out = new(NodeConfigSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // All concat operands must be defined by the op of same kind, except for a
      // minor portion which we track in `exceptions`.
      // Map from the operands to operand indices.
      llvm::SmallDenseMap<Value, unsigned, 4> exceptions;
      unsigned operand_idx = 0;
      for (Value arg : op.getValues()) {
        Operation* arg_op = arg.getDefiningOp();
        if (arg_op && arg_op->getName() == first_arg_op->getName()) {
          ++operand_idx;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    ValuePort ComputeInputComponentFor(PackOp op, ArrayRef<unsigned int> port) {
      auto type = mlir::cast<TensorType>(op.getType());
      if (!type.hasRank() || type.getRank() != 1) return {};
      if (port.size() != 2) return {};
      assert(port[0] == 0);
      return ValuePort(op.getOperand(port[1]));
    }
    
    ValuePort ComputeInputComponentFor(ConcatV2Op op, ArrayRef<unsigned int> port) {
      if (port.size() != 2) return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			FieldSelector: selector.String(),
    			LabelSelector: labels.Everything().String(),
    		})
    		if err != nil {
    			return nil, fmt.Errorf("failed to get Pods assigned to node %v", nodeName)
    		}
    		rPods := make([]*v1.Pod, len(pods.Items))
    		for i := range pods.Items {
    			rPods[i] = &pods.Items[i]
    		}
    		return rPods, nil
    	}
    }
    
    type nodeLifecycleController struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    template <class T>
    constexpr bool IsSet(const T &val, unsigned index) {
      return (val & (1 << index)) != 0;
    }
    
    // Sets the `index` bit of `val`.
    template <class T>
    constexpr void Set(T &val, unsigned index) {
      val |= (1 << index);
    }
    
    // Unset the `index` bit of `val`.
    template <class T>
    constexpr void Unset(T &val, unsigned index) {
      val &= ~(1 << index);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top