Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,365 for replaced (0.34 sec)

  1. 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. src/cmd/go/testdata/mod/README

    or shorten files. It is also acceptable to write module archives by hand: 
    they need not be backed by some public git repo.
    
    Each module archive is named path_vers.txt, where slashes in path
    have been replaced with underscores. The archive must contain
    two files ".info" and ".mod", to be served as the info and mod files
    in the proxy protocol (see https://research.swtch.com/vgo-module).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

            when {
              startsWith('"'.code.toByte()) -> readQuotedString()
              else -> readToken()
            } ?: return // Expected a value.
    
          val replaced = parameters.put(peek, parameterValue)
          peek = null
          if (replaced != null) return // Unexpected duplicate parameter.
          if (!skipCommasAndWhitespace() && !exhausted()) return // Expected ',' or EOF.
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/artifact-handlers.apt

      (classifier, extension, language) and how to manage it as dependency (add to classpath, include dependencies).
    
      They are replaced in Maven 4 with Maven 4 API Core's {{{../api/maven-api-core/apidocs/org/apache/maven/api/Type.html}Dependency Types}},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/RemovalListener.java

    /**
     * An object that can receive a notification when an entry is removed from a cache. The removal
     * resulting in notification could have occurred to an entry being manually removed or replaced, or
     * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection.
     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. gradle/dependency-management/capabilities.json

                "org.codehaus.groovy:groovy",
                "org.codehaus.groovy:groovy-all"
            ],
            "selected": "org.codehaus.groovy:groovy"
        },
    
        // forced upgrade: the following modules will automatically be replaced with the selected module
        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/robustio/robustio.go

    func Rename(oldpath, newpath string) error {
    	return rename(oldpath, newpath)
    }
    
    // ReadFile is like os.ReadFile, but on Windows retries errors that may
    // occur if the file is concurrently replaced.
    //
    // (See golang.org/issue/31247 and golang.org/issue/32188.)
    func ReadFile(filename string) ([]byte, error) {
    	return readFile(filename)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildOutcomeReportingBuildActionRunner.java

            BuildLogger buildLogger = buildLoggerFactory.create(Logging.getLogger(BuildLogger.class), startParameter, buildStartedTime, buildRequestMetaData);
            // Register as a 'logger' to support this being replaced by build logic.
            buildController.beforeBuild(gradle -> gradle.useLogger(buildLogger));
    
            Result result = delegate.run(action, buildController);
    
            buildLogger.logResult(result.getBuildFailure());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
         * The child inherits the loggers of its parent, though these can be replaced.
         *
         * @return The child
         */
        ScopedListenerManager createChild(Class<? extends Scope> scope);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_invalid_version.txt

    stderr 'golang.org/x/text@v0.1.1-0.20190915032832-14c0d48ead0c: invalid pseudo-version: does not match version-control timestamp \(expected 20170915032832\)'
    
    # A 'replace' directive in the main module can replace an invalid timestamp
    # with a valid one.
    go mod edit -replace golang.org/x/text@v0.1.1-0.20190915032832-14c0d48ead0c=golang.org/x/text@14c0d48ead0c
    cd outside
    ! go list -m golang.org/x/text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top