Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for CLEAR (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            javaHome = null;
            environmentVars.clear();
            stdinPipe = null;
            defaultCharacterEncoding = null;
            defaultLocale = null;
            commandLineJvmOpts.clear();
            buildJvmOpts.clear();
            useOnlyRequestedJvmOpts = false;
            expectedGenericDeprecationWarnings = 0;
            expectedDeprecationWarnings.clear();
            stackTraceChecksOn = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

          if (occurrences >= oldCount) {
            values.clear();
          } else {
            Iterator<V> iterator = values.iterator();
            for (int i = 0; i < occurrences; i++) {
              iterator.next();
              iterator.remove();
            }
          }
          return oldCount;
        }
    
        @Override
        public void clear() {
          multimap.clear();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

          if (occurrences >= oldCount) {
            values.clear();
          } else {
            Iterator<V> iterator = values.iterator();
            for (int i = 0; i < occurrences; i++) {
              iterator.next();
              iterator.remove();
            }
          }
          return oldCount;
        }
    
        @Override
        public void clear() {
          multimap.clear();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            "rename(Transformer)"       | "rename(org.gradle.internal.Transformers.noOpTransformer())"
        }
    
        def "renaming 2 different source files to the same name in the dest dir should give a clear error"() {
            given: "a directory with a file"
            def unzippedDir = file("before/files")
            def unzippedFile = unzippedDir.file("sub/c.txt").touch()
    
            and: "another directory with the same file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * either it got collected, or {@link #clear} was called, or it wasn't set in the first place).
         */
        @CheckForNull
        V get();
    
        /** Returns the entry which contains this {@link WeakValueReference}. */
        E getEntry();
    
        /** Unsets the referenced value. Subsequent calls to {@link #get} will return {@code null}. */
        void clear();
    
        /**
    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. src/index/suffixarray/sais2.go

    	}
    
    	freq = freq[:256] // eliminate bounds check for freq[c] below
    	clear(freq)
    	for _, c := range text {
    		freq[c]++
    	}
    	return freq
    }
    
    func freq_32(text []int32, freq, bucket []int32) []int32 {
    	if freq != nil && freq[0] >= 0 {
    		return freq // already computed
    	}
    	if freq == nil {
    		freq = bucket
    	}
    
    	clear(freq)
    	for _, c := range text {
    		freq[c]++
    	}
    	return freq
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * either it got collected, or {@link #clear} was called, or it wasn't set in the first place).
         */
        @CheckForNull
        V get();
    
        /** Returns the entry which contains this {@link WeakValueReference}. */
        E getEntry();
    
        /** Unsets the referenced value. Subsequent calls to {@link #get} will return {@code null}. */
        void clear();
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		// there are at least 32 bytes to clear, so add
    		// that to the remainder to generate the code
    		// to clear those doublewords
    		if ctr == 1 {
    			rem += 32
    		}
    
    		// clear the remainder starting at offset zero
    		offset := int64(0)
    
    		// first clear as many doublewords as possible
    		// then clear remaining sizes as available
    		for rem > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    }
                    previousTraversalExclusions = resolutionFilter;
                    return;
                }
            }
    
            // Clear previous traversal state, if any
            if (previousTraversalExclusions != null) {
                removeOutgoingEdges();
                edgesToRecompute = null;
                potentiallyActivatedConstraints = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Synchronized.java

        public boolean addAll(Collection<? extends E> c) {
          synchronized (mutex) {
            return delegate().addAll(c);
          }
        }
    
        @Override
        public void clear() {
          synchronized (mutex) {
            delegate().clear();
          }
        }
    
        @Override
        public boolean contains(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().contains(o);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
Back to top