Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for jbooleanArray (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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