Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setSystemPropertiesArgs (0.26 sec)

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

                // Other stuff
                startParameter.setProjectProperties(NO_NULL_STRING_MAP_SERIALIZER.read(decoder));
                startParameter.setSystemPropertiesArgs(NO_NULL_STRING_MAP_SERIALIZER.read(decoder));
                startParameter.setInitScripts(fileListSerializer.read(decoder));
                startParameter.setLockedDependenciesToUpdate(stringListSerializer.read(decoder));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.projectProperties = projectProperties;
        }
    
        public Map<String, String> getSystemPropertiesArgs() {
            return systemPropertiesArgs;
        }
    
        public void setSystemPropertiesArgs(Map<String, String> systemPropertiesArgs) {
            this.systemPropertiesArgs = systemPropertiesArgs;
        }
    
        /**
         * Returns the directory to use as the user home directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top