Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 433 for unrenamed (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            when:
            runTask { withSystemProperties('unrelated' : 'value') }
    
            then:
            hasNoSystemProperty('mySystemProperty')
        }
    
        def "Calling withSystemProperties(null) resets to default behavior"() {
            when:
            runTask {
                withSystemProperties('unrelated' : 'value')
                withSystemProperties(null)
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/installExecutable/kotlin/build.gradle.kts

    tasks.register<Copy>("installExecutable") {
        from("build/my-binary")
        into("/usr/local/bin")
        doNotTrackState("Installation directory contains unrelated files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/JdkIllegalReflectionTestWorkerIntegrationTest.groovy

            expect:
            fails "test"
            def results = new DefaultTestExecutionResult(file("."))
            results.assertTestClassesExecuted("example.MainTest")
            results.testClass("example.MainTest").assertTestFailed("runTest", containsString('module java.base does not open java.lang to unnamed module'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue60933.go

    	g(io.Writer(nil), io /* ERROR "does not match" */ .ReadWriter(nil))
    }
    
    // Named and unnamed interface types match if they have the same methods.
    func _() {
    	g(io.Writer(nil), writer)
    	g(io.ReadWriter(nil), writer /* ERROR "does not match" */ )
    }
    
    // There must be no order dependency for named and unnamed interfaces.
    func f[T interface{ m(T) }](a, b T) {}
    
    type F interface {
    	m(F)
    }
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 26 18:33:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
         * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
         * readable name.
         */
        @CanIgnoreReturnValue
        public ToStringHelper addValue(@CheckForNull Object value) {
          return addHolder(value);
        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    		},
    
    		"extra prefix matches case-insensitive with unrelated headers": {
    			nameHeaders:        []string{"X-Remote-User"},
    			groupHeaders:       []string{"X-Remote-Group-1", "X-Remote-Group-2"},
    			extraPrefixHeaders: []string{"X-Remote-Extra-1-", "X-Remote-Extra-2-"},
    			requestHeaders: http.Header{
    				"X-Group-Remote":        {"snorlax"}, // unrelated header
    				"X-Group-Bear":          {"panda"},   // another unrelated header
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/groovyScope/groovy/build.gradle

        mainClass = 'scope'
        classpath = sourceSets.main.runtimeClasspath
        if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
            jvmArgs = ['--add-opens', 'java.base/java.lang=ALL-UNNAMED']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 345 bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
         * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
         * readable name.
         */
        @CanIgnoreReturnValue
        public ToStringHelper addValue(@CheckForNull Object value) {
          return addHolder(value);
        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/useConfigurationScript/build.gradle

    apply plugin: "groovy"
    
    repositories {
        mavenCentral()
    }
    
    compileGroovy {
        if (JavaVersion.current().isJava9Compatible()) {
            groovyOptions.forkOptions.jvmArgs += ['--add-opens', 'java.base/jdk.internal.loader=ALL-UNNAMED']
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 330 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_issue37438.txt

    # version of the module that is already required and does not exist at
    # the version that would be selected by 'go mod tidy', then
    # 'go get foo@requested' should resolve the requested version,
    # not error out on the (unrelated) latest one.
    
    go get example.net/a/p@v0.2.0
    
    -- go.mod --
    module example
    
    go 1.15
    
    require example.net/a v0.1.0
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/a v0.2.0 => ./a2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 798 bytes
    - Viewed (0)
Back to top