Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,292 for JPoint (0.13 sec)

  1. src/cmd/compile/internal/ssa/testdata/hist.go

    // so that their cost is only the time to "n" through the additional code.
    
    package main
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"strconv"
    	"strings"
    )
    
    type point struct {
    	x, y int
    }
    
    type line struct {
    	begin, end point
    }
    
    var zero int
    var sink int
    
    //go:noinline
    func tinycall() {
    }
    
    func ensure(n int, sl []int) []int {
    	for len(sl) <= n {
    		sl = append(sl, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

      message Metadata {
        //  Bit number of fixed-point data the target kernel supports.
        int32 num_bits = 1;
        //  The quantized axis index if it is per-axis quantization.
        int32 quantize_axis = 2;
        // The minimum allowed value of the fixed-point data range.
        // This can also be used to derive the sign of storage type.
        int32 range_min = 3;
        // The minimum allowed value of the fixed-point data range.
        int32 range_max = 4;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

      public void testToInt() {
        assertThat(UnsignedBytes.toInt((byte) 0)).isEqualTo(0);
        assertThat(UnsignedBytes.toInt((byte) 1)).isEqualTo(1);
        assertThat(UnsignedBytes.toInt((byte) 127)).isEqualTo(127);
        assertThat(UnsignedBytes.toInt((byte) -128)).isEqualTo(128);
        assertThat(UnsignedBytes.toInt((byte) -127)).isEqualTo(129);
        assertThat(UnsignedBytes.toInt((byte) -1)).isEqualTo(255);
      }
    
      public void testCheckedCast() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * should be kept after compilation has completed. Useful for joint compilation debugging purposes.
         * Defaults to {@code false}.
         */
        @Input
        public boolean isKeepStubs() {
            return keepStubs;
        }
    
        /**
         * Sets whether Java stubs for Groovy classes generated during Java/Groovy joint compilation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Remove Java files in joint compilation'    | ['G', 'J']            | ['G']                         | 'UP-TO-DATE'                 | []                    | ['G', 'G_G']                  | 'Incremental compilation of' | ['G_G']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/os/stat.go

    // If there is an error, it will be of type [*PathError].
    //
    // On Windows, if the file is a reparse point that is a surrogate for another
    // named entity (such as a symbolic link or mounted folder), the returned
    // FileInfo describes the reparse point, and makes no attempt to resolve it.
    func Lstat(name string) (FileInfo, error) {
    	testlog.Stat(name)
    	return lstatNolog(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/GeoInfo.java

                        final String key = e.getKey();
                        for (final String geoField : geoFields) {
                            if (key.startsWith("geo." + geoField + ".")) {
                                final String distanceKey = key.replaceFirst(".point$", ".distance");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/testdata/generics.go

    package generics
    
    type Any any
    
    var x any
    
    type T[A, B any] struct {
    	Left  A
    	Right B
    }
    
    var X T[int, string] = T[int, string]{1, "hi"}
    
    func ToInt[P interface{ ~int }](p P) int { return int(p) }
    
    var IntID = ToInt[int]
    
    type G[C comparable] int
    
    func ImplicitFunc[T ~int]() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 01 19:00:50 UTC 2021
    - 572 bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

      }
    
      @Test fun onlyOneLiteralHeadersFrame() {
        val sentHeaders = headerEntries("name", "value")
        val headerBytes = literalHeaders(sentHeaders)
        writeMedium(frame, headerBytes.size.toInt())
        frame.writeByte(Http2.TYPE_HEADERS)
        frame.writeByte(FLAG_END_HEADERS or FLAG_END_STREAM)
        frame.writeInt(expectedStreamId and 0x7fffffff)
        frame.writeAll(headerBytes)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/const.go

    // value of the given basic type and for the configuration
    // provided (only needed for int/uint sizes).
    //
    // If rounded != nil, *rounded is set to the rounded value of x for
    // representable floating-point and complex values, and to an Int
    // value for integer values; it is left alone otherwise.
    // It is ok to provide the addressof the first argument for rounded.
    //
    // The check parameter may be nil if representableConst is invoked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top