Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for Smallest (0.13 sec)

  1. src/runtime/mksizeclasses.go

    	// 	and the scaled approximate reciprocal in the case of unsigned
    	// 	integers.
    	//
    	// 	if d is a power of two then
    	// 		Let F ← log₂(d) and c = 1.
    	// 	else
    	// 		Let F ← N + L where L is the smallest integer
    	// 		such that d ≤ (2^(N+L) mod d) + 2^L.
    	// 	end if
    	//
    	// [1] "Faster Remainder by Direct Computation: Applications to
    	// Compilers and Software Libraries" Daniel Lemire, Owen Kaser,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/unicode/letter.go

    // SimpleFold iterates over Unicode code points equivalent under
    // the Unicode-defined simple case folding. Among the code points
    // equivalent to rune (including rune itself), SimpleFold returns the
    // smallest rune > r if one exists, or else the smallest rune >= 0.
    // If r is not a valid Unicode code point, SimpleFold(r) returns r.
    //
    // For example:
    //
    //	SimpleFold('A') = 'a'
    //	SimpleFold('a') = 'A'
    //
    //	SimpleFold('K') = 'k'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/SmallCharMatcher.java

      /**
       * 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.
       */
      @VisibleForTesting
      static int chooseTableSize(int setSize) {
        if (setSize == 1) {
          return 2;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/support.go

    	panic(fmt.Sprintf(format, args...))
    }
    
    // deltaNewFile is a magic line delta offset indicating a new file.
    // We use -64 because it is rare; see issue 20080 and CL 41619.
    // -64 is the smallest int that fits in a single byte as a varint.
    const deltaNewFile = -64
    
    // Synthesize a token.Pos
    type fakeFileSet struct {
    	fset  *token.FileSet
    	files map[string]*fileInfo
    }
    
    type fileInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

    import org.gradle.internal.serialize.Encoder;
    import org.gradle.internal.serialize.Serializer;
    
    /**
     * Since Gradle creates a high volume of progress events, this serializer trades simplicity
     * for the smallest possible serialized form. It uses a single byte indicating the presence of optional
     * fields instead of writing an "absent" byte for each of them like most of our serializers do.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. internal/s3select/sql/value_test.go

    			want:   math.Inf(-1),
    			wantOK: false,
    		},
    		{
    			name: "smallest-pos",
    			fields: fields{
    				value: []byte(strconv.FormatFloat(math.SmallestNonzeroFloat64, 'g', -1, 64)),
    			},
    			want:   math.SmallestNonzeroFloat64,
    			wantOK: true,
    		},
    		{
    			name: "smallest-pos",
    			fields: fields{
    				value: []byte(strconv.FormatFloat(-math.SmallestNonzeroFloat64, 'g', -1, 64)),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. src/compress/flate/huffman_bit_writer.go

    		return
    	}
    	// Indicate that we are a fixed Huffman block
    	var value int32 = 2
    	if isEof {
    		value = 3
    	}
    	w.writeBits(value, 3)
    }
    
    // writeBlock will write a block of tokens with the smallest encoding.
    // The original input can be supplied, and if the huffman encoded data
    // is larger than the original bytes, the data will be written as a
    // stored block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/dist/main.go

    		}
    	}
    
    	if gohostarch == "arm" || gohostarch == "mips64" || gohostarch == "mips64le" {
    		maxbg = min(maxbg, runtime.NumCPU())
    	}
    	// For deterministic make.bash debugging and for smallest-possible footprint,
    	// pay attention to GOMAXPROCS=1.  This was a bad idea for 1.4 bootstrap, but
    	// the bootstrap version is now 1.17+ and thus this is fine.
    	if runtime.GOMAXPROCS(0) == 1 {
    		maxbg = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/internal/sys/arch.go

    	// compiling a jump table.
    	CanJumpTable bool
    
    	// HasLR indicates that this architecture uses a link register
    	// for calls.
    	HasLR bool
    
    	// FixedFrameSize is the smallest possible offset from the
    	// hardware stack pointer to a local variable on the stack.
    	// Architectures that use a link register save its value on
    	// the stack in the function prologue and so always have a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          allEntries.addAll(normalValues);
          SortedSet<E> set = delegate.create(allEntries.toArray());
    
          return createSubSet(set, firstExclusive, lastExclusive);
        }
    
        /** Calls the smallest subSet overload that filters out the extreme values. */
        SortedSet<E> createSubSet(SortedSet<E> set, E firstExclusive, E lastExclusive) {
          if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top