Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 874 for unnamed (0.1 sec)

  1. 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)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                "java.base/java.util=ALL-UNNAMED",
                "--add-opens",
                "java.base/java.util.concurrent.atomic=ALL-UNNAMED",
                "--add-opens",
                "java.base/java.lang=ALL-UNNAMED",
                "--add-opens",
                "java.base/java.lang.invoke=ALL-UNNAMED",
                "--add-opens",
                "java.base/java.net=ALL-UNNAMED"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

                                    con.entryAttributes['add-exports'] = [
                                        'java.base/jdk.internal.access=ALL-UNNAMED',
                                        'java.base/jdk.internal.loader=ALL-UNNAMED'
                                    ]
                                }
                            }
                        }
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue60933.go

    }
    
    // Different named interface types do not match.
    func _() {
    	g(io.ReadWriter(nil), io.ReadWriter(nil))
    	g(io.ReadWriter(nil), io /* ERROR "does not match" */ .Writer(nil))
    	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)
    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. 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)
  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. test/fixedbugs/issue52535.go

    // compile
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gofrontend crashed converting unnamed bool type to any.
    
    package p
    
    func F() {
    	m := make(map[int]int)
    	var ok any
    	_, ok = m[0]
    	_ = ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 17:37:12 UTC 2022
    - 314 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/groovyScope/kotlin/build.gradle.kts

            classpath = sourceSets.main.get().runtimeClasspath
            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
                jvmArgs = listOf("--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
    - 385 bytes
    - Viewed (0)
  10. 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)
Back to top