Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for doRemove (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                    if (first.getPattern().startsWith(second.getPattern())) {
                        toRemove.add(second);
                    } else if (second.getPattern().startsWith(first.getPattern())) {
                        toRemove.add(first);
                        break;
                    }
                }
            }
            if (toRemove.isEmpty()) {
                return patterns;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	for key := range evictUnits {
    		toRemove := len(evictUnits[key]) - MaxContainers
    
    		if toRemove > 0 {
    			evictUnits[key] = cgc.removeOldestN(ctx, evictUnits[key], toRemove)
    		}
    	}
    }
    
    // removeOldestN removes the oldest toRemove containers and returns the resulting slice.
    func (cgc *containerGC) removeOldestN(ctx context.Context, containers []containerGCInfo, toRemove int) []containerGCInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/encoding/Identifier.java

        }
    
        public Identifier safeForGradleDomainObjectName() {
            return without(GRADLE_NAME_FORBIDDEN_CHARACTERS);
        }
    
        public Identifier without(String toRemove) {
            String newSuffix = suffix;
            for (char c : toRemove.toCharArray()) {
                newSuffix = newSuffix.replace(c, '-');
            }
            return new Identifier(newSuffix, displayName);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top