Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for i$ (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top