Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 445 for unnamed (0.12 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

                    "--add-opens=java.base/java.util=ALL-UNNAMED," +
                        "--add-opens=java.base/java.lang=ALL-UNNAMED," +
                        "--add-opens=java.base/java.lang.invoke=ALL-UNNAMED," +
                        "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED," +
                        "--add-opens=java.base/java.nio.charset=ALL-UNNAMED," +
                        "--add-opens=java.base/java.net=ALL-UNNAMED," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

            "--add-opens=java.base/java.lang=ALL-UNNAMED",
            "--add-opens=java.base/java.lang.invoke=ALL-UNNAMED",
            "--add-opens=java.base/java.util=ALL-UNNAMED",
            "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED", // required by PreferenceCleaningGroovySystemLoader
            "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", // Required by JdkTools and JdkJavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-library.pbtxt

      function {
        signature {
          name: "bar"
        }
      }
      function {
        signature {
          name: "foo"
        }
        node_def {
          name: "unnamed"
          op: "bar"
          experimental_debug_info {
            original_node_names: "unnamed"
          }
        }
      }
    }
    versions {
      producer: 29
      min_consumer: 12
    }
    
    # Verify that functions from the library are properly imported.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

                    "--add-opens", "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

            jvmArgs(
                "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED"
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

                // bug in JDK < 14 that prints the producer (instead of the consumer) name in the error message
                "(package $packageName is declared in the unnamed module, but module $producer does not read it)"
            } else {
                "(package $packageName is declared in the unnamed module, but module $consumer does not read it)"
            }
        }
    
        def "a required module cannot be found if module path inference is turned off"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top