Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 139 for canonicalized (0.47 sec)

  1. cmd/handler-utils_test.go

    			},
    			metadata: map[string]string{
    				"X-Amz-Meta-Appid":   "amz-meta",
    				"X-Minio-Meta-Appid": "minio-meta",
    			},
    			shouldFail: false,
    		},
    		// Fail if header key is not in canonicalized form
    		{
    			header: http.Header{
    				"x-amz-meta-appid": []string{"amz-meta"},
    			},
    			metadata: map[string]string{
    				"x-amz-meta-appid": "amz-meta",
    			},
    			shouldFail: false,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/net/http/servemux121.go

    	}
    	mux.handle(pattern, HandlerFunc(handler))
    }
    
    // Formerly ServeMux.Handler.
    func (mux *serveMux121) findHandler(r *Request) (h Handler, pattern string) {
    
    	// CONNECT requests are not canonicalized.
    	if r.Method == "CONNECT" {
    		// If r.URL.Path is /tree and its handler is not registered,
    		// the /tree -> /tree/ redirect applies to CONNECT requests
    		// but the path canonicalization does not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/toolchain.go

    	// architectures. The eventual download uses the right GOOS-GOARCH.
    	info, err := r.repo.Stat(ctx, goToDL(v, "linux", "amd64"))
    	if err != nil {
    		return nil, err
    	}
    
    	// Return the info using the canonicalized rev
    	// (toolchain 1.2 => toolchain go1.2).
    	return &RevInfo{Version: prefix + v, Time: info.Time}, nil
    }
    
    func (r *toolchainRepo) Latest(ctx context.Context) (*RevInfo, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. cmd/bootstrap-peer-server.go

    	if err != nil {
    		return err
    	}
    	// We do not need the response after returning.
    	defer serverVerifyHandler.PutResponse(recvCfg)
    
    	return srcCfg.Diff(recvCfg)
    }
    
    // Stringer provides a canonicalized representation of node.
    func (client *bootstrapRESTClient) String() string {
    	return client.gridConn.String()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/union.go

    // ----------------------------------------------------------------------------
    // API
    
    // A Union represents a union of terms embedded in an interface.
    type Union struct {
    	terms []*Term // list of syntactical terms (not a canonicalized termlist)
    }
    
    // NewUnion returns a new Union type with the given terms.
    // It is an error to create an empty union; they are syntactically not possible.
    func NewUnion(terms []*Term) *Union {
    	if len(terms) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/go/types/union.go

    // ----------------------------------------------------------------------------
    // API
    
    // A Union represents a union of terms embedded in an interface.
    type Union struct {
    	terms []*Term // list of syntactical terms (not a canonicalized termlist)
    }
    
    // NewUnion returns a new [Union] type with the given terms.
    // It is an error to create an empty union; they are syntactically not possible.
    func NewUnion(terms []*Term) *Union {
    	if len(terms) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

         * The caller shouldn't notify Gradle about changes detected by using other file
         * watchers, since Gradle already will be using its own file watcher.
         *
         * <p>The paths which are passed in need to be absolute, canonicalized paths.
         * For a delete, the deleted path should be passed.
         * For a rename, the old and the new path should be passed.
         * When creating a new file, the path to the file should be passed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    		return c
    	}
    	return comparePrerelease(pv.prerelease, pw.prerelease)
    }
    
    // Max canonicalizes its arguments and then returns the version string
    // that compares greater.
    //
    // Deprecated: use [Compare] instead. In most cases, returning a canonicalized
    // version is not expected or desired.
    func Max(v, w string) string {
    	v = Canonical(v)
    	w = Canonical(w)
    	if Compare(v, w) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/passes/canonicalize.cc

    A. Unique TensorFlower <******@****.***> 1673734256 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/common_v1.py

          assets_collection. signature_def_map is a map from string key to
          signature_def. The key will be used as function name in the resulting
          MLIR.
        canonicalize: If true, canonicalizer will be run on the resulting MLIR.
        show_debug_info: If true, shows debug locations in the resulting MLIR.
        use_lite: If true, importer will not do any graph transformation such as
          lift variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top