Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Temp (0.07 sec)

  1. .teamcity/test-buckets.json

    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"plugin-use",
    					"native",
    					"java-compiler-plugin",
    					"file-temp",
    					"concurrent",
    					"functional",
    					"test-suites-base",
    					"internal-testing",
    					"io",
    					"testing-jvm-infrastructure",
    					"cli"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    	Vb := new(Int).SetInt64(1)
    
    	q := new(Int)
    	temp := new(Int)
    
    	r := new(Int)
    	for len(B.abs) > 0 {
    		q, r = q.QuoRem(A, B, r)
    
    		A, B, r = B, r, A
    
    		// Ua, Ub = Ub, Ua-q*Ub
    		temp.Set(Ub)
    		Ub.Mul(Ub, q)
    		Ub.Sub(Ua, Ub)
    		Ua.Set(temp)
    
    		// Va, Vb = Vb, Va-q*Vb
    		temp.Set(Vb)
    		Vb.Mul(Vb, q)
    		Vb.Sub(Va, Vb)
    		Va.Set(temp)
    	}
    	return A, Ua, Va
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. tests/integration/security/authz_test.go

    						},
    						{
    							path:  "/allow",
    							allow: false,
    						},
    						{
    							path:  "/allow/admin/temp",
    							allow: true,
    						},
    						{
    							path:  "/allow/admin/temp.txt",
    							allow: true,
    						},
    						{
    							path:  "/allow/admin/foo/temp.txt",
    							allow: true,
    						},
    						// Test matches for `/foo/{*}/bar/{**}`
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	i = strings.LastIndex(tmpdir, `"`)
    	if i == -1 {
    		t.Fatalf(`fail to find " in "host link:" line %q`, hostLinkLine)
    	}
    	tmpdir = tmpdir[i+1:]
    	// Verify that temp directory has been removed.
    	_, err := os.Stat(tmpdir)
    	if err == nil {
    		t.Fatalf("temp directory %q has not been removed", tmpdir)
    	}
    	if !os.IsNotExist(err) {
    		t.Fatalf("Stat(%q) returns unexpected error: %v", tmpdir, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		default:
    			genAddr = fromAddr.Offset%4 != 0
    		}
    		if genAddr {
    			// Load full address into the temp register.
    			p := s.Prog(ppc64.AMOVD)
    			p.From.Type = obj.TYPE_ADDR
    			p.From.Reg = v.Args[0].Reg()
    			ssagen.AddAux(&p.From, v)
    			// Load target using temp as base register
    			// and offset zero. Setting NAME_NONE
    			// prevents any extra offsets from being
    			// added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	ips := maxIPs
    	inServices := make([]*model.Service, ips)
    	for i := 0; i < ips; i++ {
    		temp := model.Service{
    			Hostname:       host.Name(fmt.Sprintf("foo%d.com", i)),
    			Resolution:     model.ClientSideLB,
    			DefaultAddress: constants.UnspecifiedIP,
    		}
    		inServices[i] = &temp
    	}
    	gotServices := autoAllocateIPs(inServices)
    
    	// We dont expect the following pattern of IPs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	accessKey := mss.Get(peerRESTUser)
    	if accessKey == "" {
    		return np, grid.NewRemoteErr(errors.New("username is missing"))
    	}
    
    	temp, err := strconv.ParseBool(mss.Get(peerRESTUserTemp))
    	if err != nil {
    		return np, grid.NewRemoteErr(err)
    	}
    
    	userType := regUser
    	if temp {
    		userType = stsUser
    	}
    
    	if err = globalIAMSys.LoadUser(context.Background(), objAPI, accessKey, userType); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    // reseed - returns a new seed every time the function is called.
    func reseed() uint32 {
    	return uint32(time.Now().UnixNano() + int64(os.Getpid()))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Fold address into load/store.
    // If power10 with PCRel is not available, then
    // the assembler needs to generate several instructions and use
    // temp register for accessing global, and each time it will reload
    // the temp register. So don't fold address of global in that case if there is more than
    // one use.
    (MOV(B|H|W|D)store [off1] {sym1} p:(MOVDaddr [off2] {sym2} ptr) val mem) && canMergeSym(sym1,sym2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			}
    			if err := w.Close(); err != nil {
    				Exitf("cannot close %s: %v", dst, err)
    			}
    		}()
    	}
    	wg.Wait()
    	return paths
    }
    
    // writeGDBLinkerScript creates gcc linker script file in temp
    // directory. writeGDBLinkerScript returns created file path.
    // The script is used to work around gcc bug
    // (see https://golang.org/issue/20183 for details).
    func writeGDBLinkerScript() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top