Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for addType (0.3 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	}
    	gateway.Labels = labels
    
    	if ready {
    		addrType := k8sbeta.IPAddressType
    		gateway.Status = k8sbeta.GatewayStatus{
    			// addresses:
    			// - type: IPAddress
    			//   value: 10.96.59.188
    			Addresses: []k8sv1.GatewayStatusAddress{
    				{
    					Type:  &addrType,
    					Value: ip,
    				},
    			},
    		}
    	}
    	s.grc.CreateOrUpdate(&gateway)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	t.Align = -1
    	t.C = &TypeRepr{Repr: dtype.Common().Name}
    	c.m[key] = t
    
    	switch dt := dtype.(type) {
    	default:
    		fatalf("%s: unexpected type: %s", lineno(pos), dtype)
    
    	case *dwarf.AddrType:
    		if t.Size != c.ptrSize {
    			fatalf("%s: unexpected: %d-byte address type - %s", lineno(pos), t.Size, dtype)
    		}
    		t.Go = c.uintptr
    		t.Align = t.Size
    
    	case *dwarf.ArrayType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_TYPE_DISK    = 0x0001
    	FILE_TYPE_PIPE    = 0x0003
    	FILE_TYPE_REMOTE  = 0x8000
    	FILE_TYPE_UNKNOWN = 0x0000
    )
    
    type Hostent struct {
    	Name     *byte
    	Aliases  **byte
    	AddrType uint16
    	Length   uint16
    	AddrList **byte
    }
    
    type Protoent struct {
    	Name    *byte
    	Aliases **byte
    	Proto   uint16
    }
    
    const (
    	DNS_TYPE_A       = 0x0001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    	},
    	"debug/buildinfo": {
    		{"BuildInfo", Type, 18},
    		{"Read", Func, 18},
    		{"ReadFile", Func, 18},
    	},
    	"debug/dwarf": {
    		{"(*AddrType).Basic", Method, 0},
    		{"(*AddrType).Common", Method, 0},
    		{"(*AddrType).Size", Method, 0},
    		{"(*AddrType).String", Method, 0},
    		{"(*ArrayType).Common", Method, 0},
    		{"(*ArrayType).Size", Method, 0},
    		{"(*ArrayType).String", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          }
          auto output_shape = DenseElementsAttr::get(shape_type, shape);
          auto shape_op = builder.create<tfl::ConstOp>(loc, output_shape);
          op_state.addOperands({shape_op});
        }
    
        op_state.addTypes({type});
      }
    
      // While the last several tensors could be optional tensors for an tfl op, the
      // number of input operands could vary. Gets the min/max number of
      // operands from tflite op name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    			// Already handled.
    			continue
    		}
    
    		b, err := sectionData(i, s)
    		if err != nil {
    			return nil, err
    		}
    
    		if suffix == "types" {
    			if err := d.AddTypes(fmt.Sprintf("types-%d", i), b); err != nil {
    				return nil, err
    			}
    		} else {
    			if err := d.AddSection(".debug_"+suffix, b); err != nil {
    				return nil, err
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    		p.As == ADECB || p.As == ADECL || p.As == ADECQ || p.As == ADECW
    
    	if !cmpAddSub && !testAnd && !incDec {
    		return false, 0
    	}
    
    	if !incDec {
    		var argOne obj.AddrType
    		var argTwo obj.AddrType
    		if cmp {
    			argOne = p.From.Type
    			argTwo = p.To.Type
    		} else {
    			argOne = p.To.Type
    			argTwo = p.From.Type
    		}
    		if argOne == obj.TYPE_REG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Flags          uint16
    	Ifindex        uint32
    	Queue_id       uint32
    	Shared_umem_fd uint32
    }
    
    type RawSockaddrPPPoX [0x1e]byte
    
    type RawSockaddrTIPC struct {
    	Family   uint16
    	Addrtype uint8
    	Scope    int8
    	Addr     [12]byte
    }
    
    type RawSockaddrL2TPIP struct {
    	Family  uint16
    	Unused  uint16
    	Addr    [4]byte /* in_addr */
    	Conn_id uint32
    	_       [4]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      ::flatbuffers::uoffset_t start_;
      void add_shape(::flatbuffers::Offset<::flatbuffers::Vector<int32_t>> shape) {
        fbb_.AddOffset(VariantSubType::VT_SHAPE, shape);
      }
      void add_type(tflite::TensorType type) {
        fbb_.AddElement<int8_t>(VariantSubType::VT_TYPE, static_cast<int8_t>(type), 0);
      }
      void add_has_rank(bool has_rank) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                        Attribute value) {
      // Handle the case where the type and value are already tensors.
      if (mlir::isa<TensorType>(type) && mlir::isa<ElementsAttr>(value)) {
        result.addTypes(type);
        result.addAttribute("value", value);
        return;
      }
    
      // Otherwise, default to the attribute builder.
      ConstOp::build(builder, result, value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top