Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,074 for boolean (0.32 sec)

  1. android/guava/src/com/google/common/primitives/Booleans.java

       *
       * @param arrays zero or more {@code boolean} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static boolean[] concat(boolean[]... arrays) {
        int length = 0;
        for (boolean[] array : arrays) {
          length += array.length;
        }
        boolean[] result = new boolean[length];
        int pos = 0;
        for (boolean[] array : arrays) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 2, new boolean[] {true});
    
        testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});
        testRotate(new boolean[] {true, false}, -1, new boolean[] {false, true});
        testRotate(new boolean[] {true, false}, -2, new boolean[] {true, false});
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 15:43:29 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/BooleansTest.java

        testRotate(new boolean[] {true}, 1, new boolean[] {true});
        testRotate(new boolean[] {true}, 2, new boolean[] {true});
    
        testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true});
        testRotate(new boolean[] {true, false}, -1, new boolean[] {false, true});
        testRotate(new boolean[] {true, false}, -2, new boolean[] {true, false});
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 15:43:29 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/convert/BooleanConversionUtilTest.java

            assertEquals("1", Boolean.TRUE, BooleanConversionUtil.toBoolean(Integer.valueOf(1)));
            assertEquals("2", Boolean.FALSE, BooleanConversionUtil.toBoolean(Integer.valueOf(0)));
            assertEquals("3", Boolean.FALSE, BooleanConversionUtil.toBoolean("0"));
            assertEquals("4", Boolean.TRUE, BooleanConversionUtil.toBoolean("1"));
            assertEquals("5", Boolean.TRUE, BooleanConversionUtil.toBoolean("2"));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      public @Nullable E pollLast() {
        return delegate.pollLast();
      }
    
      @Override
      public boolean remove(Object object) {
        return delegate.remove(checkValid(object));
      }
    
      @Override
      public boolean removeAll(Collection<?> c) {
        return delegate.removeAll(c);
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
        return delegate.retainAll(c);
      }
    
      @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        private volatile String version;
    
        private VersionRange versionRange;
    
        private volatile boolean resolved;
    
        private boolean release;
    
        private List<ArtifactVersion> availableVersions;
    
        private Map<Object, ArtifactMetadata> metadataMap;
    
        private boolean optional;
    
        public DefaultArtifact(
                String groupId,
                String artifactId,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbolForOverride.kt

            get() = withValidityAssertion { descriptor.name }
    
        override val isFromPrimaryConstructor: Boolean
            get() = withValidityAssertion { descriptor.containingDeclaration is ConstructorDescriptor }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isStatic: Boolean
            get() = withValidityAssertion { DescriptorUtils.isStaticDeclaration(descriptor) }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    }
    
    fun BaseGradleBuildType.gradleRunnerStep(
        model: CIBuildModel,
        gradleTasks: String,
        os: Os = Os.LINUX,
        extraParameters: String = "",
        daemon: Boolean = true,
        maxParallelForks: String = "%maxParallelForks%",
        isRetry: Boolean = false,
    ) {
        val stepName: String = if (isRetry) "GRADLE_RETRY_RUNNER" else "GRADLE_RUNNER"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

            this.allPageCount = allPageCount;
        }
    
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        public void setExistPrePage(final boolean existPrePage) {
            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiNamedClassOrObjectSymbol.kt

        override val isFun: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.FUN_KEYWORD) }
    
        override val isExternal: Boolean
            get() = withValidityAssertion { psi.hasModifier(KtTokens.EXTERNAL_KEYWORD) }
    
        override val isActual: Boolean
            get() = withValidityAssertion { descriptor?.isActual ?: psi.hasActualModifier() }
    
        override val isExpect: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 6.3K bytes
    - Viewed (0)
Back to top