Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 839 for TOOL (0.1 sec)

  1. README.md

    You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See
    [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers,
    see <https://min.io/docs/minio/linux/developers/minio-drivers.html> to view MinIO SDKs for supported languages.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. test/linkobj.go

    		// inlining is disabled to make sure that the link objects contain needed code.
    		run("go", "tool", "compile", "-p=p1", pkg, "-D", ".", "-importcfg=importcfg", "-l", "-o", "p1."+o, "-linkobj", "p1.lo", "p1.go")
    		run("go", "tool", "compile", "-p=p2", pkg, "-D", ".", "-importcfg=importcfg", "-l", "-o", "p2."+o, "-linkobj", "p2.lo", "p2.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

                try {
                    loadTool("org.antlr.Tool", null);
                } catch (ClassNotFoundException cnf) {
                    return false;
                }
                return true;
            }
        }
    
        private abstract static class AntlrTool {
            /**
             * Utility method to create an instance of the Tool class.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain.go

    // license that can be found in the LICENSE file.
    
    package versions
    
    // toolchain is maximum version (<1.22) that the go toolchain used
    // to build the current tool is known to support.
    //
    // When a tool is built with >=1.22, the value of toolchain is unused.
    //
    // x/tools does not support building with go <1.18. So we take this
    // as the minimum possible maximum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  5. architecture/standards/0001-use-architectural-decision-records.md

    * They are not synced with the code to reflect the eventual solution that is committed
    * Google Docs is not a "code-oriented" tool, like asciidoc can be
    * Review in Google Docs is not as simple as a PR code review in GitHub
    
    ## Decision
    
    The *Build Tool Team* has decided to use Architectural Decision Records (aka ADR) to track decisions we want to follow.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/toolexec.txt

    )
    
    func main() {
    	tool, args := os.Args[1], os.Args[2:]
    	toolName := filepath.Base(tool)
    	if len(args) > 0 && args[0] == "-V=full" {
    		// We can't alter the version output.
    	} else {
    		// Print which tool we're running, and on what package.
    		fmt.Fprintf(os.Stdout, "%s TOOLEXEC_IMPORTPATH=%q\n", toolName, os.Getenv("TOOLEXEC_IMPORTPATH"))
    	}
    
    	// Simply run the tool.
    	cmd := exec.Command(tool, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPath.java

            private final File tool;
    
            private FoundTool(File tool) {
                this.tool = tool;
            }
    
            @Override
            public boolean isAvailable() {
                return true;
            }
    
            @Override
            public File getTool() {
                return tool;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/help.txt

    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    stderr 'Run ''go help vet'' for details.'
    stderr 'Run ''go tool vet help'' for a full list of flags and analyzers.'
    stderr 'Run ''go tool vet -help'' for an overview.'
    
    # Earlier versions of Go printed a large document here, instead of these two
    # lines.
    ! go test -h
    stderr 'usage: go test'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_build_trimpath_issue48557.txt

    ! stderr ${/}compile$GOEXE.*' -D[ =]'
    
    go tool buildid a.exe
    cp stdout ../foo-buildid.txt
    go version a.exe
    cp stdout ../foo-version.txt
    cd ..
    
    
    # On the second build — in a different directory but with -trimpath — the
    # compiler should not be invoked, since the cache key should be identical.
    # Only the linker and buildid tool should be needed.
    
    mkdir bar
    cp foo/main.go bar/main.go
    cd bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 16:46:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
    import org.gradle.nativeplatform.fixtures.app.CppCompilerDetectingTestApp
    
    /**
     * Test that each available tool chain can be discovered and used without configuration, assuming it is in the path.
     */
    class NativeToolChainDiscoveryIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top