Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for setBoolean (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

            }
        }
    
        @Nullable
        private Boolean getBooleanRejectAll(String alias, TomlTable table) {
            try {
                return table.getBoolean("rejectAll");
            } catch (TomlInvalidTypeException ex) {
                throw throwUnexpectedTypeError("alias", alias, "a boolean", ex);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            this.taskFactory = taskFactory;
            taskInstantiator = new TaskInstantiator(taskIdentityFactory, taskFactory, project);
            this.statistics = statistics;
            this.eagerlyCreateLazyTasks = Boolean.getBoolean(EAGERLY_CREATE_LAZY_TASKS_PROPERTY);
            this.buildOperationRunner = buildOperationRunner;
            this.projectRegistry = projectRegistry;
        }
    
        @Override
        public Task create(Map<String, ?> options) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            'System.getProperty("${ci.toUpperCase()}1", "${value.toUpperCase()}")' | "VALUE"    | "defined" | "defined"
            'Boolean.getBoolean("${ci.toUpperCase()}1")'                           | "false"    | "true"    | "true"
            'Integer.getInteger("${ci.toUpperCase()}1")'                           | "null"     | "123"     | "123"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top