Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for addType (0.12 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
      let hasCanonicalizer = 1;
    
      let builders = [
        OpBuilder<(ins "TypedAttr":$value),
        [{
          $_state.addAttribute("value", value);
          $_state.addTypes(value.getType());
        }]>
      ];
    
      let extraClassDeclaration = [{
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r);
      }];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			for _, addr := range addressesToReport {
    				var addrType k8s.AddressType
    				if _, err := netip.ParseAddr(addr); err == nil {
    					addrType = k8s.IPAddressType
    				} else {
    					addrType = k8s.HostnameAddressType
    				}
    				gs.Addresses = append(gs.Addresses, k8s.GatewayStatusAddress{
    					Value: addr,
    					Type:  &addrType,
    				})
    			}
    		}
    		// Prune listeners that have been removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

          for (mlir::TensorType subtype : subtypes) {
            DataType dtype;
            TF_RETURN_IF_ERROR(ConvertToDataType(subtype.getElementType(), &dtype));
            handle_dtypes_attr.mutable_list()->add_type(dtype);
    
            SetTensorShapeProto(subtype,
                                handle_shapes_attr.mutable_list()->add_shape());
          }
    
          (*node_def->mutable_attr())["_handle_dtypes"] = handle_dtypes_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. 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)
  5. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -N IP-MASQ
        iptables -w -t nat -A POSTROUTING -m comment --comment "ip-masq: ensure nat POSTROUTING directs all non-LOCAL destination traffic to our custom IP-MASQ chain" -m addrtype ! --dst-type LOCAL -j IP-MASQ
        iptables -w -t nat -A IP-MASQ -d 169.254.0.0/16 -m comment --comment "ip-masq: local traffic is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top