Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for LookUp (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            dyn_cast<func::FuncOp>(symbol_table.lookup(f_attr.getValue()));
        rewriter.setInsertionPointAfter(float_func);
    
        const std::string quantized_function_name = GetQuantizedFunctionName(
            f_attr.getValue(), /*merged_with_dequantize=*/true,
            /*is_hybrid=*/false);
        const auto quantized_func = dyn_cast_or_null<func::FuncOp>(
            symbol_table.lookup(quantized_function_name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	return i
    }
    
    // LookupOrCreateSym looks up the symbol with the specified name/version,
    // returning its Sym index if found. If the lookup fails, a new external
    // Sym will be created, entered into the lookup tables, and returned.
    func (l *Loader) LookupOrCreateSym(name string, ver int) Sym {
    	i := l.Lookup(name, ver)
    	if i != 0 {
    		return i
    	}
    	i = l.newExtSym(name, ver)
    	static := ver >= sym.SymVerStatic || ver < 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Erase original while op and temporary functions. Note, we use the non_tpu
      // function in the output graph.
      symbol_table.lookup(orig_callers.forward.getF())->erase();
      symbol_table.lookup(orig_callers.core_tpu.getF())->erase();
      symbol_table.lookup(orig_callers.backward.getF())->erase();
      orig_while_op.body_function().erase();
      orig_while_op.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/time/format.go

    				err = errBad
    				break
    			}
    			p, value = value[0:4], value[4:]
    			year, err = atoi(p)
    		case stdMonth:
    			month, value, err = lookup(shortMonthNames, value)
    			month++
    		case stdLongMonth:
    			month, value, err = lookup(longMonthNames, value)
    			month++
    		case stdNumMonth, stdZeroMonth:
    			month, value, err = getnum(value, std == stdZeroMonth)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. src/reflect/type.go

    // returned by Get is unspecified. To determine whether a tag is
    // explicitly set to the empty string, use [StructTag.Lookup].
    func (tag StructTag) Get(key string) string {
    	v, _ := tag.Lookup(key)
    	return v
    }
    
    // Lookup returns the value associated with key in the tag string.
    // If the key is present in the tag the value (which may be empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. cmd/batch-handlers.go

    			}
    		}
    	}
    }
    
    func lookupStyle(s string) miniogo.BucketLookupType {
    	var lookup miniogo.BucketLookupType
    	switch s {
    	case "on":
    		lookup = miniogo.BucketLookupPath
    	case "off":
    		lookup = miniogo.BucketLookupDNS
    	default:
    		lookup = miniogo.BucketLookupAuto
    
    	}
    	return lookup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            InstantiatorFactory instantiatorFactory = services.get(InstantiatorFactory.class);
            DefaultServiceRegistry lookup = new DefaultServiceRegistry(services);
            lookup.addProvider(new ServiceRegistrationProvider() {
                @Provides
                public DependencyResolutionServices createServices() {
                    return dms.create(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    	}
    	return pkg.mod
    }
    
    // Lookup returns the source directory, import path, and any loading error for
    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    		panic("Lookup called with empty package path")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        def "cannot inject shared build service without a name when multiple services exist"() {
            given:
            serviceImplementation()
            // unnamed service implies type-based lookup
            customTaskUsingServiceViaProperty("@${ServiceReference.name}")
            buildFile """
                gradle.sharedServices.registerIfAbsent("counter1", CountingService) {
                    parameters.initial = 10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top