Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for i$ (0.06 sec)

  1. 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)
  2. src/net/http/serve_test.go

    	}
    	req.ContentLength = 0
    
    	var resp [5]*Response
    	for i := range resp {
    		resp[i], err = cst.c.Do(req)
    		if err != nil {
    			t.Fatalf("client post #%d: %v", i, err)
    		}
    	}
    
    	for i := range resp {
    		all, err := io.ReadAll(resp[i].Body)
    		if err != nil {
    			t.Fatalf("req #%d: client ReadAll: %v", i, err)
    		}
    		if len(all) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    'begin'.
    
    `begin` is zero-based; `size` is one-based. If size[i] is -1, all remaining
    elements in dimension i are included in the slice. In other words, this is
    equivalent to setting:
      size[i] = input.dim_size(i) - begin[i]
    
    *Requirements*:
      0 <= begin[i] <= begin[i] + size[i] <= Di  for i in [0, n)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	sval := ldr.SymValue(s)
    	if !decodetypeUsegcprog(p.ctxt.Arch, typData) {
    		// Copy pointers from mask into program.
    		mask := decodetypeGcmask(p.ctxt, typ)
    		for i := int64(0); i < nptr; i++ {
    			if (mask[i/8]>>uint(i%8))&1 != 0 {
    				p.w.Ptr(sval/ptrsize + i)
    			}
    		}
    		return
    	}
    
    	// Copy program.
    	prog := decodetypeGcprog(p.ctxt, typ)
    	p.w.ZeroUntil(sval / ptrsize)
    	p.w.Append(prog[4:], nptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<SignatureDefData> result(1);
      for (int i = 0; i < input_names.size(); ++i) {
        result[0].inputs[sig_def_inputs[i]] = input_names[i].str();
      }
      for (int i = 0; i < output_names.size(); ++i) {
        // Fetch the name from the actual operand and not rely on names from
        // outputs as deduping can make them invalid after conversion.
        auto& operand = term->getOpOperand(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
      }
    
      private static class FunctionSpy<I, O> implements Function<I, O> {
        private int applyCount;
        private final Function<I, O> delegate;
    
        public FunctionSpy(Function<I, O> delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public O apply(I input) {
          applyCount++;
          return delegate.apply(input);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
      }
    
      private static class FunctionSpy<I, O> implements Function<I, O> {
        private int applyCount;
        private final Function<I, O> delegate;
    
        public FunctionSpy(Function<I, O> delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public O apply(I input) {
          applyCount++;
          return delegate.apply(input);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Creates a {@code HashMap} instance, with a high enough "initial capacity" that it <i>should</i>
       * hold {@code expectedSize} elements without growth. This behavior cannot be broadly guaranteed,
       * but it is observed to be true for OpenJDK 1.7. It also can't be guaranteed that the method
       * isn't inadvertently <i>oversizing</i> the returned map.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Creates a {@code HashMap} instance, with a high enough "initial capacity" that it <i>should</i>
       * hold {@code expectedSize} elements without growth. This behavior cannot be broadly guaranteed,
       * but it is observed to be true for OpenJDK 1.7. It also can't be guaranteed that the method
       * isn't inadvertently <i>oversizing</i> the returned map.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    	go func() {
    		defer wg.Done()
    		for i := 0; i < updates; i++ {
    			dependent := &node{}
    			gc.dependencyGraphBuilder.addDependentToOwners(logger, dependent, []metav1.OwnerReference{{UID: ownerUID}})
    			gc.dependencyGraphBuilder.removeDependentFromOwners(dependent, []metav1.OwnerReference{{UID: ownerUID}})
    		}
    	}()
    	go func() {
    		defer wg.Done()
    		for i := 0; i < updates; i++ {
    			gc.attemptToOrphan.Add(owner)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top