Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setApplicationDefaultJvmArgs (0.2 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/internal/DefaultJavaApplication.java

            return DeprecationLogger.whileDisabled(convention::getApplicationDefaultJvmArgs);
        }
    
        @Override
        public void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs) {
            DeprecationLogger.whileDisabled(() -> convention.setApplicationDefaultJvmArgs(applicationDefaultJvmArgs));
        }
    
        @Override
        public String getExecutableDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/internal/DefaultApplicationPluginConvention.java

        }
    
        @Override
        public Iterable<String> getApplicationDefaultJvmArgs() {
            logDeprecation();
            return applicationDefaultJvmArgs;
        }
    
        @Override
        public void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs) {
            logDeprecation();
            this.applicationDefaultJvmArgs = applicationDefaultJvmArgs;
        }
    
        @Override
        public String getExecutableDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

         */
        public abstract Iterable<String> getApplicationDefaultJvmArgs();
    
        /**
         * Array of string arguments to pass to the JVM when running the application
         */
        public abstract void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs);
    
        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract String getExecutableDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        Iterable<String> getApplicationDefaultJvmArgs();
    
        /**
         * Array of string arguments to pass to the JVM when running the application
         */
        void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs);
    
        /**
         * Directory to place executables in
         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top