Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for lineFor (0.18 sec)

  1. src/runtime/sema.go

    	// Try to find the g that needs to be notified.
    	// If it hasn't made it to the list yet we won't find it,
    	// but it won't park itself once it sees the new notify number.
    	//
    	// This scan looks linear but essentially always stops quickly.
    	// Because g's queue separately from taking numbers,
    	// there may be minor reorderings in the list, but we
    	// expect the g we're looking for to be near the front.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    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)
      // For other quantization types, the QuantizationDetails below is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

    # does not run on Windows nodes.
    #
    # Note: This step is O(#nodes^2) as we check if each node is present in the list of succeeded nodes.
    # Making it linear would add code complexity without much benefit (as it just takes ~1s for 5k nodes).
    # Assumes:
    #   NODE_NAMES
    # Sets:
    #   NON_LOGEXPORTED_NODES
    function find_non_logexported_nodes() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. src/runtime/iface.go

    	if cheaprand()&uint32(oldC.Mask) != 0 {
    		// As cache gets larger, choose to update it less often
    		// so we can amortize the cost of building a new cache
    		// (that cost is linear in oldc.Mask).
    		return case_, tab
    	}
    
    	// Make a new cache.
    	newC := buildInterfaceSwitchCache(oldC, t, case_, tab)
    
    	// Update cache. Use compare-and-swap so if multiple threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Hashing.java

          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Arrays.hashCode(functions);
        }
      }
    
      /**
       * Linear CongruentialGenerator to use for consistent hashing. See
       * http://en.wikipedia.org/wiki/Linear_congruential_generator
       */
      private static final class LinearCongruentialGenerator {
        private long state;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSet.java

      private static final int CUTOFF = (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
       * with linear probing in its implementation. The returned size is the smallest power of two that
       * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/Hashing.java

          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Arrays.hashCode(functions);
        }
      }
    
      /**
       * Linear CongruentialGenerator to use for consistent hashing. See
       * http://en.wikipedia.org/wiki/Linear_congruential_generator
       */
      private static final class LinearCongruentialGenerator {
        private long state;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    //
    // Variable and function names, as well as code layout, are selected to
    // facilitate reviewing the implementation against the NIST FIPS 203 ipd
    // document.
    //
    // Reviewers unfamiliar with polynomials or linear algebra might find the
    // background at https://words.filippo.io/kyber-math/ useful.
    
    import (
    	"crypto/rand"
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    
    	"golang.org/x/crypto/sha3"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

    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)
      // For other quantization types, the QuantizationDetails below is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    	// doublings, and switch to square-and-double once the exponent is large
    	// enough to justify the cost of the multiplications.
    
    	// The threshold is selected experimentally as a linear function of n.
    	threshold := n / 4
    
    	// We calculate how many of the most-significant bits of the exponent we can
    	// compute before crossing the threshold, and we do it with doublings.
    	i := bits.UintSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top