Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Assigned (0.18 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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    The filter name to match on. type: string subFilter: description: The next level filter within this filter to match upon. properties: name: description: The filter name to match on. type: string type: object type: object name: description: The name assigned to the filter chain. type: string sni: description: The SNI value used by a filter chain's match condition. type: string transportProtocol: description: Applies only to `SIDECAR_INBOUND` context. type: string type: object listenerFilter: description:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// cannot appear in the generated assembly.
    		{name: "FlagEQ"},     // equal
    		{name: "FlagLT_ULT"}, // signed < and unsigned <
    		{name: "FlagLT_UGT"}, // signed < and unsigned >
    		{name: "FlagGT_UGT"}, // signed > and unsigned >
    		{name: "FlagGT_ULT"}, // signed > and unsigned <
    
    		// Atomic loads.  These are just normal loads but return <value,memory> tuples
    		// so they can be properly ordered with other loads.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. 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)
  10. 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)
Back to top