Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,621 for Booleans (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt

        delegate!!.startHandshake()
      }
    
      override fun setUseClientMode(mode: Boolean) {
        delegate!!.useClientMode = mode
      }
    
      override fun getUseClientMode(): Boolean {
        return delegate!!.useClientMode
      }
    
      override fun setNeedClientAuth(need: Boolean) {
        delegate!!.needClientAuth = need
      }
    
      override fun setWantClientAuth(want: Boolean) {
        delegate!!.wantClientAuth = want
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/SetPropertySetView.java

        }
    
        @Override
        public boolean add(E e) {
            boolean added = !contains(e);
            delegate.add(e);
            return added;
        }
    
        @Override
        public boolean addAll(Collection<? extends E> c) {
            boolean added = false;
            for (E e : c) {
                added |= add(e);
            }
            return added;
        }
    
        @Override
        public boolean contains(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationCategory.java

        private final boolean grouped;
        private final boolean topLevelWorkItem;
        private final boolean showHeader;
    
        BuildOperationCategory(boolean grouped, boolean topLevelWorkItem, boolean showHeader) {
            this.grouped = grouped;
            this.topLevelWorkItem = topLevelWorkItem;
            this.showHeader = showHeader;
        }
    
        public boolean isGrouped() {
            return grouped;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/src/taglet/java/LocaleAwareTaglet.java

        public boolean inField() {
            return false;
        }
    
        public boolean inConstructor() {
            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
            return true;
        }
    
        public boolean inPackage() {
            return false;
        }
    
        public boolean inType() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinEmptyPackageProvider.kt

        override fun doesKotlinOnlyPackageExist(packageFqName: FqName): Boolean = false
    
        override fun doesPlatformSpecificPackageExist(packageFqName: FqName, platform: TargetPlatform): Boolean = false
    
        override fun getSubPackageFqNames(packageFqName: FqName, platform: TargetPlatform, nameFilter: (Name) -> Boolean): Set<Name> =
            emptySet()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/versioning/VersionDetails.java

         * and should not be asked to provide it.
         */
        public boolean maySupportModel(Class<?> modelType) {
            return false;
        }
    
        public boolean supportsEnvironmentVariablesCustomization() {
            return false;
        }
    
        public boolean supportsRunTasksBeforeExecutingAction() {
            return false;
        }
    
        public boolean supportsParameterizedToolingModels() {
            return false;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top