Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for original (0.1 sec)

  1. src/cmd/compile/internal/ir/type.go

    	//
    	// BUG(mdempsky): If ITab is non-nil, RType may be nil.
    	RType Node
    
    	// ITab is an expression that yields a *runtime.itab value
    	// representing the asserted type within the assertee expression's
    	// original interface type.
    	//
    	// ITab is only used for assertions (including type switches) from
    	// non-empty interface type to a concrete (i.e., non-interface)
    	// type. For all other assertions, ITab is nil.
    	ITab Node
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 20 05:56:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/constdecl.go

    }
    
    // Test cases for errors in inherited constant initialization expressions.
    // Errors related to inherited initialization expressions must appear at
    // the constant identifier being declared, not at the original expression
    // (issues #42991, #42992).
    const (
    	_ byte = 255 + iota
    	/* some gap */
    	_ // ERROR "overflows"
    	/* some gap */
    	/* some gap */ _ /* ERROR "overflows" */; _ /* ERROR "overflows" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/image/ycbcr.go

    	return (y-p.Rect.Min.Y)*p.CStride + (x - p.Rect.Min.X)
    }
    
    // SubImage returns an image representing the portion of the image p visible
    // through r. The returned value shares pixels with the original image.
    func (p *YCbCr) SubImage(r Rectangle) Image {
    	r = r.Intersect(p.Rect)
    	// If r1 and r2 are Rectangles, r1.Intersect(r2) is not guaranteed to be inside
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cmdflag/flag.go

    // A FlagNotDefinedError indicates a flag-like argument that does not correspond
    // to any registered flag in a FlagSet.
    type FlagNotDefinedError struct {
    	RawArg   string // the original argument, like --foo or -foo=value
    	Name     string
    	HasValue bool   // is this the -foo=value or --foo=value form?
    	Value    string // only provided if HasValue is true
    }
    
    func (e FlagNotDefinedError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top