Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for correctness (0.18 sec)

  1. src/go/types/stmt.go

    		check.simpleStmt(s.Init)
    
    		// A type switch guard must be of the form:
    		//
    		//     TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
    		//
    		// The parser is checking syntactic correctness;
    		// remaining syntactic errors are considered AST errors here.
    		// TODO(gri) better factoring of error handling (invalid ASTs)
    		//
    		var lhs *ast.Ident // lhs identifier or nil
    		var rhs ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. cmd/erasure-multipart.go

    			// requests. xl.meta is the authoritative source of truth on which parts constitute
    			// the object. The presence of parts that don't belong in the object doesn't affect correctness.
    			_ = storageDisks[index].Delete(context.TODO(), minioMetaMultipartBucket, curpartPath, DeleteOptions{
    				Recursive: false,
    				Immediate: false,
    			})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. src/math/big/nat.go

    //          which assumes that (nat) slice capacities are never
    //          changed (no 3-operand slice expressions). If that
    //          changes, alias needs to be updated for correctness.
    
    package big
    
    import (
    	"internal/byteorder"
    	"math/bits"
    	"math/rand"
    	"sync"
    )
    
    // An unsigned integer x of the form
    //
    //	x = x[n-1]*_B^(n-1) + x[n-2]*_B^(n-2) + ... + x[1]*_B + x[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    debugger. Because variables have all been resolved to the specific
    objects they represent, there is no danger of using plain "p1" and
    colliding with a Go variable named "p1"; the # is just nice to have,
    not for correctness.)
    
    It can also happen that there are fewer range variables than function
    arguments, in which case we end up with something like
    
    	f(func(x T1, _ T2) bool {
    		...
    	})
    
    or
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    			// the stack pointer back up (if it ever went down) and then jumps
    			// to a new function entirely. That form of instruction must read
    			// all the parameters for correctness, and similarly it must not
    			// read the out arguments - they won't be set until the new
    			// function runs.
    			lv.cache.tailuevar = append(lv.cache.tailuevar, int32(i))
    
    		case ir.PPARAMOUT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top