Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,632 for JPoint (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

        fun `can handle deeply nested graphs`() {
    
            val deepGraph = Peano.fromInt(1024)
    
            val read = configurationCacheRoundtripOf(deepGraph)
    
            assertThat(
                read.toInt(),
                equalTo(deepGraph.toInt())
            )
        }
    
        @Test
        fun `internal types codec leaves not implemented trace for unsupported types`() {
    
            val unsupportedBean = 42 to "42"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/image/draw/draw_test.go

    				DrawMask(m, image.Rect(x, y, x+1, y+1), src, image.Point{}, nil, image.Point{}, Src)
    			}
    		}
    		check("pixel")
    		// Draw 1 row at a time.
    		c = color.RGBA{0, 22, 0, 255}
    		src = &image.Uniform{C: c}
    		for y := b.Min.Y; y < b.Max.Y; y++ {
    			DrawMask(m, image.Rect(b.Min.X, y, b.Max.X, y+1), src, image.Point{}, nil, image.Point{}, Src)
    		}
    		check("row")
    		// Draw 1 column at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    #include <limits>
    #include <optional>
    
    #include "absl/types/optional.h"
    
    namespace mlir {
    namespace quant {
    
    // Converts a double-precision floating-point multiplier to a quantized
    // multiplier.
    //
    // Args:
    //   double_multiplier: The double-precision floating-point multiplier.
    //
    // Returns:
    //   A quantized multiplier, represented as a pair of integers: the quantized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/examples/stateful/stateful.go

    	// there is no guarantee that there will only one unreserve operation at any
    	// given point in time (for example, during the binding cycle).
    	mp.mu.Lock()
    	defer mp.mu.Unlock()
    	mp.executionPoints = nil
    }
    
    // PreBind is the function invoked by the framework at "prebind" extension
    // point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/math/big/floatconv.go

    	// special-case 0
    	if len(z.mant) == 0 {
    		z.prec = prec
    		z.acc = Exact
    		z.form = zero
    		f = z
    		return
    	}
    	// len(z.mant) > 0
    
    	// The mantissa may have a radix point (fcount <= 0) and there
    	// may be a nonzero exponent exp. The radix point amounts to a
    	// division by b**(-fcount). An exponent means multiplication by
    	// ebase**exp. Finally, mantissa normalization (shift left) requires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

    import javax.annotation.CheckForNull;
    import java.io.PrintStream;
    
    /**
     * An entry point is the point at which execution will never return from.
     * <p>
     * Its purpose is to consistently apply our completion logic of forcing the JVM
     * to exit at a certain point instead of waiting for all threads to die, and to provide
     * some consistent unhandled exception catching.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasFPHP     bool // Half precision floating-point instruction set
    	HasASIMDHP  bool // Advanced SIMD half precision instruction set
    	HasCPUID    bool // CPUID identification scheme registers
    	HasASIMDRDM bool // Rounding double multiply add/subtract instruction set
    	HasJSCVT    bool // Javascript conversion from floating-point to integer
    	HasFCMA     bool // Floating-point multiplication and addition of complex numbers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top