Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,020 for Replacer (0.14 sec)

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

                  || countMap.replace(element, existingCounter, newCounter);
            }
          } else {
            if (existingCounter.compareAndSet(oldValue, newCount)) {
              if (newCount == 0) {
                // Just CASed to 0; remove the entry to clean up the map. If the removal fails,
                // another thread has already replaced it with a new counter, which is fine.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            suffixes.add(("/" + projectDirName + "/build/classes/groovy/main").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/build/resources/main").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/build/generated-resources/main").replace('/', File.separatorChar));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_sum_readonly.txt

    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    cmp go.sum go.sum.h2only
    rm go.sum
    
    # If we replace a module, we should see a missing sum error for the replacement.
    cp go.mod go.mod.orig
    go mod edit -replace rsc.io/quote@v1.5.2=rsc.io/quote@v1.5.1
    ! go list -m all
    stderr '^go: rsc.io/quote@v1.5.2 \(replaced by rsc.io/quote@v1.5.1\): missing go.sum entry for go.mod file; to add it:\n\tgo mod download rsc.io/quote$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/runtime/pprof/label.go

    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    // labelMap is the representation of the label set held in the context type.
    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    // order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmPluginServices.java

        /**
         * Replaces the artifacts of an outgoing configuration with a new set of artifacts.
         * This can be used whenever the default artifacts configured are not the ones you want to publish.
         * If this configuration inherits from other configurations, their artifacts will be removed.
         *
         * @param outgoingConfiguration the configuration for which to replace artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fsys/fsys_test.go

    			"file.txt",
    			file{"file.txt", 9, 0600, false},
    			false,
    		},
    		{
    			"new_file_in_overlay",
    			`{"Replace": {"file.txt": "dummy.txt"}}
    -- dummy.txt --
    contents`,
    			"file.txt",
    			file{"file.txt", 9, 0600, false},
    			false,
    		},
    		{
    			"file_replaced_in_overlay",
    			`{"Replace": {"file.txt": "dummy.txt"}}
    -- file.txt --
    -- dummy.txt --
    contents`,
    			"file.txt",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

                  || countMap.replace(element, existingCounter, newCounter);
            }
          } else {
            if (existingCounter.compareAndSet(oldValue, newCount)) {
              if (newCount == 0) {
                // Just CASed to 0; remove the entry to clean up the map. If the removal fails,
                // another thread has already replaced it with a new counter, which is fine.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/runtime/debug/mod.go

    }
    
    // A Module describes a single module included in a build.
    type Module struct {
    	Path    string  // module path
    	Version string  // module version
    	Sum     string  // checksum
    	Replace *Module // replaced by this module
    }
    
    // A BuildSetting is a key-value pair describing one setting that influenced a build.
    //
    // Defined keys include:
    //
    //   - -buildmode: the buildmode flag used (typically "exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

     * limitations under the License.
     */
    package org.gradle.language.nativeplatform.internal.incremental.sourceparser;
    
    import java.io.IOException;
    import java.io.Reader;
    
    /**
     * Replaces c-style comments with a single space, and removes line-continuation characters.
     * This code is largely adopted from org.apache.tools.ant.filters.StripJavaComments.
     */
    public class PreprocessingReader {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/build.go

    		info.Replace.GoVersion = v.(string)
    	}
    	if r.Version == "" {
    		if filepath.IsAbs(r.Path) {
    			info.Replace.Dir = r.Path
    		} else {
    			info.Replace.Dir = filepath.Join(replaceRelativeTo(), r.Path)
    		}
    		info.Replace.GoMod = filepath.Join(info.Replace.Dir, "go.mod")
    	}
    	if cfg.BuildMod != "vendor" {
    		completeFromModCache(info.Replace)
    		info.Dir = info.Replace.Dir
    		info.GoMod = info.Replace.GoMod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top