Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for ready (0.15 sec)

  1. cmd/object-handlers.go

    		return
    	}
    
    	if r.ContentLength <= 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrEmptyRequestBody), r.URL)
    		return
    	}
    
    	// Take read lock on object, here so subsequent lower-level
    	// calls do not need to.
    	lock := objectAPI.NewNSLock(bucket, object)
    	lkctx, err := lock.GetRLock(ctx, globalOperationTimeout)
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CacheTest.kt

        val updatedTimestamp = response2.receivedResponseAtMillis
        assertThat((updatedTimestamp - t1).toDouble()).isCloseTo(0.0, 250.0)
    
        // A full cache hit reads the cache.
        Thread.sleep(10)
        val response3 = get(server.url("/a"))
        assertThat(response3.body.string()).isEqualTo("A")
        assertThat(response3.header("Allow")).isEqualTo("GET, HEAD")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	c.Assert(err, nil)
    	// Since only part of the object is requested, expecting response status to be http.StatusPartialContent .
    	c.Assert(response.StatusCode, http.StatusPartialContent)
    	// read the downloaded content from the response body.
    	getContent, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    
    	// Compare putContent and getContent.
    	c.Assert(string(getContent), putContent[10485750:10485770])
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                <![CDATA[
                The source control management system URL
                that describes the repository and how to connect to the
                repository.
                This connection is read-only.
                <br><b>Default value is</b>: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if
                scm's {@code child.scm.connection.inherit.append.path="false"}
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // quest : 2015-03-26 XYZ.COM LLC
    quest
    
    // racing : 2014-12-04 Premier Registry Limited
    racing
    
    // radio : 2016-07-21 European Broadcasting Union (EBU)
    radio
    
    // read : 2014-12-18 Amazon Registry Services, Inc.
    read
    
    // realestate : 2015-09-11 dotRealEstate LLC
    realestate
    
    // realtor : 2014-05-29 Real Estate Domains LLC
    realtor
    
    // realty : 2015-03-19 Dog Beach, LLC
    realty
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top