Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for systemPropertyName (0.21 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            }
            executer.beforeExecute {
                inDirectory(consumer)
            }
            file("consumer/gradle.properties") << "systemProp.${VirtualFileSystemServices.MAX_HIERARCHIES_TO_WATCH_PROPERTY.systemPropertyName}=1"
    
            when:
            withWatchFs().run "assemble", "--info"
            then:
            executedAndNotSkipped(":includedBuild:jar")
            assertWatchedHierarchies([includedBuild])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                if (projectDependencies.add(dependency)) {
                    projectScopedWriter.write(dependency)
                }
            }
        }
    
        override fun flagRead(flag: FeatureFlag) {
            flag.systemPropertyName?.let { propertyName ->
                sink().systemPropertyRead(propertyName, System.getProperty(propertyName))
            }
        }
    
        fun append(fingerprint: ProjectSpecificFingerprint) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top