Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for i$ (0.03 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    	expected := []*v1.Pod{pod1, pod3, pod2, pod4, pod5, pod6}
    	for i := range expected {
    		if pods[i] != expected[i] {
    			t.Errorf("Expected pod[%d]: %s, but got: %s", i, expected[i].Name, pods[i].Name)
    		}
    	}
    }
    
    func TestOrderedbyInodes(t *testing.T) {
    	low := newPod("low", defaultPriority, []v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      for (int i = original_arg_count, end = data_types.size(); i < end; i++) {
        TF_ASSIGN_OR_RETURN(Node * arg_node,
                            AddOutsideCompilationInputArgToFunctionBody(
                                *body_function_body, i, data_types[i]));
    
        TF_RETURN_IF_ERROR(
            AddMatchingRetvalNode(*body_function_body, i, data_types[i], arg_node));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // `updates` are equal.
      for (auto i = 0; i < outer_dims; i++) {
        if (indices_type.getDimSize(i) != updates_type.getDimSize(i)) {
          return op.emitOpError()
                 << "indices.Dims(" << i << ") == " << indices_type.getDimSize(i)
                 << ", but updates.Dims(" << i
                 << ") == " << updates_type.getDimSize(i);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return false;
      }
    
      // Checks if `begin` is all 0s, and `size[i]` is equal to either -1 or
      // `input.shape[i]`.
      for (uint64_t i = 0; i < rank; ++i) {
        if (begin_attr.getValues<APInt>()[i].getSExtValue() != 0) return false;
        int64_t si = size_attr.getValues<APInt>()[i].getSExtValue();
        if (si != -1 && si != input_ty.getDimSize(i)) return false;
      }
    
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top