Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for envs (0.06 sec)

  1. src/runtime/map.go

    			} else if t.Elem.Pointers() {
    				memclrHasPointers(e, t.Elem.Size_)
    			} else {
    				memclrNoHeapPointers(e, t.Elem.Size_)
    			}
    			b.tophash[i] = emptyOne
    			// If the bucket now ends in a bunch of emptyOne states,
    			// change those to emptyRest states.
    			// It would be nice to make this a separate function, but
    			// for loops are not currently inlineable.
    			if i == abi.MapBucketCount-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    final1:
    	PXOR	X0, X1	// xor data with seed
    	AESENC	X1, X1	// scramble combo 3 times
    	AESENC	X1, X1
    	AESENC	X1, X1
    	MOVQ	X1, AX	// return X1
    	RET
    
    endofpage:
    	// address ends in 1111xxxx. Might be up against
    	// a page boundary, so load ending at last byte.
    	// Then shift bytes down using pshufb.
    	MOVOU	-32(AX)(CX*1), X1
    	ADDQ	CX, CX
    	MOVQ	$shifts<>(SB), AX
    	PSHUFB	(AX)(CX*8), X1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			rv:          list.ResourceVersion,
    			rvMatch:     metav1.ResourceVersionMatchNotOlderThan,
    			expectedOut: []example.Pod{*preset[2], *preset[4]},
    		},
    		{
    			name:   "filter returns one item for last page, ends on last item, not full",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field:    fields.OneTermEqualSelector("metadata.name", "foo"),
    				Label:    labels.Everything(),
    				Limit:    2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	// violate Go 1 compatibility.
    	private()
    }
    
    var _ TB = (*T)(nil)
    var _ TB = (*B)(nil)
    
    // T is a type passed to Test functions to manage test state and support formatted test logs.
    //
    // A test ends when its Test function returns or calls any of the methods
    // FailNow, Fatal, Fatalf, SkipNow, Skip, or Skipf. Those methods, as well as
    // the Parallel method, must be called only from the goroutine running the
    // Test function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	if line != wantHdr {
    		Errorf(nil, "%s: linked object header mismatch:\nhave %q\nwant %q\n", pn, line, wantHdr)
    	}
    
    	// Skip over exports and other info -- ends with \n!\n.
    	//
    	// Note: It's possible for "\n!\n" to appear within the binary
    	// package export data format. To avoid truncating the package
    	// definition prematurely (issue 21703), we keep track of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func ToString(name string, options ...Option) (string, error) {
    	if strings.HasPrefix(name, "_R") {
    		return rustToString(name, options)
    	}
    
    	// Check for an old-style Rust mangled name.
    	// It starts with _ZN and ends with "17h" followed by 16 hex digits
    	// followed by "E" followed by an optional suffix starting with "."
    	// (which we ignore).
    	if strings.HasPrefix(name, "_ZN") {
    		rname := name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/reflect/type.go

    		}
    		f.Offset = offset
    
    		if ft.Size_ == 0 {
    			lastzero = size
    		}
    
    		fs[i] = f
    	}
    
    	if size > 0 && lastzero == size {
    		// This is a non-zero sized struct that ends in a
    		// zero-sized field. We add an extra byte of padding,
    		// to ensure that taking the address of the final
    		// zero-sized field can't manufacture a pointer to the
    		// next object in the heap. See issue 9401.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// it off to the res.Body reader, which then uses it to decide
    	// whether or not a connection can be reused. Issue 7569.
    	writeErrCh chan error
    
    	writeLoopDone chan struct{} // closed when write loop ends
    
    	// Both guarded by Transport.idleMu:
    	idleAt    time.Time   // time it last become idle
    	idleTimer *time.Timer // holding an AfterFunc to close it
    
    	mu                   sync.Mutex // guards following fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		// and also because -godefs mode still prints the AST.
    		old := *r.Expr
    		*r.Expr = expr
    
    		// Record source-level edit for cgo output.
    		if !r.Done {
    			// Prepend a space in case the earlier code ends
    			// with '/', which would give us a "//" comment.
    			repl := " " + gofmtPos(expr, old.Pos())
    			end := fset.Position(old.End())
    			// Subtract 1 from the column if we are going to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top