Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for homes (0.06 sec)

  1. src/runtime/mbitmap.go

    	if typ == nil || typ.Kind_&abi.KindGCProg != 0 {
    		return
    	}
    	if typ.Kind_&abi.KindMask == abi.Interface {
    		// Interfaces are unfortunately inconsistently handled
    		// when it comes to the type pointer, so it's easy to
    		// produce a lot of false positives here.
    		return
    	}
    	tp0 := s.typePointersOfType(typ, addr)
    	tp1 := s.typePointersOf(addr, size)
    	failed := false
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	CMPQ	AX, $0
    	JEQ	dropm
    	CMPQ	(AX), $0
    	JNE	done
    
    dropm:
    	MOVQ	$runtimeĀ·dropm(SB), AX
    	CALL	AX
    #ifdef GOOS_windows
    	// We need to clear the TLS pointer in case the next
    	// thread that comes into Go tries to reuse that space
    	// but uses the same M.
    	XORQ	DI, DI
    	CALL	runtimeĀ·settls(SB)
    #endif
    done:
    
    	// Done!
    	RET
    
    // func setg(gg *g)
    // set g. for use by needm.
    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. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		}
    
    		// The following sections mimic this scenario:
    		// f1 starts terminating, f3 picks up the IP, f3 delete event (pod
    		// not ready yet) comes before f1
    		//
    		// Delete f3 event
    		callInstanceHandlers([]*model.WorkloadInstance{fi3}, sd, model.EventDelete, t)
    		expectProxyInstances(t, sd, instances, "2.2.2.2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/testing/testing.go

    func Init() {
    	if initRan {
    		return
    	}
    	initRan = true
    	// The short flag requests that tests run more quickly, but its functionality
    	// is provided by test writers themselves. The testing package is just its
    	// home. The all.bash installation script sets it to make installation more
    	// efficient, but by default the flag is off so a plain "go test" will do a
    	// full test of the package.
    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/go/internal/test/test.go

    	} else {
    		// If we're only running a single package under test or if parallelism is
    		// set to 1, and if we're displaying all output (testShowPass), we can
    		// hurry the output along, echoing it as soon as it comes in.
    		// We still have to copy to &buf for caching the result. This special
    		// case was introduced in Go 1.5 and is intentionally undocumented:
    		// the exact details of output buffering are up to the go command and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    	}
    
    	err = s.adm.SetPolicy(ctx, policy, "test-group", true)
    	if err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    	}
    
    	// confirm that the user is able to access the bucket - permission comes
    	// from group.
    	c.mustListObjects(ctx, uClient, bucket)
    
    	// Create STS user.
    	assumeRole := cr.STSAssumeRole{
    		Client:      s.TestSuiteCommon.client,
    		STSEndpoint: s.endPoint,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top