Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setBoolean (0.27 sec)

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

            return new SystemPropertyRead() {
                @Override
                String getJavaExpression() {
                    return "Boolean.getBoolean(\"$name\")"
                }
    
                @Override
                String getGroovyExpression() {
                    return "Boolean.getBoolean(\"$name\")"
                }
    
                @Override
                String getKotlinExpression() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultGarbageCollectionMonitor.java

            this.heapEvents = new DefaultSlidingWindow<>(EVENT_WINDOW);
            this.nonHeapEvents = new DefaultSlidingWindow<>(EVENT_WINDOW);
            if (gcStrategy != GarbageCollectorMonitoringStrategy.UNKNOWN && !Boolean.getBoolean(DISABLE_POLLING_SYSTEM_PROPERTY)) {
                pollForValues();
            }
        }
    
        private void pollForValues() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClient.java

        private final WorkerProcess workerProcess;
        private final LogLevel logLevel;
        private final ActionExecutionSpecFactory actionExecutionSpecFactory;
        private int uses;
        private boolean cannotBeExpired = Boolean.getBoolean(DISABLE_EXPIRATION_PROPERTY_KEY);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

                .copy()
                .apply {
                    put(JVMConfigurationKeys.DO_NOT_CLEAR_BINDING_CONTEXT, true)
                }
    
            val disableInline = effectiveConfiguration.getBoolean(CommonConfigurationKeys.DISABLE_INLINE)
    
            // The binding context needs to be built from all files with reachable inline functions, as such files may contain classes whose
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

            return new DaemonExpirationResult(expirationStatus, reason);
        }
    
        private boolean shouldPrintLog(DaemonExpirationStatus newStatus) {
            if (Boolean.getBoolean(DISABLE_PERFORMANCE_LOGGING)) {
                return false;
            }
    
            statusLock.lock();
            try {
                DaemonExpirationStatus previous = mostSevereStatus;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
Back to top