Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for predictable (0.32 sec)

  1. test/typeparam/graph.go

    	node _Node
    	path []_Edge
    }
    
    // ShortestPath returns the shortest path between two nodes,
    // as an ordered list of edges. If there are multiple shortest paths,
    // which one is returned is unpredictable.
    func (g *_Graph[_Node, _Edge]) ShortestPath(from, to _Node) ([]_Edge, error) {
    	visited := make(map[_Node]bool)
    	visited[from] = true
    	workqueue := []nodePath[_Node, _Edge]{nodePath[_Node, _Edge]{from, nil}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/go/types/api.go

    )
    
    // An Error describes a type-checking error; it implements the error interface.
    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Fset *token.FileSet // file set for interpretation of Pos
    	Pos  token.Pos      // error position
    	Msg  string         // error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    )
    
    // An Error describes a type-checking error; it implements the error interface.
    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Pos  syntax.Pos // error position
    	Msg  string     // default error message, user-friendly
    	Full string     // full error message, for debugging (may contain internal details)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    func TestMakeFunc(t *testing.T) {
    	f := dummy
    	fv := MakeFunc(TypeOf(f), func(in []Value) []Value { return in })
    	ValueOf(&f).Elem().Set(fv)
    
    	// Call g with small arguments so that there is
    	// something predictable (and different from the
    	// correct results) in those positions on the stack.
    	g := dummy
    	g(1, 2, 3, two{4, 5}, 6, 7, 8)
    
    	// Call constructed function f.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    hg convert ./git .
    rm ./git
    
    # Note: commit #18 is an 'update tags' commit automatically generated by 'hg
    # convert'. We have no control over its timestamp, so it and its descendent
    # commit #19 both end up with unpredictable commit hashes.
    #
    # Fortunately, these commits don't seem to matter for the purpose of reproducing
    # the final branches and heads from the original copy of this repo.
    
    # 19
    hg update -C -r 18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  6. src/net/http/response.go

    //
    //	StatusCode
    //	ProtoMajor
    //	ProtoMinor
    //	Request.Method
    //	TransferEncoding
    //	Trailer
    //	Body
    //	ContentLength
    //	Header, values for non-canonical keys will have unpredictable behavior
    //
    // The Response Body is closed after it is sent.
    func (r *Response) Write(w io.Writer) error {
    	// Status line
    	text := r.Status
    	if text == "" {
    		text = StatusText(r.StatusCode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * fix kubelet event recording for selected events. ([#46246](https://github.com/kube...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. internal/etag/etag.go

    // MD5 of the object. For multipart uploads the ETag is also not
    // the MD5 of the individual part checksums but it still contains
    // the number of parts as suffix.
    //
    // Instead, the ETag is kind of unpredictable for S3 clients when
    // an object is encrypted using SSE-C or SSE-KMS. Maybe AWS S3
    // computes the ETag as MD5 of the encrypted content but there is
    // no way to verify this assumption since the encryption happens
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    // ARM64 manual says it is "constrained unpredictable" if the src and dst registers of STP/LDP are same.
    func (c *ctxt7) checkUnpredictable(p *obj.Prog, isload bool, wback bool, rn int16, rt1 int16, rt2 int16) {
    	if wback && rn != REGSP && (rn == rt1 || rn == rt2) {
    		c.ctxt.Diag("constrained unpredictable behavior: %v", p)
    	}
    	if isload && rt1 == rt2 {
    		c.ctxt.Diag("constrained unpredictable behavior: %v", p)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/Quantiles.java

     * randomly ordered data (the probability decreases faster than exponentially in N), but if you are
     * passing in unsanitized user data then a malicious user could force it. A light shuffle of the
     * data using an unpredictable seed should normally be enough to thwart this attack.
     *
     * <p>The time taken to compute multiple quantiles on the same dataset using {@link Scale#indexes
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top