Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for arrayValue (0.09 sec)

  1. 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)
  2. 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)
  3. src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java

            final ElevateWord[] elevateWords = new ElevateWord[sourceArray.length];
            for (int i = 0; i < elevateWords.length; i++) {
                final Object elevateWord = sourceArray[i].get(FieldNames.ARRAY_VALUE);
                final Object boost = sourceArray[i].get(ELEVATE_WORD_BOOST);
                @SuppressWarnings("unchecked")
                final List<String> readings = (List<String>) sourceArray[i].get(ELEVATE_WORD_READING);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        public static final String FIELDS = "fields";
        public static final String LANGUAGES = "languages";
    
        public static final String ARRAY_KEY = "key";
        public static final String ARRAY_VALUE = "value";
    
        public static final String ANALYZER_SETTINGS_TYPE = "settingsType";
        public static final String ANALYZER_SETTINGS_FIELD_NAME = "fieldName";
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. 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