Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for var_name (0.33 sec)

  1. tensorflow/compiler/jit/shape_inference.cc

            if (!shape_proto.unknown_rank()) {
              NodeDef const_def;
              const_def.set_op("Const");
              Node* var_node;
              TF_RETURN_IF_ERROR(n->input_node(0, &var_node));
              const_def.set_name(
                  graph->NewName(absl::StrCat("var_shape_", var_node->name())));
              DataType dtype = n->output_type(0);
              AddNodeAttr("dtype", dtype, &const_def);
              TensorProto value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    #       The Groovy template language is run in two phases.
    #
    #        1. Any character following \ is passed unmodified through to the
    #           next phase, while the \ is removed. Any other $ followed by
    #           varName or {varName} is replaced by the value of that variable.
    #
    #        2. The result of the first phase is parsed and run in a similar
    #           manner to JSP or MASON or PHP: anything within < % ... % > is a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    	for _, reason := range reasons {
    		switch reason {
    		case ErrReasonBindConflict:
    			varNames = append(varNames, "ErrReasonBindConflict")
    		case ErrReasonNodeConflict:
    			varNames = append(varNames, "ErrReasonNodeConflict")
    		case ErrReasonNotEnoughSpace:
    			varNames = append(varNames, "ErrReasonNotEnoughSpace")
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    func substituteValues(patterns []string, varName string, values []string) []string {
    	ret := make([]string, 0, len(patterns))
    	for _, pattern := range patterns {
    		if !strings.Contains(pattern, varName) {
    			ret = append(ret, pattern)
    			continue
    		}
    
    		for _, val := range values {
    			ret = append(ret, strings.Replace(pattern, varName, val, -1))
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            val partNames = ktFileStub.facadePartSimpleNames
            if (partNames != null) {
                val packageFqName = ktFileStub.getPackageFqName()
                for (partName in partNames) {
                    val multiFileClassPartFqName: FqName = packageFqName.child(Name.identifier(partName))
                    index.multiFileClassPartMap.computeIfAbsent(multiFileClassPartFqName) { mutableSetOf() }.add(ktFile)
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

        }
    
        private Set<File> findDependencyJars(String moduleName, String[] jarNames) {
            Set<File> runtimeClasspath = new LinkedHashSet<>();
            for (String jarName : jarNames) {
                runtimeClasspath.add(findDependencyJar(moduleName, jarName));
            }
            return runtimeClasspath;
        }
    
        private Set<Module> getModules(String[] projectNames) {
            Set<Module> modules = new LinkedHashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. cmd/erasure-healing-common_test.go

    	diskFailures[3] = "part.1"
    	diskFailures[15] = "part.1"
    
    	for diskIndex, partName := range diskFailures {
    		for i := range partsMetadata[diskIndex].Parts {
    			if fmt.Sprintf("part.%d", i+1) == partName {
    				filePath := pathJoin(erasureDisks[diskIndex].String(), bucket, object, partsMetadata[diskIndex].DataDir, partName)
    				f, err := os.OpenFile(filePath, os.O_WRONLY|os.O_SYNC, 0)
    				if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.cc

        const std::unordered_set<std::string>* constant_inputs =
            XlaOpRegistry::CompileTimeConstantInputArgNames(def->op());
    
        for (const std::string& arg_name : *constant_inputs) {
          def->add_host_memory_arg(arg_name);
        }
    
        def->set_device_type(device);
        registrations->op_kernel_registrars.emplace_back(
            new kernel_factory::OpKernelRegistrar(def, kernel_class_name, factory));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. docs/debugging/xl-meta/main.go

    			}
    		}
    		sort.Strings(toPrint)
    		fmt.Printf("{\n%s\n}\n", strings.Join(toPrint, ",\n"))
    		if c.Bool("combine") {
    			for partName, data := range foundData {
    				if verid := partDataToVerID[partName]; verid != [2]string{} {
    					file := verid[0]
    					name := verid[1]
    					f := filemap[file][name]
    					fn := fmt.Sprintf("%s-%s.data", file, name)
    					if f != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/syscall/mksyscall.pl

    			$trampolines{$funcname} = 1;
    			# The assembly trampoline that jumps to the libc routine.
    			$text .= "func ${funcname}_trampoline()\n\n";
    			# Tell the linker that funcname can be found in libSystem using varname without the libc_ prefix.
    			my $basename = substr $funcname, 5;
    			my $libc = "libc.so";
    			if ($darwin) {
    				$libc = "/usr/lib/libSystem.B.dylib";
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top