Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for homes (0.04 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	// before target is reached:
    	//     load = read ... oldmem
    	//   newmem = write ... oldmem
    	//     arg0 = read ... newmem
    	//   target = add arg0 load
    	//
    	// If the argument comes from a different block then we can exclude
    	// it immediately because it must dominate load (which is in the
    	// same block as target).
    	var args []*Value
    	for _, a := range target.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    # details.
    #
    # Download-HelperScripts() must have been called first.
    function Add_InitialHnsNetwork {
      $INITIAL_HNS_NETWORK = 'External'
    
      # This comes from
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/flannel/l2bridge/start.ps1#L74
      # (or
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1#L206).
      #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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)
  7. 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)
Back to top