Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 862 for otool (0.04 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

            then:
            GradleException e = thrown()
            e.message == toPlatformLineSeparators("""No tool chain is available to build for platform 'platform':
      - Tool chain 'test': nope
      - Tool chain 'test2': not me
      - Tool chain 'test3': not me either""")
        }
    
        def "provides unavailable tool chain when no tool chain available for requested source language and target platform"() {
            unavailableToolChain("test", "nope")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCompilationIntegrationTest.groovy

                        }
                    }
                }
            }
    
            subproject('b') {
                'build.gradle'('''
                    apply plugin: 'java-library'
                ''')
                src {
                    main {
                        java {
                            'Tool.java'('public interface Tool { void execute(); }')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                    }
                }
    """
    
            when:
            run(":a:resolve")
    
            then:
            outputContains("processing b.jar using [tool-a-1.2.jar, tool-b-1.2.jar]")
            outputContains("processing c.jar using [tool-a-1.2.jar, tool-b-1.2.jar]")
            outputContains("result = [b.jar.green, c.jar.green]")
        }
    
        def "transform can receive a file input from a nested bean on the parameter object"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  5. pyproject.toml

        "pydantic-extra-types >=2.0.0",
    ]
    
    [tool.mypy]
    strict = true
    
    [[tool.mypy.overrides]]
    module = "fastapi.concurrency"
    warn_unused_ignores = false
    ignore_missing_imports = true
    
    [[tool.mypy.overrides]]
    module = "fastapi.tests.*"
    ignore_missing_imports = true
    check_untyped_defs = true
    
    [[tool.mypy.overrides]]
    module = "docs_src.*"
    disallow_incomplete_defs = false
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/javadoc/JavadocTest.groovy

            }
            tool.executablePath >> Mock(RegularFile) {
                toString() >> "/test/toolchain/bin/javadoc"
            }
        }
    
        def "execution uses the tool"() {
            task.getJavadocTool().set(tool)
    
            when:
            execute(task)
    
            then:
            1 * tool.execute(_)
        }
    
        def "execution with additional options uses the tool"() {
            task.getJavadocTool().set(tool)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/go/init_test.go

    func BenchmarkExecGoEnv(b *testing.B) {
    	testenv.MustHaveExec(b)
    	gotool, err := testenv.GoTool()
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	// We collect extra metrics.
    	var n, userTime, systemTime int64
    
    	b.ResetTimer()
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			cmd := testenv.Command(b, gotool, "env", "GOARCH")
    
    			if err := cmd.Run(); err != nil {
    				b.Fatal(err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. src/syscall/mkall.sh

    	mksyscall="./mksyscall_libc.pl -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    dragonfly_amd64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. 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)
  10. src/Make.dist

    # Run go tool dist to install a command.
    # The -v causes dist to print the name of each directory as it runs.
    # The -vv causes dist to print each build command as it runs.
    # go tool dist clean cleans all directories, not just this one,
    # but it's as close as we can get.
    
    # Default target (first).
    install:
    	go tool dist install -v
    
    verbose:
    	go tool dist install -vv
    
    clean:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:26:47 UTC 2012
    - 553 bytes
    - Viewed (0)
Back to top