Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for setBoolean (0.35 sec)

  1. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            String response = checkMethodBase(requestBody).put("/api/admin/webconfig/setting").asString();
            JsonPath jsonPath = JsonPath.from(response);
            assertTrue(jsonPath.getBoolean("response.created"));
            assertEquals(0, jsonPath.getInt("response.status"));
            return jsonPath.getString("response.id");
        }
    
        protected static List<String> getWebConfigIds(final String namePrefix) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            return Long.getLong(key, defaultValue);
        }
    
        // Called by generated code.
        public static boolean getBoolean(String key, String consumer) {
            systemPropertyQueried(key, consumer);
            return Boolean.getBoolean(key);
        }
    
        // Called by generated code.
        public static String getenv(String key, String consumer) {
            String value = System.getenv(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/LogToClient.java

            this.loggingOutput = loggingOutput;
            this.diagnostics = diagnostics;
        }
    
        @Override
        protected void doBuild(final DaemonCommandExecution execution, Build build) {
            if (Boolean.getBoolean(DISABLE_OUTPUT)) {
                execution.proceed();
                return;
            }
    
            dispatcher = new AsynchronousLogDispatcher(execution.getConnection(), build.getParameters().getLogLevel());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

        @Override
        public GradleEnterprisePluginCheckInResult checkIn(GradleEnterprisePluginMetadata pluginMetadata, GradleEnterprisePluginServiceFactory serviceFactory) {
            if (Boolean.getBoolean(UNSUPPORTED_TOGGLE)) {
                return checkInUnsupportedResult(UNSUPPORTED_TOGGLE_MESSAGE);
            }
    
            String pluginVersion = pluginMetadata.getVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

            this.manager = manager;
            this.buildType = buildType;
        }
    
        @Nullable
        private String unsupportedReason(VersionNumber pluginVersion) {
            if (Boolean.getBoolean(UNSUPPORTED_TOGGLE)) {
                return UNSUPPORTED_TOGGLE_MESSAGE;
            } else if (buildModelParameters.isConfigurationCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

                        effectiveExportClassLoader = parent.getExportClassLoader();
                    }
                } else { // creating before locking, have to create the most flexible setup
                    if (Boolean.getBoolean(STRICT_MODE_PROPERTY)) {
                        throw new IllegalStateException("Attempt to define scope class loader before scope is locked, scope identifier is " + id);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            Response response = checkMethodBase(labelBody).put("/api/admin/labeltype/setting");
            JsonPath jsonPath = JsonPath.from(response.asString());
            assertTrue(jsonPath.getBoolean("response.created"));
            assertEquals(0, jsonPath.getInt("response.status"));
            return jsonPath.get("response.id");
        }
    
        private static String createCrawlLabel() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

        def "can use ResolvedComponentResult result as task input and '#changeDesc' invalidates the cache"() {
            given:
            resolvedComponentResultSetup()
            buildFile << """
                if (Boolean.getBoolean("externalDependency")) {
                    dependencies { implementation 'org.external:external-tool:1.0' }
                }
            """
    
            when: "Task without changes is executed & not skipped"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top