Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 7,769 for Booleans (0.12 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/duplicateLibrary.ir.txt

                          VALUE_PARAMETER name:it index:0 type:kotlin.String
                          BLOCK_BODY
                            RETURN type=kotlin.Nothing from='local final fun <anonymous> (it: kotlin.String): kotlin.Boolean declared in <root>.CodeFragment.run'
                              CALL 'public final fun isEmpty (): kotlin.Boolean [inline] declared in kotlin.text' type=kotlin.Boolean origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

    public class MinimalGroovyCompileOptions implements Serializable {
        private boolean failOnError;
        private boolean verbose;
        private boolean listFiles;
        private String encoding;
        private boolean fork = true;
        private boolean keepStubs;
        private List<String> fileExtensions;
        private MinimalGroovyCompilerDaemonForkOptions forkOptions;
        private Map<String, Boolean> optimizationOptions;
        private File stubDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

    import java.util.Objects;
    import java.util.Set;
    
    @NonNullApi
    public class DependencyVerificationConfiguration {
        private final boolean verifyMetadata;
        private final boolean verifySignatures;
        private final List<TrustedArtifact> trustedArtifacts;
        private final boolean useKeyServers;
        private final List<URI> keyServers;
        private final Set<IgnoredKey> ignoredKeys;
        private final List<TrustedKey> trustedKeys;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        private String extensionDirs;
        private MinimalJavaCompilerDaemonForkOptions forkOptions;
        private DebugOptions debugOptions;
        private boolean debug;
        private boolean deprecation;
        private boolean failOnError;
        private boolean listFiles;
        private boolean verbose;
        private boolean warnings;
        private File annotationProcessorGeneratedSourcesDirectory;
        private File headerOutputDirectory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicy.java

        private MutationValidator mutationValidator = MutationValidator.IGNORE;
        private long keepDynamicVersionsFor = MILLISECONDS_IN_DAY;
        private long keepChangingModulesFor = MILLISECONDS_IN_DAY;
        private boolean offline = false;
        private boolean refresh = false;
    
        public DefaultCachePolicy() {
            this.dependencyCacheRules = new ArrayList<>();
            this.moduleCacheRules = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java

        public boolean canDetermineActivation(Profile profile) {
            Activation activation = profile.getActivation();
            return activation != null && activation.getOs() != null;
        }
    
        public boolean isActive(Profile profile) {
            Activation activation = profile.getActivation();
            ActivationOS os = activation.getOs();
    
            boolean result = ensureAtLeastOneNonNull(os);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationRole.java

        private final String name;
        private final boolean consumable;
        private final boolean resolvable;
        private final boolean declarable;
        private final boolean consumptionDeprecated;
        private final boolean resolutionDeprecated;
        private final boolean declarationDeprecated;
    
        public DefaultConfigurationRole(
            String name,
            boolean consumable,
            boolean resolvable,
            boolean declarable,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 20:29:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public abstract fun isFunctionalInterfaceType(type: KaType): Boolean
        public abstract fun getFunctionClassKind(type: KaType): FunctionTypeKind?
        public abstract fun canBeNull(type: KaType): Boolean
        public abstract fun isDenotable(type: KaType): Boolean
        public abstract fun isArrayOrPrimitiveArray(type: KaType): Boolean
        public abstract fun isNestedArray(type: KaType): Boolean
        public abstract fun fullyExpandedType(type: KaType): KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencyVisitor.java

        /**
         * If true, external dependencies will be skipped.
         */
        boolean isOffline();
    
        /**
         * Should sources for external dependencies be downloaded?
         */
        boolean downloadSources();
    
        /**
         * Should javadoc for external dependencies be downloaded?
         */
        boolean downloadJavaDoc();
    
        /**
         * The dependency points to an artifact built by another project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalConfigurationMetadata.java

        private final ComponentIdentifier componentId;
        private final boolean transitive;
        private final boolean visible;
        private final ImmutableSet<String> hierarchy;
        private final ImmutableAttributes attributes;
        private final boolean canBeConsumed;
        private final boolean deprecatedForConsumption;
        private final boolean canBeResolved;
        private final ImmutableCapabilities capabilities;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top