Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,202 for arrayT (0.14 sec)

  1. test/gcgort.go

    		return errors.New("modifier without name")
    	case a.t == nil:
    		return errors.New(a.name + " missing t")
    	case a.pointerT == nil:
    		return errors.New(a.name + " missing pointerT")
    	case a.arrayT == nil:
    		return errors.New(a.name + " missing arrayT")
    	case a.sliceT == nil:
    		return errors.New(a.name + " missing sliceT")
    	case a.mapT == nil:
    		return errors.New(a.name + " missing mapT")
    	case a.mapPointerKeyT == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  2. src/encoding/gob/debug.go

    	fmt.Fprintf(os.Stderr, "%stype definition {\n", indent)
    	indent++
    	switch {
    	case wire.ArrayT != nil:
    		deb.printCommonType(indent, "array", &wire.ArrayT.CommonType)
    		fmt.Fprintf(os.Stderr, "%slen %d\n", indent+1, wire.ArrayT.Len)
    		fmt.Fprintf(os.Stderr, "%selemid %d\n", indent+1, wire.ArrayT.Elem)
    	case wire.MapT != nil:
    		deb.printCommonType(indent, "map", &wire.MapT.CommonType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/encoding/gob/decode.go

    	case reflect.String:
    		return fw == tString
    	case reflect.Interface:
    		return fw == tInterface
    	case reflect.Array:
    		if !ok || wire.ArrayT == nil {
    			return false
    		}
    		array := wire.ArrayT
    		return t.Len() == array.Len && dec.compatibleType(t.Elem(), array.Elem, inProgress)
    	case reflect.Map:
    		if !ok || wire.MapT == nil {
    			return false
    		}
    		MapType := wire.MapT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    func (w *wireType) string() string {
    	const unknown = "unknown type"
    	if w == nil {
    		return unknown
    	}
    	switch {
    	case w.ArrayT != nil:
    		return w.ArrayT.Name
    	case w.SliceT != nil:
    		return w.SliceT.Name
    	case w.StructT != nil:
    		return w.StructT.Name
    	case w.MapT != nil:
    		return w.MapT.Name
    	case w.GobEncoderT != nil:
    		return w.GobEncoderT.Name
    	case w.BinaryMarshalerT != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. src/encoding/gob/doc.go

    operation will fail.
    
    Structs, arrays and slices are also supported. Structs encode and decode only
    exported fields. Strings and arrays of bytes are supported with a special,
    efficient representation (see below). When a slice is decoded, if the existing
    slice has capacity the slice will be extended in place; if not, a new array is
    allocated. Regardless, the length of the resulting slice reports the number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

                    int _arrays = _src.dec_ndr_long();
                    int _arrayi = _src.index;
                    _src.advance(4 * _arrays);
    
                    if (array == null) {
                        if (_arrays < 0 || _arrays > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                        array = new ShareInfo0[_arrays];
                    }
                    _src = _src.derive(_arrayi);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 18.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

                int _arrayp = _src.dec_ndr_long();
    
                if ( _arrayp != 0 ) {
                    _src = _src.deferred;
                    int _arrays = _src.dec_ndr_long();
                    int _arrayi = _src.index;
                    _src.advance(4 * _arrays);
    
                    if ( this.array == null ) {
                        if ( _arrays < 0 || _arrays > 0xFFFF )
                            throw new NdrException(NdrException.INVALID_CONFORMANCE);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 19.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayUtil.java

            assertArgumentNotNull("array", array);
            final boolean[] newArray = (boolean[]) Array.newInstance(boolean.class, array.length + 1);
            System.arraycopy(array, 0, newArray, 0, array.length);
            newArray[array.length] = value;
            return newArray;
        }
    
        /**
         * {@literal byte}配列の末尾に{@literal byte}の値を追加した配列を返します。
         *
         * @param array
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        assertThat(Bytes.concat(ARRAY1)).isEqualTo(ARRAY1);
        assertThat(Bytes.concat(ARRAY1)).isNotSameInstanceAs(ARRAY1);
        assertThat(Bytes.concat(EMPTY, ARRAY1, EMPTY)).isEqualTo(ARRAY1);
        assertThat(Bytes.concat(ARRAY1, ARRAY1, ARRAY1))
            .isEqualTo(new byte[] {(byte) 1, (byte) 1, (byte) 1});
        assertThat(Bytes.concat(ARRAY1, ARRAY234))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/LongsTest.java

        assertThat(Longs.concat(ARRAY1)).isEqualTo(ARRAY1);
        assertThat(Longs.concat(ARRAY1)).isNotSameInstanceAs(ARRAY1);
        assertThat(Longs.concat(EMPTY, ARRAY1, EMPTY)).isEqualTo(ARRAY1);
        assertThat(Longs.concat(ARRAY1, ARRAY1, ARRAY1))
            .isEqualTo(new long[] {(long) 1, (long) 1, (long) 1});
        assertThat(Longs.concat(ARRAY1, ARRAY234))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top