Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for Booleans (0.34 sec)

  1. guava/src/com/google/common/collect/Iterators.java

       * @return {@code true} if any element was removed from {@code iterator}
       */
      @CanIgnoreReturnValue
      public static boolean removeAll(Iterator<?> removeFrom, Collection<?> elementsToRemove) {
        checkNotNull(elementsToRemove);
        boolean result = false;
        while (removeFrom.hasNext()) {
          if (elementsToRemove.contains(removeFrom.next())) {
            removeFrom.remove();
            result = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    final String configIndex = values[0];
                    final String configType = values[1];
    
                    final boolean isFessIndex = "fess".equals(configIndex);
                    final String indexName;
                    if (isFessIndex) {
                        final boolean exists = existsIndex(fessConfig.getIndexDocumentUpdateIndex());
                        if (!exists) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
        }
    
        private TransferListener determineTransferListener(
                final boolean quiet,
                final boolean verbose,
                final CommandLine commandLine,
                final MavenExecutionRequest request) {
            boolean runningOnCI = isRunningOnCI(request.getSystemProperties());
            boolean quietCI = runningOnCI && !commandLine.hasOption(FORCE_INTERACTIVE);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeToken.java

        return new Bounds(bounds, true);
      }
    
      private static class Bounds {
        private final Type[] bounds;
        private final boolean target;
    
        Bounds(Type[] bounds, boolean target) {
          this.bounds = bounds;
          this.target = target;
        }
    
        boolean isSubtypeOf(Type supertype) {
          for (Type bound : bounds) {
            if (of(bound).isSubtypeOf(supertype) == target) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

          return MapMakerInternalMap.this.size();
        }
    
        @Override
        public boolean isEmpty() {
          return MapMakerInternalMap.this.isEmpty();
        }
    
        @Override
        public boolean contains(Object o) {
          return MapMakerInternalMap.this.containsKey(o);
        }
    
        @Override
        public boolean remove(Object o) {
          return MapMakerInternalMap.this.remove(o) != null;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    for (Class<? extends Annotation> annotation : lifecycleHandler.getAnnotations()) {
                        boolean implementationHasAnnotation = inspector.hasAnnotation(instance.getClass(), annotation);
                        boolean declaredWithAnnotation = inspector.hasAnnotation(serviceType, annotation);
                        if (implementationHasAnnotation && !declaredWithAnnotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

        return new Bounds(bounds, true);
      }
    
      private static class Bounds {
        private final Type[] bounds;
        private final boolean target;
    
        Bounds(Type[] bounds, boolean target) {
          this.bounds = bounds;
          this.target = target;
        }
    
        boolean isSubtypeOf(Type supertype) {
          for (Type bound : bounds) {
            if (of(bound).isSubtypeOf(supertype) == target) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                public Object call() throws Exception {
                    return Boolean.TRUE;
                }
            });
    
            assertThat(bean.getBigB(), equalTo(Boolean.TRUE));
            bean.setBigB(Boolean.FALSE);
            assertThat(bean.getBigB(), equalTo(Boolean.FALSE));
    
            conventionAware.getConventionMapping().map("mixedB", new Callable<Object>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          return MapMakerInternalMap.this.size();
        }
    
        @Override
        public boolean isEmpty() {
          return MapMakerInternalMap.this.isEmpty();
        }
    
        @Override
        public boolean contains(Object o) {
          return MapMakerInternalMap.this.containsKey(o);
        }
    
        @Override
        public boolean remove(Object o) {
          return MapMakerInternalMap.this.remove(o) != null;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

        public ProjectBuildingResult build(Artifact artifact, boolean allowStubModel, ProjectBuildingRequest request)
                throws ProjectBuildingException {
            try (BuildSession bs = new BuildSession(request, false)) {
                return bs.build(artifact, allowStubModel);
            }
        }
    
        @Override
        public List<ProjectBuildingResult> build(List<File> pomFiles, boolean recursive, ProjectBuildingRequest request)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top