Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Canonicalize (2 sec)

  1. cmd/storage-rest-client.go

    	respBody, err := client.restClient.Call(ctx, method, values, body, length)
    	if err != nil {
    		return nil, toStorageErr(err)
    	}
    	return respBody, nil
    }
    
    // Stringer provides a canonicalized representation of network device.
    func (client *storageRESTClient) String() string {
    	return client.endpoint.String()
    }
    
    // IsOnline - returns whether client failed to connect or not.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. cmd/peer-rest-client.go

    	if err == nil {
    		return respBody, nil
    	}
    
    	if xnet.IsNetworkOrHostDown(err, true) {
    		return nil, errPeerNotReachable
    	}
    
    	return nil, err
    }
    
    // Stringer provides a canonicalized representation of node.
    func (client *peerRESTClient) String() string {
    	return client.host.String()
    }
    
    // IsOnline returns true if the peer client is online.
    func (client *peerRESTClient) IsOnline() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // tf_executor.graph into the same block as the tf_executor.graph.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateExecutorDialectToFunctionalConversionPass();
    
    namespace TF {
    // Creates a pass that canonicalizes legacy compilation and replication
    // attributes.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateCanonicalizeCompileAndReplicateAttributesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. src/net/http/httputil/reverseproxy.go

    var hopHeaders = []string{
    	"Connection",
    	"Proxy-Connection", // non-standard but still sent by libcurl and rejected by e.g. google
    	"Keep-Alive",
    	"Proxy-Authenticate",
    	"Proxy-Authorization",
    	"Te",      // canonicalized version of "TE"
    	"Trailer", // not Trailers per URL above; https://www.rfc-editor.org/errata_search.php?eid=4522
    	"Transfer-Encoding",
    	"Upgrade",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    	if len(excerpts) > 1 {
    		excerpt = excerpts[1]
    	}
    	if len(locations) > 0 {
    		fn := canonFileName(locations[2])
    		if *verbose {
    			if s.file != fn {
    				fmt.Printf("%s\n", locations[2]) // don't canonocalize verbose logging
    			}
    			fmt.Printf("  %s\n", locations[3])
    		}
    		s.line = locations[3]
    		s.file = fn
    		s.function = locations[1]
    		s.ioState.history.add(s.file, s.line, excerpt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/crypto/x509/name_constraints_test.go

    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"email:\"\\f\\o\\o\"@example.com"},
    		},
    		noOpenSSL: true, // OpenSSL doesn't canonicalise email addresses before matching
    	},
    
    	// #43: limiting email addresses to a host works.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"email:example.com"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    			invp := InvalidPart{
    				PartNumber: part.PartNumber,
    				GotETag:    part.ETag,
    			}
    			return oi, invp
    		}
    		expPart := currentFI.Parts[partIdx]
    
    		// ensure that part ETag is canonicalized to strip off extraneous quotes
    		part.ETag = canonicalizeETag(part.ETag)
    		expETag := tryDecryptETag(objectEncryptionKey, expPart.ETag, kind == crypto.S3)
    		if expETag != part.ETag {
    			invp := InvalidPart{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    }
    
    // Parse parses and returns a go.mod file.
    //
    // file is the name of the file, used in positions and errors.
    //
    // data is the content of the file.
    //
    // fix is an optional function that canonicalizes module versions.
    // If fix is nil, all module versions must be canonical ([module.CanonicalVersion]
    // must return the same string).
    func Parse(file string, data []byte, fix VersionFixer) (*File, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    	// operations on 64-bit registers, which is much faster than
    	// bytewise processing.
    	addr uint128
    
    	// Details about the address, wrapped up together and canonicalized.
    	z unique.Handle[addrDetail]
    }
    
    // addrDetail represents the details of an Addr, like address family and IPv6 zone.
    type addrDetail struct {
    	IsV6   bool   // IPv4 is false, IPv6 is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top