Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,123 for Value (0.02 sec)

  1. internal/s3select/sql/value.go

    func FromTimestamp(t time.Time) *Value {
    	return &Value{value: t}
    }
    
    // FromNull creates a Value with Null value
    func FromNull() *Value {
    	return &Value{value: nil}
    }
    
    // FromMissing creates a Value with Missing value
    func FromMissing() *Value {
    	return &Value{value: Missing{}}
    }
    
    // FromBytes creates a Value from a []byte
    func FromBytes(b []byte) *Value {
    	return &Value{value: b}
    }
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 20.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${a";
            assertEquals(value, ResourceUtil.resolve(value));
    
            value = "$a}";
            assertEquals(value, ResourceUtil.resolve(value));
    
            value = "${abc}";
            assertEquals(value, ResourceUtil.resolve(value));
    
            value = "${abc.xyz}";
            assertEquals(value, ResourceUtil.resolve(value));
    
            System.setProperty("abc", "123");
    
            value = "${abc}";
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 2.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("", value);
    
            value = FessFunctions.maskEmail("aaa bbb ccc");
            assertEquals("aaa bbb ccc", value);
    
            value = FessFunctions.maskEmail("******@****.***");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("******@****.***");
            assertEquals("******@****.***", value);
    
            value = FessFunctions.maskEmail("111 ******@****.*** 222");
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

            registerModifiedProperty("departmentNumber");
            this.departmentNumber = value;
        }
    
        public String getDescription() {
            checkSpecifiedProperty("description");
            return convertEmptyToNull(description);
        }
    
        public void setDescription(String value) {
            registerModifiedProperty("description");
            this.description = value;
        }
    
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 22.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/Maps.java

         * @param <VALUE>
         *            <code>Map</code>の値ーの型
         * @param key
         *            <code>Map</code>に追加されるキー
         * @param value
         *            <code>Map</code>に追加される値
         * @return 指定されたキーと値を持つ{@link IdentityHashMap}を構築するための{@literal Maps}
         */
        public static <KEY, VALUE> Maps<KEY, VALUE> identityHashMap(final KEY key, final VALUE value) {
            return new Maps<>(new IdentityHashMap<KEY, VALUE>()).$(key, value);
        }
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

            <match value="0x5" type="big32" offset="4"/>
            <match value="0x6" type="big32" offset="4"/>
            <match value="0x7" type="big32" offset="4"/>
            <match value="0x8" type="big32" offset="4"/>
            <match value="0x9" type="big32" offset="4"/>
            <match value="0xA" type="big32" offset="4"/>
            <match value="0xB" type="big32" offset="4"/>
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-13 08:18
    - 320.1K bytes
    - Viewed (1)
  7. manifests/addons/dashboards/istio-mesh-dashboard.gen.json

                         "id": "byName",
                         "options": "Value #requests"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Requests"
                         },
                         {
                            "id": "decimals",
                            "value": 2
                         },
                         {
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-07-26 23:54
    - 22.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

        public void setQueryId(String value) {
            registerModifiedProperty("queryId");
            this.queryId = value;
        }
    
        public Integer getQueryOffset() {
            checkSpecifiedProperty("queryOffset");
            return queryOffset;
        }
    
        public void setQueryOffset(Integer value) {
            registerModifiedProperty("queryOffset");
            this.queryOffset = value;
        }
    
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 12.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/Tuple3.java

     * @param <T1>
     *            The type of the first value
     * @param <T2>
     *            The type of the second value
     * @param <T3>
     *            The type of the third value
     */
    public class Tuple3<T1, T2, T3> {
    
        /** The first value */
        protected T1 value1;
    
        /** The second value */
        protected T2 value2;
    
        /** The third value */
        protected T3 value3;
    
        /**
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 4.6K bytes
    - Viewed (0)
  10. cmd/metrics-v2_test.go

    	}
    	if value := capitalPutObjects[0].Value; value != 1 {
    		t.Errorf("Expected le='0.050' api=PutObject value to be 1 but got '%v'", value)
    	}
    	if le := capitalPutObjects[1].VariableLabels["le"]; le != "5.000" {
    		t.Errorf("Expected le='5.000' api=PutObject metrics but got '%v'", le)
    	}
    	if value := capitalPutObjects[1].Value; value != 2 {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 6.8K bytes
    - Viewed (0)
Back to top