Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 962 for doPing (0.11 sec)

  1. src/crypto/ecdsa/ecdsa.go

    	randutil.MaybeReadByte(rand)
    
    	if boring.Enabled && rand == boring.RandReader {
    		x, y, d, err := boring.GenerateKeyECDSA(c.Params().Name)
    		if err != nil {
    			return nil, err
    		}
    		return &PrivateKey{PublicKey: PublicKey{Curve: c, X: bbig.Dec(x), Y: bbig.Dec(y)}, D: bbig.Dec(d)}, nil
    	}
    	boring.UnreachableExceptTests()
    
    	switch c.Params() {
    	case elliptic.P224().Params():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

         * <p>The default {@link AbstractFuture} implementation throws {@code InterruptedException} if
         * the current thread is interrupted before or during the call, even if the value is already
         * available.
         *
         * @throws InterruptedException if the current thread was interrupted before or during the call
         *     (optional but recommended).
         * @throws CancellationException {@inheritDoc}
         */
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/grappler/grappler.h

    // Infer OpInfo::TensorProperties for graph nodes inputs/outputs.
    //
    // Typical use case, is to infer tensor properties from a graph, before doing
    // optimization pass. Nodes modified during optimization pass have to be
    // invalidated, to prevent further incorrect optimizations based on wrong shape
    // and data type properties.
    typedef struct TF_GraphProperties TF_GraphProperties;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    - `Created during configuration` represents tasks created using the configuration avoidance APIs, but were realized explicitly (via `TaskProvider#get()`) or implicitly using the eager task query APIs.
    - Both `Created immediately` and `Created during configuration` numbers are considered "bad" numbers that should be minimized as much as possible.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/internal/trace/summary.go

    		if ev.Kind() == EventTaskBegin {
    			task.Start = ev
    		} else {
    			task.End = ev
    		}
    		// Initialize the parent, if one exists and it hasn't been done yet.
    		// We need to avoid doing it twice, otherwise we could appear twice
    		// in the parent's Children list.
    		if t.Parent != NoTask && task.Parent == nil {
    			parent := s.getOrAddTask(t.Parent)
    			task.Parent = parent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/shift_test.go

    //go:noinline
    func variableShiftOverflow64x8(x int64, y, z uint8) (a, b, c int64) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int64(uint64(x) >> (y + z))
    }
    
    //go:noinline
    func variableShiftOverflow32x8(x int32, y, z uint8) (a, b, c int32) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int32(uint32(x) >> (y + z))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    	// toolchain version during the toolchain switch by the parent
    	// process and cleared in the child process. When set, that indicates
    	// to the child to confirm that it provides the expected toolchain version.
    	targetEnv = "GOTOOLCHAIN_INTERNAL_SWITCH_VERSION"
    
    	// countEnv is a special environment variable
    	// that is incremented during each toolchain switch, to detect loops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/io/io.go

    			return n, err
    		}
    	}
    	return
    }
    
    // Discard is a [Writer] on which all Write calls succeed
    // without doing anything.
    var Discard Writer = discard{}
    
    type discard struct{}
    
    // discard implements ReaderFrom as an optimization so Copy to
    // io.Discard can avoid doing unnecessary work.
    var _ ReaderFrom = discard{}
    
    func (discard) Write(p []byte) (int, error) {
    	return len(p), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. src/encoding/json/scanner.go

    // stateInStringEscU is the state after reading `"\u` during a quoted string.
    func stateInStringEscU(s *scanner, c byte) int {
    	if '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' {
    		s.step = stateInStringEscU1
    		return scanContinue
    	}
    	// numbers
    	return s.error(c, "in \\u hexadecimal character escape")
    }
    
    // stateInStringEscU1 is the state after reading `"\u1` during a quoted string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/custom-response.md

    3. This `yield from` tells the function to iterate over that thing named `file_like`. And then, for each part iterated, yield that part as coming from this generator function.
    
        So, it is a generator function that transfers the "generating" work to something else internally.
    
        By doing it this way, we can put it in a `with` block, and that way, ensure that it is closed after finishing.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top