Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for outputDir (0.37 sec)

  1. src/cmd/go/internal/work/buildid.go

    				panic("internal error: a.output not set")
    			}
    			outputID, _, err := c.Put(a.actionID, r)
    			r.Close()
    			if err == nil && cfg.BuildX {
    				sh.ShowCmd("", "%s # internal", joinUnambiguously(str.StringList("cp", target, c.OutputFile(outputID))))
    			}
    			if b.NeedExport {
    				if err != nil {
    					return err
    				}
    				a.Package.Export = c.OutputFile(outputID)
    				a.Package.BuildID = a.buildID
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

            paths.collect { it.replaceAll('/', Matcher.quoteReplacement(File.separator)) }
        }
    
        SearchResult<GccMetadata> output(String outputStr, GccCompilerType compilerType = GCC) {
            output(outputStr, "", compilerType)
        }
    
        SearchResult<GccMetadata> output(String output, String error, GccCompilerType compilerType = GCC, List<File> path = []) {
            runsCompiler(output, error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. hack/update-codegen.sh

            k8s.io/kube-openapi/cmd/openapi-gen
    
        # The result file, in each pkg, of open-api generation.
        local output_file="${GENERATED_FILE_PREFIX}openapi.go"
    
        local output_dir="pkg/generated/openapi"
        local output_pkg="k8s.io/kubernetes/${output_dir}"
        local known_violations_file="${API_KNOWN_VIOLATIONS_DIR}/violation_exceptions.list"
    
        local report_file="${OUT_DIR}/api_violations.report"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        compat_api_versions = [
            1,
            2,
        ],
        compat_init_templates = [
            "compat_template_v1.__init__.py",
            "compat_template.__init__.py",
        ],
        output_dir = "_api/v1/",
        output_files = TENSORFLOW_API_INIT_FILES_V1,
        output_package = "tensorflow._api.v1",
        packages_to_ignore = ["tensorflow.python.framework.test_ops"],
        root_file_name = "v1.py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		outputHdr := ""
    		if len(output) > 0 {
    			outputHdr = "\nCommand output:\n\n"
    		}
    		fatalf("cannot invoke C compiler %q: %v\n\n"+
    			"Go needs a system C compiler for use with cgo.\n"+
    			"To set a C compiler, set CC=the-compiler.\n"+
    			"To disable cgo, set CGO_ENABLED=0.\n%s%s", cc, err, outputHdr, output)
    	}
    }
    
    func defaulttarg() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    		}
    
    		c := cache.Default()
    		outputID, _, err := c.Put(a.actionID, r)
    		r.Close()
    		if err != nil {
    			return fmt.Errorf("error adding target to cache: %w", err)
    		}
    		if cfg.BuildX {
    			sh.ShowCmd("", "%s # internal", joinUnambiguously(str.StringList("cp", a.Target, c.OutputFile(outputID))))
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Read
    [the section on segmentation](https://tensorflow.org/api_docs/python/tf/math#Segmentation)
    for an explanation of segments.
    
    Computes a tensor such that
    \\(output_i = \max_j(data_j)\\) where `max` is over `j` such
    that `segment_ids[j] == i`.
    
    If the max is empty for a given segment ID `i`, `output[i] = 0`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top