Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 163 for systems (1.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableRead.groovy

                @Override
                String getKotlinExpression() {
                    return "System.getenv(\"$name\")"
                }
            }
        }
    
        static EnvVariableRead getEnvGet(String name) {
            return new EnvVariableRead() {
                @Override
                String getKotlinExpression() {
                    return "System.getenv().get(\"$name\")"
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    }
                    .forEach { update ->
                        System.getProperties()[update.key] = update.value
                    }
    
                storedState.removals.forEach { removal ->
                    System.clearProperty(removal.key)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

            normalizedOutput
                .replaceAll(/Received \d+ file system events .*\n/, '')
                .replaceAll(/Spent \d+ ms processing file system events since last build\n/, '')
                .replaceAll(/Spent \d+ ms registering watches for file system events\n/, '')
                .replaceAll(/Virtual file system .*\n/, '')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    @Deprecated
    public class TestFileManager {
    
        public static final String TEMP_DIR_PATH = System.getProperty("java.io.tmpdir");
    
        private List<File> filesToDelete = new ArrayList<>();
    
        private final String baseFilename;
    
        private final String fileSuffix;
    
        private StackTraceElement callerInfo;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        /**
         * Test compile and test runtime.
         */
        TEST("test", false),
    
        /**
         * Test runtime.
         */
        TEST_RUNTIME("test-runtime", false),
    
        /**
         * System scope.
         */
        SYSTEM("system", false);
    
        private static final Map<String, DependencyScope> IDS = Collections.unmodifiableMap(
                Stream.of(DependencyScope.values()).collect(Collectors.toMap(s -> s.id, s -> s)));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

             */
            val instrumentationAgentUsed: Boolean,
            /**
             * The file system paths that will be ignored during file system checks tracking for the cache fingerprint.
             * @see org.gradle.internal.cc.impl.DefaultIgnoredConfigurationInputs
             */
            val ignoredFileSystemCheckInputPaths: String?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

        /**
         * Returns the public ID of the XML
         * @return the public ID, or null if not available
         */
        String getPublicId();
    
        /**
         * Returns the system ID of the XML
         * @return the system ID, or null if not available
         */
        String getSystemId();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

         * The OS Name.
         */
        public static final String OS_NAME = System.getProperty("os.name").toLowerCase(Locale.ENGLISH);
    
        /**
         * The OA architecture.
         */
        public static final String OS_ARCH = System.getProperty("os.arch").toLowerCase(Locale.ENGLISH);
    
        /**
         * The OS version.
         */
        public static final String OS_VERSION = System.getProperty("os.version").toLowerCase(Locale.ENGLISH);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. maven-bom/pom.xml

        <url>https://github.com/apache/maven/tree/${project.scm.tag}/${project.artifactId}</url>
      </scm>
      <issueManagement>
        <system>jira</system>
        <url>https://issues.apache.org/jira/browse/MNG</url>
      </issueManagement>
      <ciManagement>
        <system>Jenkins</system>
        <url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven/</url>
      </ciManagement>
      <distributionManagement>
        <site>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/JavaPluginImplementation.groovy

                        System.out.println("apply = " + value);
    
                        project.getTasks().register("thing", t -> {
                            t.doLast(new Action<Task>() {
                                public void execute(Task t) {
                                    Object value = ${read.javaExpression};
                                    System.out.println("task = " + value);
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top