Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for doRemove (0.79 sec)

  1. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

            return result;
          }
    
          @Override
          public void remove() {
            checkState(toRemove != null, "no calls to next() since the last call to remove()");
            LinkedHashMultimap.this.remove(toRemove.getKey(), toRemove.getValue());
            toRemove = null;
          }
        };
      }
    
      @Override
      Iterator<V> valueIterator() {
        return Maps.valueIterator(entryIterator());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/LinkedHashMultimap.java

            return result;
          }
    
          @Override
          public void remove() {
            checkState(toRemove != null, "no calls to next() since the last call to remove()");
            LinkedHashMultimap.this.remove(toRemove.getKey(), toRemove.getValue());
            toRemove = null;
          }
        };
      }
    
      @Override
      Spliterator<Entry<K, V>> entrySpliterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

            changedWatchDirectories.forEach((absolutePath, value) -> {
                int count = value;
                if (count < 0) {
                    int toRemove = -count;
                    int contained = watchedDirectories.remove(absolutePath, toRemove);
                    if (contained <= toRemove) {
                        directoriesToStopWatching.add(new File(absolutePath));
                    }
                } else if (count > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        }
    
        @Execute
        public HtmlResponse prev(final SearchForm form) {
            return doMove(form, -1);
        }
    
        @Execute
        public HtmlResponse next(final SearchForm form) {
            return doMove(form, 1);
        }
    
        @Execute
        public HtmlResponse move(final SearchForm form) {
            return doMove(form, 0);
        }
    
        protected HtmlResponse doSearch(final SearchForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/HashBiMap.java

          next = entry.nextInKeyInsertionOrder;
          toRemove = entry;
          remaining--;
          return output(entry);
        }
    
        @Override
        public void remove() {
          if (modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
          if (toRemove == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/OutputCleaningCompilerTest.groovy

        }
    
        def compile(TestFile... sourceToCompile) {
            List<TestFile> toCompile = Arrays.asList(sourceToCompile)
            List<TestFile> toRemove = sourceFiles - toCompile
            2 * spec.getSourceFiles() >> toCompile
            1 * spec.getRemovedSourceFiles() >> toRemove
            cleanCompiler.execute(spec)
        }
    
        def createObjDummy(File sourceFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                    configurations {
                        toRemove
                    }
                    eclipse {
                        classpath {
                            minusConfigurations += [ configurations.toRemove ]
                        }
                    }
                    dependencies {
                        implementation project(":child1");
                        toRemove project(":child1");
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            hierarchies.removeIf(hierarchy -> !isWatchedHierarchy.test(hierarchy));
            SnapshotHierarchy result = root;
            int toRemove = hierarchies.size() - maximumNumberOfWatchedHierarchies;
            if (toRemove > 0) {
                LOGGER.info(
                    "Watching too many directories in the file system (watching {}, limit {}), dropping some state from the virtual file system",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/config/schema/collection/schemas.go

    	}
    
    	return b.Build()
    }
    
    // Remove creates a copy of this Schemas with the given schemas removed.
    func (s Schemas) Remove(toRemove ...resource.Schema) Schemas {
    	b := NewSchemasBuilder()
    
    	for _, s := range s.byAddOrder {
    		shouldAdd := true
    		for _, r := range toRemove {
    			if r.Equal(s) {
    				shouldAdd = false
    				break
    			}
    		}
    		if shouldAdd {
    			b.MustAdd(s)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 08:10:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/clean/clean.go

    			allRemove = append(allRemove, base, base+".exe")
    		}
    	}
    
    	if cfg.BuildN || cfg.BuildX {
    		sh.ShowCmd(p.Dir, "rm -f %s", strings.Join(allRemove, " "))
    	}
    
    	toRemove := map[string]bool{}
    	for _, name := range allRemove {
    		toRemove[name] = true
    	}
    	for _, dir := range dirs {
    		name := dir.Name()
    		if dir.IsDir() {
    			// TODO: Remove once Makefiles are forgotten.
    			if cleanDir[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top