Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for retriable (0.17 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

     * A factory for creating {@link AttributeBasedFileVisitDetails} instances.
     * Fallbacks to UnauthorizedFileVisitDetails in cases when attributes are not available.
     * Fallbacks to DefaultFileVisitDetails in cases when attributes are not reliable.
     */
    public class AttributeBasedFileVisitDetailsFactory {
    
        /**
         * Returns FileVisitDetails for the given relativePath.
         *
         * @param path Path of the file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. docs/en/data/sponsors.yml

      - url: https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023
        title: "Build, run and scale your apps on a modern, reliable, and secure PaaS."
        img: https://fastapi.tiangolo.com/img/sponsors/platform-sh.png
      - url: https://www.porter.run
        title: Deploy FastAPI on AWS with a few clicks
        img: https://fastapi.tiangolo.com/img/sponsors/porter.png
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. docs/en/overrides/main.html

            <img class="sponsor-image" src="/img/sponsors/cryptapi-banner.svg" />
          </a>
        </div>
        <div class="item">
          <a title="Build, run and scale your apps on a modern, reliable, and secure PaaS." style="display: block; position: relative;" href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

            container.attributeProvider(testAttr, testProvider)
    
            when: "adding a set value testAttr"
            container.attribute(testAttr, "set value")
    
            then: "the set value should be retrievable"
            "set value" == container.getAttribute(testAttr)
        }
    
        def "adding lazy attribute should override replace existing attribute"() {
            given: "a container with testAttr set to a fixed value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. cni/pkg/repair/netns.go

    	// We want the pause container, as the istio-validation one may exit before we are done.
    	// We do this by detecting the longest running process. We could look at `cmdline`, but is likely more reliable to weird platforms.
    	for _, p := range procs {
    		match := false
    		ns := getPidNamespace(p.PID)
    
    		err := netns.WithNetNSPath(ns, func(_ netns.NetNS) error {
    			var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. cluster/gce/gci/master-helper.sh

          fi
          return 0
        else
          echo "${result}" >&2
          if [[ ! "${result}" =~ "try again later" ]]; then
            echo "Failed to create master instance due to non-retryable error" >&2
            return 1
          fi
          sleep $sleep_sec
        fi
      done
    
      echo "Failed to create master instance despite ${retries} attempts" >&2
      return 1
    }
    
    function get-metadata() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. src/os/removeall_at.go

    			if numErr != reqSize {
    				break
    			}
    		}
    
    		// Removing files from the directory may have caused
    		// the OS to reshuffle it. Simply calling Readdirnames
    		// again may skip some entries. The only reliable way
    		// to avoid this is to close and re-open the
    		// directory. See issue 20841.
    		file.Close()
    
    		// Finish when the end of the directory is reached
    		if respSize < reqSize {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

       *    has since been closed by the server.
       *  * A client timeout (HTTP 408).
       *  * A authorization challenge (HTTP 401 and 407) that is satisfied by the [Authenticator].
       *  * A retryable server failure (HTTP 503 with a `Retry-After: 0` response header).
       *  * A misdirected request (HTTP 421) on a coalesced connection.
       */
      open fun isOneShot(): Boolean = commonIsOneShot()
    
      companion object {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/sym.go

    func (ctxt *Link) NumberSyms() {
    	if ctxt.Pkgpath == "" {
    		panic("NumberSyms called without package path")
    	}
    
    	if ctxt.Headtype == objabi.Haix {
    		// Data must be in a reliable order for reproducible builds.
    		// The original entries are in a reliable order, but the TOC symbols
    		// that are added in Progedit are added by different goroutines
    		// that can be scheduled independently. We need to reorder those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/runtime/race/race_test.go

    	//    that can lead to false negatives if racy accesses happen literally at the same time.
    	// Tests used to work reliably in the good old days of GOMAXPROCS=1.
    	// So let's set it for now. A more reliable solution is to explicitly annotate tests
    	// with required execution order by means of a special "invisible" synchronization primitive
    	// (that's what is done for C++ ThreadSanitizer tests). This is issue #14119.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top