Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 195 for i$ (0.05 sec)

  1. 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)
  2. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"05ffa71bb02e855de1aaee1777b3bdbaf7507646f19c4c6aa29933d0",
    		"Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			body, err := ioutil.ReadAll(resp.Body)
    			if err != nil {
    				t.Errorf("%d: unexpected error: %v", i, err)
    				continue
    			}
    			t.Logf("%d: body: %s", i, string(body))
    			continue
    		}
    		if !simpleStorage.namespacePresent {
    			t.Errorf("%d: namespace not set", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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. 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)
  10. 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)
Back to top