Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 631 for binder (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            withClassLoaderFor(binDir) {
                // when:
                buildAccessorsFromSourceFor(
                    schema,
                    testRuntimeClassPath,
                    srcDir,
                    binDir
                )
    
                val binaryAccessorsDir = File(binDir, "org/gradle/kotlin/dsl")
    
                // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            def binDir = file('fake-bin')
    
            then:
            def path
            if (OperatingSystem.current().windows) {
                path = ''
            } else {
                // Set up a fake bin directory, containing the things that the script needs, minus any java that might be in /usr/bin
                links.each { linkToBinary(it, binDir) }
                path = binDir.absolutePath
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.current().getExecutableName("java"))
            return jdkHome
        }
    
        private TestFile createJreInstallation(String version) {
            def jdkHome = temporaryFolder.createDir("jdk-$version")
            def jreHome = jdkHome.file("jre").createDir()
            def binDir = jreHome.createDir("bin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestReportTest.groovy

        }
    
        def "can attach result dirs"() {
            def binDir = temporaryFolder.file("other")
    
            when:
            reportTask.testResults.from(binDir)
    
            then:
            reportTask.testResults.files as List == [binDir]
        }
    
        def test(String name) {
            def test = TestUtil.createTask(Test, project, name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/options.go

    // for each version in the bundledVersions list.
    func validateBundledVersions(bundledVersions SupportedVersions, binDir string) error {
    	for _, v := range bundledVersions {
    		for _, binaryName := range []string{"etcd", "etcdctl"} {
    			fn := filepath.Join(binDir, fmt.Sprintf("%s-%s", binaryName, v))
    			if _, err := os.Stat(fn); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/test/groovy/org/gradle/initialization/CompositeInitScriptFinderTest.groovy

            def result = []
    
            when:
            finder.findScripts(result)
    
            then:
            1 * target1.findScripts(result)
            1 * target2.findScripts(result)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginSpecBuilderAccessorsClassPathTest.kt

            )
    
            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            // when:
            withSynchronousIO {
                buildPluginDependencySpecAccessorsFor(
                    pluginDescriptorsClassPath = classPathOf(pluginsJar),
                    srcDir = srcDir,
                    binDir = binDir
                )
            }
    
            // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/builder.go

    	}}},
    }
    
    // General setting to control behavior
    type Option struct {
    	IsCustomBuilder bool
    	UseFilterState  bool
    	UseExtendedJwt  bool
    }
    
    // Builder builds Istio authorization policy to Envoy filters.
    type Builder struct {
    	trustDomainBundle trustdomain.Bundle
    	option            Option
    
    	// populated when building for CUSTOM action.
    	customPolicies []model.AuthorizationPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. pkg/http/headers/builder.go

    // limitations under the License.
    
    package headers
    
    import (
    	"net/http"
    )
    
    // Builder for HTTP headers.
    type Builder struct {
    	headers http.Header
    }
    
    // New Builder for HTTP headers.
    func New() *Builder {
    	return &Builder{
    		headers: make(http.Header),
    	}
    }
    
    // Get returns the current value for the key.
    func (b *Builder) Get(key string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top