Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for floatArray (0.29 sec)

  1. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/ArrayCodecs.kt

            writeLengthPrefixedLongs(this, value)
    
        override suspend fun ReadContext.decode() =
            readLengthPrefixedLongs(this)
    }
    
    
    object FloatArrayCodec : Codec<FloatArray> {
        override suspend fun WriteContext.encode(value: FloatArray) =
            writeLengthPrefixedFloats(this, value)
    
        override suspend fun ReadContext.decode() =
            readLengthPrefixedFloats(this)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "long[]"                             | "[Long.MIN_VALUE, Long.MAX_VALUE]"        | "[-9223372036854775808, 9223372036854775807]"
            "float[]"                            | floatArray()                              | "[1.4E-45, NaN, 3.4028235E38]"
            "double[]"                           | doubleArray()                             | "[4.9E-324, NaN, 1.7976931348623157E308]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "long[]"                             | "[Long.MIN_VALUE, Long.MAX_VALUE]"        | "[-9223372036854775808, 9223372036854775807]"
            "float[]"                            | floatArray()                              | "[1.4E-45, NaN, 3.4028235E38]"
            "double[]"                           | doubleArray()                             | "[4.9E-324, NaN, 1.7976931348623157E308]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue26213/test26213.go

    	_ = x6
    	var x7 C.jbyteArray = 0
    	_ = x7
    	var x8 C.jcharArray = 0
    	_ = x8
    	var x9 C.jshortArray = 0
    	_ = x9
    	var x10 C.jintArray = 0
    	_ = x10
    	var x11 C.jlongArray = 0
    	_ = x11
    	var x12 C.jfloatArray = 0
    	_ = x12
    	var x13 C.jdoubleArray = 0
    	_ = x13
    	var x14 C.jobjectArray = 0
    	_ = x14
    	var x15 C.jweak = 0
    	_ = x15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 835 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/issue26213/jni.h

    typedef jobject jarray;
    typedef jarray jbooleanArray;
    typedef jarray jbyteArray;
    typedef jarray jcharArray;
    typedef jarray jshortArray;
    typedef jarray jintArray;
    typedef jarray jlongArray;
    typedef jarray jfloatArray;
    typedef jarray jdoubleArray;
    typedef jarray jobjectArray;
    
    typedef jobject jweak;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 874 bytes
    - Viewed (0)
  6. src/cmd/fix/jnitype.go

    		case "C.jbyteArray":
    			return true
    		case "C.jcharArray":
    			return true
    		case "C.jshortArray":
    			return true
    		case "C.jintArray":
    			return true
    		case "C.jlongArray":
    			return true
    		case "C.jfloatArray":
    			return true
    		case "C.jdoubleArray":
    			return true
    		case "C.jobjectArray":
    			return true
    		case "C.jweak":
    			return true
    		}
    		return false
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    typedef jobject jarray;
    typedef jarray jbooleanArray;
    typedef jarray jbyteArray;
    typedef jarray jcharArray;
    typedef jarray jshortArray;
    typedef jarray jintArray;
    typedef jarray jlongArray;
    typedef jarray jfloatArray;
    typedef jarray jdoubleArray;
    typedef jarray jobjectArray;
    
    typedef jobject jweak;
    
    // Note: jvalue is already a non-pointer type due to it being a C union.
    
    // issue 22958
    
    typedef struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    2. The object types from Java's JNI interface:
    
    	jobject
    	jclass
    	jthrowable
    	jstring
    	jarray
    	jbooleanArray
    	jbyteArray
    	jcharArray
    	jshortArray
    	jintArray
    	jlongArray
    	jfloatArray
    	jdoubleArray
    	jobjectArray
    	jweak
    
    3. The EGLDisplay and EGLConfig types from the EGL API.
    
    These types are uintptr on the Go side because they would otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top