Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 7,769 for Booleans (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

                public Handling getDescendantHandling() {
                    return DO_NOT_FOLLOW_SYMLINKS;
                }
            };
    
            private final boolean shouldKeepEntry;
            private final boolean shouldFollowLinkedDirectory;
    
            Handling(boolean shouldKeepEntry, boolean shouldFollowLinkedDirectory) {
                this.shouldKeepEntry = shouldKeepEntry;
                this.shouldFollowLinkedDirectory = shouldFollowLinkedDirectory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K 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. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

        static final class IsLongLivingProcess implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return GradleContextualExecuter.isLongLivingProcess()
            }
        }
    
        static final class IsEmbeddedExecutor implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return GradleContextualExecuter.isEmbedded()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TaskBooleanOptionIntegrationTest.groovy

                    private boolean myBooleanPrimitiveOption;
                    private Boolean myBooleanObjectOption;
                    private Property<Boolean> myBooleanPropertyOption = getProject().getObjects().property(Boolean.class).convention((Boolean)null);
    
                    @Option(description = "Configures boolean option 'myFieldOption'.")
                    private Boolean myFieldOption;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean smb2OnlyNegotiation = false;
        protected boolean port139FailoverEnabled = false;
        protected boolean useNTSmbs = true;
        protected boolean useLargeReadWrite = true;
        protected int lanmanCompatibility = 3;
        protected boolean allowNTLMFallback = true;
        protected boolean useRawNTLM = false;
        protected boolean disableSpnegoIntegrity = false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top