Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for i$ (0.11 sec)

  1. cmd/object-handlers_test.go

    	testUploads := struct {
    		sync.Mutex
    		uploads []string
    	}{}
    
    	objectName := "test-object-new-multipart-parallel"
    	var wg sync.WaitGroup
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		// Initiate NewMultipart upload on the same object 10 times concurrrently.
    		go func() {
    			defer wg.Done()
    			rec := httptest.NewRecorder()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	for i := 0; i < b.N; i++ {
    		doConcurrentTest(b, ct)
    	}
    }
    
    func BenchmarkConcurrentTxQuery(b *testing.B) {
    	b.ReportAllocs()
    	ct := new(concurrentTxQueryTest)
    	for i := 0; i < b.N; i++ {
    		doConcurrentTest(b, ct)
    	}
    }
    
    func BenchmarkConcurrentTxExec(b *testing.B) {
    	b.ReportAllocs()
    	ct := new(concurrentTxExecTest)
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	// dialer for this test instead?
    	const (
    		numClients    = 20
    		reqsPerClient = 25
    	)
    	var wg sync.WaitGroup
    	wg.Add(numClients * reqsPerClient)
    	for i := 0; i < numClients; i++ {
    		go func() {
    			for i := 0; i < reqsPerClient; i++ {
    				res, err := c.Get(ts.URL)
    				if err == nil {
    					// We expect errors since the server is
    					// hanging up on us after telling us to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // x - (z + C) -> x + (-z - C) -> (x - z) - C
    (Sub64 x (Add64 z i:(Const64 <t>))) && (z.Op != OpConst64 && x.Op != OpConst64) => (Sub64 (Sub64 <t> x z) i)
    (Sub32 x (Add32 z i:(Const32 <t>))) && (z.Op != OpConst32 && x.Op != OpConst32) => (Sub32 (Sub32 <t> x z) i)
    (Sub16 x (Add16 z i:(Const16 <t>))) && (z.Op != OpConst16 && x.Op != OpConst16) => (Sub16 (Sub16 <t> x z) i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	if in.ResourceHandles != nil {
    		in, out := &in.ResourceHandles, &out.ResourceHandles
    		*out = make([]resource.ResourceHandle, len(*in))
    		for i := range *in {
    			if err := Convert_v1alpha2_ResourceHandle_To_resource_ResourceHandle(&(*in)[i], &(*out)[i], s); err != nil {
    				return err
    			}
    		}
    	} else {
    		out.ResourceHandles = nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    			reg[i] = (i - REG_AX) & 7
    			if i >= REG_R8 {
    				regrex[i] = Rxr | Rxx | Rxb
    			}
    		}
    
    		if i >= REG_F0 && i <= REG_F0+7 {
    			reg[i] = (i - REG_F0) & 7
    		}
    		if i >= REG_M0 && i <= REG_M0+7 {
    			reg[i] = (i - REG_M0) & 7
    		}
    		if i >= REG_K0 && i <= REG_K0+7 {
    			reg[i] = (i - REG_K0) & 7
    		}
    		if i >= REG_X0 && i <= REG_X0+15 {
    			reg[i] = (i - REG_X0) & 7
    			if i >= REG_X0+8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    // If there is no such element, it returns -1, -1.
    func findVersionElement(path string) (i, j int) {
    	j = len(path)
    	for i = len(path) - 1; i >= 0; i-- {
    		if path[i] == '/' {
    			if isVersionElement(path[i+1 : j]) {
    				return i, j
    			}
    			j = i
    		}
    	}
    	return -1, -1
    }
    
    // isVersionElement reports whether s is a well-formed path version element:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      for (int i = 0; i < a.input_size(); ++i) {
        if (absl::StartsWith(a.input(i), "^")) {
          if (!absl::StartsWith(b.input(i), "^")) {
            if (diff) {
              *diff = absl::StrCat(diff_preamble, " mismatch for node ", a.name(),
                                   " input ", i, ", expected control input ",
                                   a.input(i), " got ", b.input(i), " expected:\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		params = make([]AST, len(re.Params))
    		for i, p := range re.Params {
    			pc := p.Copy(fn, skip)
    			if pc == nil {
    				params[i] = p
    			} else {
    				params[i] = pc
    				changed = true
    			}
    		}
    	}
    
    	requirements := make([]AST, len(re.Requirements))
    	for i, r := range re.Requirements {
    		rc := r.Copy(fn, skip)
    		if rc == nil {
    			requirements[i] = r
    		} else {
    			requirements[i] = rc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	totalNum := 10
    	expectedPods := make([]v1.Pod, 0, totalNum)
    	for i := 0; i < totalNum; i++ {
    		priority := int32(i)
    		p := st.MakePod().Name(fmt.Sprintf("pod%d", i)).Namespace(fmt.Sprintf("ns%d", i)).UID(fmt.Sprintf("upns%d", i)).Priority(priority).Obj()
    		expectedPods = append(expectedPods, *p)
    		// priority is to make pods ordered in the PriorityQueue
    		q.Add(logger, p)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top