Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 385 for opens (2.69 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

            runner.gradleOpts.addAll([
                "--add-opens",
                "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)
  2. android/pom.xml

                the add-opens. Right now that doesn't seem worth the effort, though.
            -->
            <test.add.opens>
              --add-opens java.base/java.lang=ALL-UNNAMED
              --add-opens java.base/java.util=ALL-UNNAMED
              --add-opens java.base/sun.security.jca=ALL-UNNAMED
            </test.add.opens>
          </properties>
        </profile>
        <profile>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pom.xml

                the add-opens. Right now that doesn't seem worth the effort, though.
            -->
            <test.add.opens>
              --add-opens java.base/java.lang=ALL-UNNAMED
              --add-opens java.base/java.util=ALL-UNNAMED
              --add-opens java.base/sun.security.jca=ALL-UNNAMED
            </test.add.opens>
          </properties>
        </profile>
        <profile>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/inline.go

    				if _, ok := x.(*openPlain); ok {
    					opens = append(opens, len(p.list))
    				}
    				p.list = append(p.list, x)
    				i = end
    				p.skip(i)
    				continue
    			}
    		}
    		if s[i] == ']' && len(opens) > 0 {
    			oi := opens[len(opens)-1]
    			open := p.list[oi].(*openPlain)
    			opens = opens[:len(opens)-1]
    			if open.Text[0] == '!' || lastLinkOpen <= open.i {
    				if x, end, ok := p.parseLinkClose(s, i, open); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

         * This method is intended to be used in the try-with-resources block's initializer.
         */
        public ScopeContext open(EvaluationOwner owner) {
            return getContext().open(owner);
        }
    
        /**
         * Runs the {@code evaluation} with the {@code owner} being marked as "evaluating".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                jvmArgs(org.gradle.internal.jvm.JpmsConfiguration.GRADLE_DAEMON_JPMS_ARGS)
            } else {
                jvmArgs(listOf("--add-opens", "java.base/java.util=ALL-UNNAMED")) // Used in tests by native platform library: WrapperProcess.getEnv
                jvmArgs(listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED")) // Used in tests by ClassLoaderUtils
            }
        }
    }
    
    fun Test.addOsAsInputs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emit.go

    // will be the final desired path of the meta file, 'mftmp' will be a
    // temporary file, and 'mf' will be an open os.File pointer for
    // 'mftmp'. The idea is that the client/caller will write content into
    // 'mf', close it, and then rename 'mftmp' to 'mfname'. This function
    // also opens the counter data output file, setting 'cf' and 'cfname'
    // in the state struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                    dependencies.add(runtimeOnlyConfigurationName, project.getLayout().files(pluginClasspathTask));
                }
            }
        }
    
        /**
         * Provides an {@code --add-opens} flag for {@code java.base/java.lang} if the JVM version
         * a given test task is running does not allow reflection of JDK internals by default.
         * Needed when using ProjectBuilder in tests.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                    enableAssertions = true
    
                    if (${clientJdkVersion.isCompatibleWith(JavaVersion.VERSION_16)} && ['2.14.1'].contains(project.findProperty("gradleVersion"))) {
                        jvmArgs = ["--add-opens", "java.base/java.lang=ALL-UNNAMED"]
                    }
                }
    
                java {
                    disableAutoTargetJvm()
                    toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        public static final List<String> ALLOW_ENVIRONMENT_VARIABLE_OVERWRITE = ImmutableList.of("--add-opens=java.base/java.util=ALL-UNNAMED");
    
        private final ToolchainConfiguration toolchainConfiguration = new DefaultToolchainConfiguration();
        private final File gradleUserHomeDir;
    
        private File baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top