Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for arrayValue (0.19 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersKotlinIntegrationTest.groovy

            String arrayType
            String arrayValue
    
            static KotlinPrimitiveArrayFixture of(String primitiveType) {
                def kotlinType = primitiveType.toString().capitalize()
                def arrayType = "${kotlinType}Array"
                def primitiveValue = primitiveType == 'boolean'
                    ? 'true'
                    : "42.to${kotlinType}()"
                def arrayValue = "${primitiveType}ArrayOf(${primitiveValue})"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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