Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for addType (0.67 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        auto& new_control_inputs_for_item = it->second;
        builder.setInsertionPoint(&item);
        OperationState state(item.getLoc(), item.getName());
        types.assign(item.result_type_begin(), item.result_type_end());
        state.addTypes(types);
        for (Region& region : item.getRegions()) {
          state.addRegion()->takeBody(region);
        }
        // Assign existing operands for item.
        operands.assign(item.operand_begin(), item.operand_end());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    				// short-circuited by the EXT chain.)
    				filterRules.Write(
    					"-A", string(kubeExternalServicesChain),
    					"-m", "comment", "--comment", externalTrafficFilterComment,
    					"-m", "addrtype", "--dst-type", "LOCAL",
    					"-m", protocol, "-p", protocol,
    					"--dport", strconv.Itoa(svcInfo.NodePort()),
    					"-j", externalTrafficFilterTarget,
    				)
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      let hasFolder = 1;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value),
        [{
          auto* ctx = value.getContext();
          $_state.addAttribute("value", value);
          $_state.addTypes(TFRAttrType::get(ctx));
        }]>
      ];
    
      let assemblyFormat = [{
        $value attr-dict `->` type($out)
      }];
    }
    
    def TFR_ConstantTensorOp : TFR_Op<"constant_tensor", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    		externalTrafficOnlyArgs := append(args,
    			"-m", "physdev", "!", "--physdev-is-in",
    			"-m", "addrtype", "!", "--src-type", "LOCAL")
    		proxier.natRules.Write(externalTrafficOnlyArgs, "-j", "ACCEPT")
    		dstLocalOnlyArgs := append(args, "-m", "addrtype", "--dst-type", "LOCAL")
    		// Allow traffic bound for external IPs that happen to be recognized as local IPs to stay local.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/debug/pe/file.go

    		}
    		if _, ok := dat[suffix]; ok {
    			// Already handled.
    			continue
    		}
    
    		b, err := sectionData(s)
    		if err != nil {
    			return nil, err
    		}
    
    		if suffix == "types" {
    			err = d.AddTypes(fmt.Sprintf("types-%d", i), b)
    		} else {
    			err = d.AddSection(".debug_"+suffix, b)
    		}
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	return d, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. 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)
  7. src/syscall/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
    	DNS_TYPE_NS      = 0x0002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceregistry_test.go

    }
    
    // nolint: unparam
    func createEndpointSliceWithType(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string,
    	ports []v1.EndpointPort, ips []string, addrType discovery.AddressType,
    ) {
    	esps := make([]discovery.EndpointPort, 0)
    	for _, name := range ports {
    		n := name // Create a stable reference to take the pointer from
    		esps = append(esps, discovery.EndpointPort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. src/debug/macho/file.go

    		}
    		if _, ok := dat[suffix]; ok {
    			// Already handled.
    			continue
    		}
    
    		b, err := sectionData(s)
    		if err != nil {
    			return nil, err
    		}
    
    		if suffix == "types" {
    			err = d.AddTypes(fmt.Sprintf("types-%d", i), b)
    		} else {
    			err = d.AddSection(".debug_"+suffix, b)
    		}
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	return d, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.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: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top