Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 462 for original (0.12 sec)

  1. src/cmd/go/internal/str/path.go

    			// Joining a relative path to a bare Windows drive letter produces a path
    			// relative to the working directory on that drive, but the original path
    			// was absolute, not relative. Keep the leading path separator so that it
    			// remains absolute when joined to prefix.
    		} else {
    			// Prefix ends in a regular path element, so strip the path separator that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/runtime/cgo/handle.go

    // breaking the cgo pointer passing rules. A Handle is an integer
    // value that can represent any Go value. A Handle can be passed
    // through C and back to Go, and Go code can use the Handle to
    // retrieve the original Go value.
    //
    // The underlying type of Handle is guaranteed to fit in an integer type
    // that is large enough to hold the bit pattern of any pointer. The zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/LICENSE

    https://cla.developers.google.com/clas
    
    Some files from Intel are under yet another license, which is also included
    underneath.
    
    The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the
    OpenSSL License and the original SSLeay license apply to the toolkit. See below
    for the actual license texts. Actually both licenses are BSD-style Open Source
    licenses. In case of any license issues related to OpenSSL please contact
    ******@****.***.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/hash/hash.go

    // allows its internal state to be saved and used for additional processing
    // later, without having to re-write the data previously written to the hash.
    // The hash state may contain portions of the input in its original form,
    // which users are expected to handle for any possible security implications.
    //
    // Compatibility: Any future changes to hash or crypto packages will endeavor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/internal/singleflight/singleflight.go

    }
    
    // Do executes and returns the results of the given function, making
    // sure that only one execution is in-flight for a given key at a
    // time. If a duplicate comes in, the duplicate caller waits for the
    // original to complete and receives the same results.
    // The return value shared indicates whether v was given to multiple callers.
    func (g *Group) Do(key string, fn func() (any, error)) (v any, err error, shared bool) {
    	g.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:49:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/text/template/parse/node.go

    	// tree returns the containing *Tree.
    	// It is unexported so all implementations of Node are in this package.
    	tree() *Tree
    	// writeTo writes the String output to the builder.
    	writeTo(*strings.Builder)
    }
    
    // NodeType identifies the type of a parse tree node.
    type NodeType int
    
    // Pos represents a byte position in the original input text from which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// setting HTTP_PROXY maliciously. See https://golang.org/s/cgihttpproxy.
    	CGI bool
    }
    
    // config holds the parsed configuration for HTTP proxy settings.
    type config struct {
    	// Config represents the original configuration as defined above.
    	Config
    
    	// httpsProxy is the parsed URL of the HTTPSProxy if defined.
    	httpsProxy *url.URL
    
    	// httpProxy is the parsed URL of the HTTPProxy if defined.
    	httpProxy *url.URL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. doc/go_mem.html

    </p>
    
    <pre>
    f()
    i := *p
    *q = 1
    </pre>
    
    <p>
    If the call never returned, then once again the original program
    would never access <code>*p</code> or <code>*q</code>, but the rewritten program would.
    And if the call contained synchronizing operations, then the original program
    could establish happens before edges preceding the accesses
    to <code>*p</code> and <code>*q</code>, but the rewritten program would not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. src/cmd/distpack/archive.go

    		return nameLess(a.Files[i].Name, a.Files[j].Name)
    	})
    }
    
    // Clone returns a copy of the Archive.
    // Method calls like Add and Filter invoked on the copy do not affect the original,
    // nor do calls on the original affect the copy.
    func (a *Archive) Clone() *Archive {
    	b := &Archive{
    		Files: make([]File, len(a.Files)),
    	}
    	copy(b.Files, a.Files)
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/strings/reader.go

    // Len returns the number of bytes of the unread portion of the
    // string.
    func (r *Reader) Len() int {
    	if r.i >= int64(len(r.s)) {
    		return 0
    	}
    	return int(int64(len(r.s)) - r.i)
    }
    
    // Size returns the original length of the underlying string.
    // Size is the number of bytes available for reading via [Reader.ReadAt].
    // The returned value is always the same and is not affected by calls
    // to any other method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top