Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,621 for Booleans (0.2 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

    
    private
    typealias PredicateVisitor = GenericVisitorAdapter<Boolean, Unit?>
    
    
    internal
    object JavaSourceQueries {
    
        fun isOverrideMethod(method: JApiMethod): JavaSourceQuery<Boolean> =
            JavaSourceQuery(
                false,
                object : PredicateVisitor() {
                    override fun visit(declaration: MethodDeclaration, arg: Unit?): Boolean? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableSet.java

      public NavigableSet<E> subSet(
          @ParametricNullness E fromElement,
          boolean fromInclusive,
          @ParametricNullness E toElement,
          boolean toInclusive) {
        return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive);
      }
    
      /**
       * A sensible definition of {@link #subSet(Object, boolean, Object, boolean)} in terms of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java

                    return Boolean.FALSE;
                } else {
                    return Boolean.TRUE;
                }
            } else {
                return Boolean.TRUE;
            }
        }
    
        /**
         * {@literal boolean}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@literal boolean}
         */
        public static boolean toPrimitiveBoolean(final Object o) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

        }
    
        public boolean isModule(boolean inferModulePath, FileCollection files) {
            if (!inferModulePath) {
                return false;
            }
            for(File file : files.getFiles()) {
                if (isModule(file)) {
                    return true;
                }
            }
            return false;
        }
    
        public boolean isModule(boolean inferModulePath, File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

    import static com.google.common.base.Strings.isNullOrEmpty;
    
    public class JavaDebugOptionsInternal {
        private boolean enabled = false;
        private String host = "";
        private int port = 5005;
        private boolean server = true;
        private boolean suspend = true;
    
        public JavaDebugOptionsInternal(boolean enabled) {
            this.enabled = enabled;
        }
    
        public JavaDebugOptionsInternal() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        boolean isLoadsFromConfigurationCacheAfterStore();
    
        /**
         * Returns true if this version runs tests when building `buildSrc`
         */
        boolean isRunsBuildSrcTests();
    
        /**
         * Returns true if it as a Gradle version that supports Kotlin scripts
         */
        boolean isSupportsKotlinScript();
    
        /**
         * Returns true if this version has a method for tests display names
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

            return method.getParameterCount() == 1;
        }
    
        private static boolean isGetGetterName(String methodName) {
            return methodName.startsWith("get") && methodName.length() > 3;
        }
    
        private static boolean isIsGetterName(String methodName) {
            return methodName.startsWith("is") && methodName.length() > 2;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top