Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for Ufour (0.04 sec)

  1. src/crypto/rsa/rsa.go

    		ok := priv.D.ModInverse(e, totient)
    
    		if ok != nil {
    			priv.Primes = primes
    			priv.N = n
    			break
    		}
    	}
    
    	priv.Precompute()
    	return priv, nil
    }
    
    // incCounter increments a four byte, big-endian counter.
    func incCounter(c *[4]byte) {
    	if c[3]++; c[3] != 0 {
    		return
    	}
    	if c[2]++; c[2] != 0 {
    		return
    	}
    	if c[1]++; c[1] != 0 {
    		return
    	}
    	c[0]++
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    		prettyPrint(buf, r.Extra[k], k)
    	}
    	return buf.String()
    }
    
    func prettyPrint(w io.Writer, x float64, unit string) {
    	// Print all numbers with 10 places before the decimal point
    	// and small numbers with four sig figs. Field widths are
    	// chosen to fit the whole part in 10 places while aligning
    	// the decimal point of all fractional formats.
    	var format string
    	switch y := math.Abs(x); {
    	case y == 0 || y >= 999.95:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // Represents a specific quantization technique's parameters.
    union QuantizationDetails {
      CustomQuantization,
    }
    
    // Parameters for converting a quantized tensor back to float.
    table QuantizationParameters {
      // These four parameters are the asymmetric linear quantization parameters.
      // Given a quantized value q, the corresponding float value f should be:
      //   f = scale * (q - zero_point)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer zero = 0;
      public static final Integer one = 1;
      public static final Integer two = 2;
      public static final Integer three = 3;
      public static final Integer four = 4;
      public static final Integer five = 5;
      public static final Integer six = 6;
      public static final Integer seven = 7;
      public static final Integer eight = 8;
      public static final Integer nine = 9;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    // GoF initializes "frame", a structure containing all of its
    // arguments and slots for p.GoF's results. It calls
    // crosscall2(_cgoexp_GoF, frame, framesize, ctxt) using the gcc ABI.
    //
    // crosscall2 (in cgo/asm_$GOARCH.s) is a four-argument adapter from
    // the gcc function call ABI to the gc function call ABI. At this
    // point we're in the Go runtime, but we're still running on m.g0's
    // stack and outside the $GOMAXPROCS limit. crosscall2 calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // Indicates to write barrier and synchronization task to perform.
    var gcphase uint32
    
    // The compiler knows about this variable.
    // If you change it, you must change builtin/runtime.go, too.
    // If you change the first four bytes, you must also change the write
    // barrier insertion code.
    //
    // writeBarrier should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        return ImmutableList.copyOf(SORTED_NUMBER_NAMES.subList(i, j));
      }
    
      private static final ImmutableList<String> NUMBER_NAMES =
          ImmutableList.of("one", "two", "three", "four", "five", "six", "seven");
    
      private static final ImmutableList<String> SORTED_NUMBER_NAMES =
          Ordering.<String>natural().immutableSortedCopy(NUMBER_NAMES);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    int(3.14)    // 3.14 cannot be represented as an int
    int64(Huge)  // 1267650600228229401496703205376 cannot be represented as an int64
    Four * 300   // operand 300 cannot be represented as an int8 (type of Four)
    Four * 100   // product 400 cannot be represented as an int8 (type of Four)
    </pre>
    
    <p>
    The mask used by the unary bitwise complement operator <code>^</code> matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. src/crypto/internal/bigmod/nat.go

    	}
    
    	out.resetFor(m)
    	out.limbs[0] = 1
    	out.montgomeryRepresentation(m)
    	tmp := NewNat().ExpandFor(m)
    	for _, b := range e {
    		for _, j := range []int{4, 0} {
    			// Square four times. Optimization note: this can be implemented
    			// more efficiently than with generic Montgomery multiplication.
    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    			out.montgomeryMul(out, out, m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    [[working_with_files_in_lazy_properties]]
    == Working with files
    
    In <<working_with_files.adoc#working_with_files,Working with Files>>, we introduced four collection types for `File`-like objects:
    
    [%header%autowidth,compact]
    |===
    | Read-only Type | Configurable Type
    
    | link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top