Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,753 for toolID (0.13 sec)

  1. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

        }
    
        /**
         * Searches the specified class path for Groovy Jars ({@code groovy(-indy)}, {@code groovy-all(-indy)}) and returns a corresponding class path for executing Groovy tools such as the Groovy
         * compiler and Groovydoc tool. The tool versions will match those of the Groovy Jars found. If no Groovy Jars are found on the specified class path, a class path with the contents of the {@code
         * groovy} configuration will be returned.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vet/vetflag.go

    	parseVettoolFlag(args)
    
    	// Query the vet command for its flags.
    	var tool string
    	if vetTool == "" {
    		tool = base.Tool("vet")
    	} else {
    		var err error
    		tool, err = filepath.Abs(vetTool)
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    	out := new(bytes.Buffer)
    	vetcmd := exec.Command(tool, "-flags")
    	vetcmd.Stdout = out
    	if err := vetcmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tests/preload_test.go

    			Manager: &User{
    				Name: "Alexis Manager",
    				Tools: []Tools{
    					{Name: "Alexis Tool 1"},
    					{Name: "Alexis Tool 2"},
    				},
    			},
    		},
    		{
    			Name: "TestMergeNestedPreloadWithNestedJoin-2",
    			Manager: &User{
    				Name: "Jinzhu Manager",
    				Tools: []Tools{
    					{Name: "Jinzhu Tool 1"},
    					{Name: "Jinzhu Tool 2"},
    				},
    			},
    		},
    	}
    
    	DB.Create(&users)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.tools
    
    import org.gradle.api.GradleException
    import org.gradle.internal.logging.text.DiagnosticsVisitor
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.nativeplatform.toolchain.internal.ToolType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. tools/build-base-images.sh

    "${ROOT}/tools/docker" --push --no-cache --no-clobber --targets="${DOCKER_TARGETS}"
    
    APKO_IMAGES=""
    for h in ${HUBS}; do
      for t in ${TAGS:-$TAG}; do
        APKO_IMAGES+="${h}/iptables:$t "
      done
    done
    
    # Build apko base image, which isn't part of our image building tool
    APKO_ARCHES="$(echo "${DOCKER_ARCHITECTURES:-arm64,amd64}" | sed 's/linux\///g')"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. docs/de/docs/external-links.md

    # Externe Links und Artikel
    
    **FastAPI** hat eine großartige Community, die ständig wächst.
    
    Es gibt viele Beiträge, Artikel, Tools und Projekte zum Thema **FastAPI**.
    
    Hier ist eine unvollständige Liste einiger davon.
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 21 22:23:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cfg/cfg.go

    //
    // It does this by looking for the path/pkg/tool directory,
    // which is necessary for useful operation of the cmd/go tool,
    // and is not typically present in a GOPATH.
    //
    // There is a copy of this code in x/tools/cmd/godoc/goroot.go.
    func isGOROOT(path string) bool {
    	stat, err := os.Stat(filepath.Join(path, "pkg", "tool"))
    	if err != nil {
    		return false
    	}
    	return stat.IsDir()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/cmd/dist/supported_test.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"internal/platform"
    	"testing"
    )
    
    // TestSupported tests that dist and the main tools agree on
    // which build modes are supported for a given target. We do things
    // this way because the dist tool needs to be buildable directly by
    // the bootstrap compiler, and as such can't import internal packages.
    func TestSupported(t *testing.T) {
    	defer func(a, o string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    // license that can be found in the LICENSE file.
    
    package versions
    
    // This file contains predicates for working with file versions to
    // decide when a tool should consider a language feature enabled.
    
    // GoVersions that features in x/tools can be gated to.
    const (
    	Go1_18 = "go1.18"
    	Go1_19 = "go1.19"
    	Go1_20 = "go1.20"
    	Go1_21 = "go1.21"
    	Go1_22 = "go1.22"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. 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)
Back to top