Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for getDebugOptions (0.27 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/TestExecutionRequestAction.java

            return ImmutableSet.copyOf(toProviderInternalJvmTestRequest(internalJvmTestRequests, classNames));
        }
    
        private static InternalDebugOptions getDebugOptions(ProviderInternalTestExecutionRequest testExecutionRequest) {
            return testExecutionRequest.getDebugOptions(new DefaultDebugOptions());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        }
    
        public void setDebugPort(int debug) {
            jvmOptions.getDebugOptions().getPort().set(debug);
        }
    
        public void setDebugHost(String host) {
            jvmOptions.getDebugOptions().getHost().set(host);
        }
    
        public void setDebugSuspend(boolean suspend) {
            jvmOptions.getDebugOptions().getSuspend().set(suspend);
        }
    
        public void setDebugServer(boolean server) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaForkOptions.java

            options.setDebug(enabled);
        }
    
        @Override
        public JavaDebugOptions getDebugOptions() {
            return options.getDebugOptions();
        }
    
        @Override
        public void debugOptions(Action<JavaDebugOptions> action) {
            action.execute(options.getDebugOptions());
        }
    
        @Override
        protected Map<String, ?> getInheritableEnvironment() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingJavaExecSpec.java

        }
    
        @Override
        default void setDebug(boolean enabled) {
            getDelegate().setDebug(enabled);
        }
    
        @Override
        default JavaDebugOptions getDebugOptions() {
            return getDelegate().getDebugOptions();
        }
    
        @Override
        default void debugOptions(Action<JavaDebugOptions> action) {
            getDelegate().debugOptions(action);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

            this.extensionDirs = compileOptions.getExtensionDirs();
            this.forkOptions = new MinimalJavaCompilerDaemonForkOptions(compileOptions.getForkOptions());
            this.debugOptions = compileOptions.getDebugOptions();
            this.debug = compileOptions.isDebug();
            this.deprecation = compileOptions.isDeprecation();
            this.failOnError = compileOptions.isFailOnError();
            this.listFiles = compileOptions.isListFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/test/ProviderInternalTestExecutionRequest.java

        Collection<String> getTestClassNames();
        Collection<InternalJvmTestRequest> getInternalJvmTestRequests(Collection<InternalJvmTestRequest> defaults);
    
        /**
         * @since 5.6
         */
        InternalDebugOptions getDebugOptions(InternalDebugOptions defaults);
    
        /**
         * @since 6.1
         */
        Map<String, List<InternalJvmTestRequest>> getTaskAndTests(Map<String, List<InternalJvmTestRequest>> defaults);
    
        /**
         * @since 7.6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            return debugOptions.getEnabled().get();
        }
    
        public void setDebug(boolean enabled) {
            debugOptions.getEnabled().set(enabled);
        }
    
        public JavaDebugOptions getDebugOptions() {
            return debugOptions;
        }
    
        public void copyTo(JavaForkOptions target) {
            target.setJvmArgs(extraJvmArgs);
            target.setSystemProperties(mutableSystemProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/TestExecutionRequest.java

            this.debugOptions = debugOptions;
            this.taskAndTests = testTasks;
            this.isRunDefaultTasks = isRunDefaultTasks;
            this.taskSpecs = taskSpecs;
        }
    
        public InternalDebugOptions getDebugOptions() {
            return debugOptions;
        }
    
        public Map<String, List<InternalJvmTestRequest>>  getTaskAndTests() {
            return taskAndTests;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

        }
    
        @Override
        public void setDebug(boolean enabled) {
            javaOptions.setDebug(enabled);
        }
    
        @Override
        public JavaDebugOptions getDebugOptions() {
            return javaOptions.getDebugOptions();
        }
    
        @Override
        public void debugOptions(Action<JavaDebugOptions> action) {
            javaOptions.debugOptions(action);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                args.add(compileOptions.getHeaderOutputDirectory().getPath());
            }
    
            if (compileOptions.isDebug()) {
                if (compileOptions.getDebugOptions().getDebugLevel() != null) {
                    args.add("-g:" + compileOptions.getDebugOptions().getDebugLevel().trim());
                } else {
                    args.add("-g");
                }
            } else {
                args.add("-g:none");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top