Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for arrayValue (0.15 sec)

  1. src/encoding/gob/debug.go

    		b := make([]byte, x)
    		deb.r.Read(b)
    		deb.consumed(x)
    		fmt.Fprintf(os.Stderr, "%s%q\n", indent, b)
    	default:
    		panic("unknown builtin")
    	}
    }
    
    // ArrayValue:
    //
    //	uint(n) FieldValue*n
    func (deb *debugger) arrayValue(indent tab, wire *wireType) {
    	elemId := wire.ArrayT.Elem
    	u := deb.uint64()
    	length := int(u)
    	for i := 0; i < length; i++ {
    		deb.fieldValue(indent, elemId)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            // If an element in the array has the same type as the containing array, it's a spread component that needs
            // to be expanded here. (It should have the array element type instead.)
            (constantValue as ArrayValue).value.expandArrayAnnotationValue(containingArrayType, analysisContext)
        } else {
            listOf(constantValue.toKaAnnotationValue(analysisContext))
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. src/encoding/gob/doc.go

    TypedValue:
    	int(typeId) Value
    TypeDefinition:
    	int(-typeId) encodingOfWireType
    Value:
    	SingletonValue | StructValue
    SingletonValue:
    	uint(0) FieldValue
    FieldValue:
    	builtinValue | ArrayValue | MapValue | SliceValue | StructValue | InterfaceValue
    InterfaceValue:
    	NilInterfaceValue | NonNilInterfaceValue
    NilInterfaceValue:
    	uint(0)
    NonNilInterfaceValue:
    	ConcreteTypeName TypeSequence InterfaceContents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

            final String[] valueArray = new String[sourceArray.length];
            for (int i = 0; i < valueArray.length; i++) {
                final Object value = sourceArray[i].get(FieldNames.ARRAY_VALUE);
                if (value != null) {
                    valueArray[i] = value.toString();
                }
            }
            return valueArray;
        }
    
        public void add(final String key, final Object value) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top