Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for jbooleanArray (0.32 sec)

  1. src/cmd/cgo/internal/test/issue26213/test26213.go

    	_ = x1
    	var x2 C.jclass = 0
    	_ = x2
    	var x3 C.jthrowable = 0
    	_ = x3
    	var x4 C.jstring = 0
    	_ = x4
    	var x5 C.jarray = 0
    	_ = x5
    	var x6 C.jbooleanArray = 0
    	_ = 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 835 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue26213/jni.h

    // On Android NDK16, jobject is defined like this in C and C++
    typedef void* jobject;
    
    typedef jobject jclass;
    typedef jobject jthrowable;
    typedef jobject jstring;
    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;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 874 bytes
    - Viewed (0)
  3. src/cmd/fix/jnitype.go

    		switch s {
    		case "C.jobject":
    			return true
    		case "C.jclass":
    			return true
    		case "C.jthrowable":
    			return true
    		case "C.jstring":
    			return true
    		case "C.jarray":
    			return true
    		case "C.jbooleanArray":
    			return true
    		case "C.jbyteArray":
    			return true
    		case "C.jcharArray":
    			return true
    		case "C.jshortArray":
    			return true
    		case "C.jintArray":
    			return true
    		case "C.jlongArray":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    struct _jobject;
    
    typedef struct _jobject *jobject;
    typedef jobject jclass;
    typedef jobject jthrowable;
    typedef jobject jstring;
    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;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    1. The *Ref types on Darwin, rooted at CoreFoundation's CFTypeRef type.
    
    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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    var jniTypes = map[string]string{
    	"jobject":       "",
    	"jclass":        "jobject",
    	"jthrowable":    "jobject",
    	"jstring":       "jobject",
    	"jarray":        "jobject",
    	"jbooleanArray": "jarray",
    	"jbyteArray":    "jarray",
    	"jcharArray":    "jarray",
    	"jshortArray":   "jarray",
    	"jintArray":     "jarray",
    	"jlongArray":    "jarray",
    	"jfloatArray":   "jarray",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/ArrayCodecs.kt

            writeLengthPrefixedChars(this, value)
    
        override suspend fun ReadContext.decode() =
            readLengthPrefixedChars(this)
    }
    
    
    object BooleanArrayCodec : Codec<BooleanArray> {
        override suspend fun WriteContext.encode(value: BooleanArray) =
            writeLengthPrefixedBooleans(this, value)
    
        override suspend fun ReadContext.decode() =
            readLengthPrefixedBooleans(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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	type maxLengthTest struct {
    		Name                string
    		InputSchema         *schema.Structural
    		ExpectedMaxElements int64
    	}
    	tests := []maxLengthTest{
    		{
    			Name:        "booleanArray",
    			InputSchema: arraySchema("boolean", "", nil),
    			// expected JSON is [true,true,...], so our length should be (maxRequestSizeBytes - 2) / 5
    			ExpectedMaxElements: 629145,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    	type maxLengthTest struct {
    		Name                string
    		InputSchema         *spec.Schema
    		ExpectedMaxElements int64
    	}
    	tests := []maxLengthTest{
    		{
    			Name:        "booleanArray",
    			InputSchema: arraySchema("boolean", "", nil),
    			// expected JSON is [true,true,...], so our length should be (maxRequestSizeBytes - 2) / 5
    			ExpectedMaxElements: 629145,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

            source.closeQuietly()
          }
        }
      }
    
      /** Edits the values for an entry. */
      inner class Editor internal constructor(internal val entry: Entry) {
        internal val written: BooleanArray? = if (entry.readable) null else BooleanArray(valueCount)
        private var done: Boolean = false
    
        /**
         * Prevents this editor from completing normally. This is necessary either when the edit causes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top