Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for vals2 (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. utils/utils.go

    	return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '.' && c != '*' && c != '_' && c != '$' && c != '@'
    }
    
    // CheckTruth check string true or not
    func CheckTruth(vals ...string) bool {
    	for _, val := range vals {
    		if val != "" && !strings.EqualFold(val, "false") {
    			return true
    		}
    	}
    	return false
    }
    
    func ToStringKey(values ...interface{}) string {
    	results := make([]string, len(values))
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:35:55 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

            String name = "getValues";
            String[] values = { "val1", "val2", "val3" };
            RequestParameter param = new RequestParameter(name, values);
    
            String[] retrievedValues = param.getValues();
            assertNotNull(retrievedValues);
            assertEquals(3, retrievedValues.length);
            assertEquals("val1", retrievedValues[0]);
            assertEquals("val2", retrievedValues[1]);
            assertEquals("val3", retrievedValues[2]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  3. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

        /**
         * Sets the level and returns this.
         *
         * This was deprecated in OkHttp 4.0 in favor of the [level] val. In OkHttp 4.3 it is
         * un-deprecated because Java callers can't chain when assigning Kotlin vals. (The getter remains
         * deprecated).
         */
        fun setLevel(level: Level) =
          apply {
            this.level = level
          }
    
        @JvmName("-deprecated_level")
        @Deprecated(
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Nov 07 02:57:33 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	TLBI	VALE2IS, R13                       // ad830cd5
    	TLBI	IPAS2E1, R14                       // 2e840cd5
    	TLBI	IPAS2LE1, R15                      // af840cd5
    	TLBI	VAE2, R16                          // 30870cd5
    	TLBI	VALE2, R17                         // b1870cd5
    	TLBI	VAE3IS, ZR                         // 3f830ed5
    	TLBI	VALE3IS, R19                       // b3830ed5
    	TLBI	VAE3, R20                          // 34870ed5
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 27 20:41:17 GMT 2026
    - 96.2K bytes
    - Click Count (0)
Back to Top