Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/c_api.h

    //  fn_body - the graph whose operations (or subset of whose operations) will be
    //            converted to TF_Function.
    //  fn_name - the name of the new TF_Function. Should match the operation
    //            name (OpDef.name) regexp [A-Z][A-Za-z0-9_.\\-/]*.
    //            If `append_hash_to_fn_name` is false, `fn_name` must be distinct
    //            from other function and operation names (at least those
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    // $CC_FOR_goos_goarch, if set, applies only to goos/goarch.
    func compilerEnv(envName, def string) map[string]string {
    	m := map[string]string{"": def}
    
    	if env := os.Getenv(envName); env != "" {
    		m[""] = env
    	}
    	if env := os.Getenv(envName + "_FOR_TARGET"); env != "" {
    		if gohostos != goos || gohostarch != goarch {
    			m[gohostos+"/"+gohostarch] = m[""]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		sn := d.ldr.SymName(rsym)
    		tn := sn[len(dwarf.InfoPrefix):]
    		ts := d.ldr.Lookup("type:"+tn, 0)
    		d.defgotype(ts)
    	}
    }
    
    func expandFile(fname string) string {
    	fname = strings.TrimPrefix(fname, src.FileSymPrefix)
    	return expandGoroot(fname)
    }
    
    // writeDirFileTables emits the portion of the DWARF line table
    // prologue containing the include directories and file names,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

        private void putClassOnStack(MethodVisitor methodVisitor, Class<?> managedTypeClass) {
            putConstantOnStack(methodVisitor, managedTypeClass.getName());
            methodVisitor.visitMethodInsn(INVOKESTATIC, CLASS_INTERNAL_NAME, "forName", FOR_NAME_METHOD_DESCRIPTOR, false);
        }
    
        private void writeGeneratedViewMethods(ClassWriter visitor, Type generatedType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    		wasmPluginsChanged, proxyConfigsChanged bool
    
    	changedEnvoyFilters := sets.New[ConfigKey]()
    
    	for conf := range pushReq.ConfigsUpdated {
    		switch conf.Kind {
    		case kind.ServiceEntry, kind.DNSName:
    			servicesChanged = true
    		case kind.DestinationRule:
    			destinationRulesChanged = true
    		case kind.VirtualService:
    			virtualServicesChanged = true
    		case kind.Gateway:
    			gatewayChanged = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top