Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for reinterpret (0.18 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{
    				Description:    e.Err.Error(),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  2. 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)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // propagate SRV DNS records for its Pods for the purpose of peer discovery.
      // The Kubernetes controllers that generate Endpoints and EndpointSlice resources for
      // Services interpret this to mean that all endpoints are considered "ready" even if the
      // Pods themselves are not. Agents which consume only Kubernetes generated endpoints
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.24.md

    - Added an example for the `kubectl plugin list` command. ([#106600](https://github.com/kubernetes/kubernetes/pull/106600),...
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Aug 24 00:02:43 GMT 2023
    - 473.4K bytes
    - Viewed (0)
Back to top