Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 7,769 for Booleans (0.44 sec)

  1. 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)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsGraphRenderer.java

        private static class ShowDependentPredicate implements Predicate<RenderableDependency> {
            private final boolean showNonBuildable;
            private final boolean showTestSuites;
    
            private boolean hiddenNonBuildable;
            private boolean hiddenTestSuite;
    
            private ShowDependentPredicate(boolean showNonBuildable, boolean showTestSuites) {
                this.showNonBuildable = showNonBuildable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

            }
    
        override val isOverride: Boolean get() = withValidityAssertion { firSymbol.isOverride }
        override val isConst: Boolean get() = withValidityAssertion { firSymbol.isConst }
        override val isStatic: Boolean get() = withValidityAssertion { firSymbol.isStatic }
        override val isActual: Boolean get() = withValidityAssertion { firSymbol.isActual }
        override val isExpect: Boolean get() = withValidityAssertion { firSymbol.isExpect }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            private Boolean explain;
    
            private Float minScore;
    
            private String preference;
    
            private String routing;
    
            private String searchType;
    
            private long timeoutInMillis = -1;
    
            private Boolean version;
    
            private Boolean seqNoAndPrimaryTerm = Boolean.TRUE;
    
            private int terminateAfter = 0;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/ArchitectureInternal.java

        enum InstructionSet { X86, ITANIUM, PPC, SPARC, ARM }
    
        @Internal
        boolean isI386();
    
        @Internal
        boolean isAmd64();
    
        @Internal
        boolean isIa64();
    
        @Internal
        default boolean isArm() {
            return isArm32() || isArm64();
        }
    
        @Internal
        boolean isArm32();
    
        @Internal
        boolean isArm64();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/compile/CodeFragmentCapturedValue.kt

        public class Local(
            name: Name,
            isMutated: Boolean,
            isCrossingInlineBounds: Boolean,
        ) : CodeFragmentCapturedValue(name.asString(), isMutated, isCrossingInlineBounds)
    
        /** Represents a delegated local variable (`val local by...`). */
        public class LocalDelegate(
            name: Name,
            isMutated: Boolean,
            isCrossingInlineBounds: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java

        private boolean determineNameMatch(String expectedName, String actualName) {
            String test = expectedName.toLowerCase(Locale.ENGLISH);
            boolean reverse = false;
    
            if (test.startsWith("!")) {
                reverse = true;
                test = test.substring(1);
            }
    
            boolean result = actualName.equals(test);
    
            return reverse != result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/OperatingSystemProfileActivator.java

        private boolean determineNameMatch(String expectedName, String actualName) {
            String test = expectedName;
            boolean reverse = false;
    
            if (test.startsWith("!")) {
                reverse = true;
                test = test.substring(1);
            }
    
            boolean result = actualName.equals(test);
    
            return reverse != result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

        public boolean inField() {
            return false;
        }
    
        public boolean inConstructor() {
            return false;
        }
    
        public boolean inMethod() {
            return false;
        }
    
        public boolean inOverview() {
            return false;
        }
    
        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
    - 998 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/ReportState.java

    class ReportState implements VerificationHighLevelErrors {
        private final Set<String> affectedFiles = new TreeSet<>();
        private boolean maybeCompromised;
        private boolean hasMissing;
        private boolean failedSignatures;
        private boolean hasUntrustedKeys;
        private boolean keyServersDisabled;
    
        public void maybeCompromised() {
            maybeCompromised = true;
        }
    
        public void hasMissing() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top