Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Interpret (0.25 sec)

  1. cmd/api-errors.go

    			HTTPStatusCode: apiErr.HTTPStatusCode,
    		}
    	case "XMinioBackendDown":
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    	case "InternalError":
    		// If we see an internal error try to interpret
    		// any underlying errors if possible depending on
    		// their internal error types.
    		switch e := err.(type) {
    		case kms.Error:
    			apiErr = APIError{
    				Code:           e.APICode,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    	}
    	if got, want := res.TLS.CipherSuite, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256; got != want {
    		t.Errorf("TLS Cipher Suite = %d; want %d", got, want)
    	}
    }
    
    // Check that an HTTPS client can interpret a particular TLS error
    // to determine that the server is speaking HTTP.
    // See golang.org/issue/11111.
    func TestHTTPSClientDetectsHTTPServer(t *testing.T) {
    	run(t, testHTTPSClientDetectsHTTPServer, []testMode{http1Mode})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. src/time/time.go

    // Time with a specific Location. Changing the Location of a Time value with
    // these methods does not change the actual instant it represents, only the time
    // zone in which to interpret it.
    //
    // Representations of a Time value saved by the [Time.GobEncode], [Time.MarshalBinary],
    // [Time.MarshalJSON], and [Time.MarshalText] methods store the [Time.Location]'s offset, but not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    	})
    }
    
    // queryNone adds a candidate set to q for each module matching q.pattern.
    // Each candidate set has only one possible module version: the matched
    // module at version "none".
    //
    // We interpret arguments to 'go get' as packages first, and fall back to
    // modules second. However, no module exists at version "none", and therefore no
    // package exists at that version either: we know that the argument cannot match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		// of an object to check for object existence. For versioned buckets, MinIO's non-recursive
    		// call will report top level prefixes in deleted state, whereas spark/hadoop interpret this as non-empty
    		// and throw a 404 exception. This is especially a problem for spark jobs overwriting the same partition
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    		if err != nil {
    			return nil, time.Time{}, err
    		}
    		return nil, time.Time{}, errFileNotFound
    	}
    
    	return buf, dmTime, nil
    }
    
    // ReadXL reads from path/xl.meta, does not interpret the data it read. This
    // is a raw call equivalent of ReadVersion().
    func (s *xlStorage) ReadXL(ctx context.Context, volume, path string, readData bool) (RawFileInfo, error) {
    	volumeDir, err := s.getVolDir(volume)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    				// versions older than what is listed in the go.mod file.
    				compatVersion = goVersion
    			}
    		}
    		if gover.Compare(compatVersion, goVersion) > 0 {
    			// Each version of the Go toolchain knows how to interpret go.mod and
    			// go.sum files produced by all previous versions, so a compatibility
    			// version higher than the go.mod version adds nothing.
    			compatVersion = goVersion
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This behavior is still permitted when publishing to Ivy repositories.
    It will result in an error in Gradle 9.0.
    
    Currently, when publishing to Maven repositories, Gradle will interpret the dependency below as if it were declared with coordinates `org:notfoo:1.0`.
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/time/format.go

    		}
    	}
    	return parse(layout, value, UTC, Local)
    }
    
    // ParseInLocation is like Parse but differs in two important ways.
    // First, in the absence of time zone information, Parse interprets a time as UTC;
    // ParseInLocation interprets the time as in the given location.
    // Second, when given a zone offset or abbreviation, Parse tries to match it
    // against the Local location; ParseInLocation uses the given location.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          .isEqualTo("::1:ffff:ffff")
        assertThat(parse("http://[0:0:0:0:0:1:0.0.0.0]/").host).isEqualTo("::1:0:0")
      }
    
      @Test
      fun hostIpv6WithIpv4SuffixWithOctalPrefix() {
        // Chrome interprets a leading '0' as octal; Firefox rejects them. (We reject them.)
        assertInvalid(
          "http://[0:0:0:0:0:1:0.0.0.000000]/",
          "Invalid URL host: \"[0:0:0:0:0:1:0.0.0.000000]\"",
        )
        assertInvalid(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top