Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Temp (0.04 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/ssa/regalloc.go

    						}
    					}
    					s.f.setHome(v, outLocs)
    				} else {
    					if r := outRegs[0]; r != noRegister {
    						s.assignReg(r, v, v)
    					}
    				}
    				if tmpReg != noRegister {
    					// Remember the temp register allocation, if any.
    					if s.f.tempRegs == nil {
    						s.f.tempRegs = map[ID]*Register{}
    					}
    					s.f.tempRegs[v.ID] = &s.registers[tmpReg]
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			}
    		}
    	}
    }
    
    func TestPathBuilderWithMultiple(t *testing.T) {
    	// create test dirs
    	tmpDir, err := os.MkdirTemp("", "recursive_test_multiple")
    	if err != nil {
    		t.Fatalf("error creating temp dir: %v", err)
    	}
    
    	createTestDir(t, fmt.Sprintf("%s/%s", tmpDir, "recursive/pod/pod_1"))
    	createTestDir(t, fmt.Sprintf("%s/%s", tmpDir, "recursive/rc/rc_1"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VSL      TT1, SEL1, TT1     \
    	VOR      T0, TT0, T0        \
    	VOR      T1, TT1, T1
    
    #define res_ptr R3
    #define x_ptr   R4
    #define y_ptr   R5
    #define CPOOL   R7
    #define TEMP    R8
    #define N       R9
    
    // Parameters
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    // Constants
    #define P0    V30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. 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)
Back to top