Search Options

Results per page
Sort
Preferred Languages
Advance

Results 531 - 540 of 4,671 for asString (0.73 sec)

  1. generics.go

    	Preload(association string, query func(db PreloadBuilder) error) ChainInterface[T]
    	Select(query string, args ...interface{}) ChainInterface[T]
    	Omit(columns ...string) ChainInterface[T]
    	MapColumns(m map[string]string) ChainInterface[T]
    	Distinct(args ...interface{}) ChainInterface[T]
    	Group(name string) ChainInterface[T]
    	Having(query interface{}, args ...interface{}) ChainInterface[T]
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. cmd/common-main.go

    			case <-GlobalContext.Done():
    				return
    			}
    		}
    	}()
    }
    
    type envKV struct {
    	Key   string
    	Value string
    	Skip  bool
    }
    
    func (e envKV) String() string {
    	if e.Skip {
    		return ""
    	}
    	return fmt.Sprintf("%s=%s", e.Key, e.Value)
    }
    
    func parsEnvEntry(envEntry string) (envKV, error) {
    	envEntry = strings.TrimSpace(envEntry)
    	if envEntry == "" {
    		// Skip all empty lines
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

        private String testFieldWithMessage;
    
        // Test field with groups
        @CustomSize(groups = { TestGroup.class })
        private String testFieldWithGroups;
    
        // Test field with payload
        @CustomSize(payload = { TestPayload.class })
        private String testFieldWithPayload;
    
        // Test method with CustomSize annotation
        @CustomSize(minKey = "method.min", maxKey = "method.max")
        public String testMethod() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

        /** accessType */
        protected String accessType;
    
        /** clientIp */
        protected String clientIp;
    
        /** hitCount */
        protected Long hitCount;
    
        /** hitCountRelation */
        protected String hitCountRelation;
    
        /** languages */
        protected String languages;
    
        /** queryId */
        protected String queryId;
    
        /** queryOffset */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Cache for page paths */
        protected final Map<String, String> pageCacheMap = new ConcurrentHashMap<>();
    
        /** Initial facet parameter mappings */
        protected final Map<String, String> initFacetParamMap = new HashMap<>();
    
        /** Initial geographic parameter mappings */
        protected final Map<String, String> initGeoParamMap = new HashMap<>();
    
        /** List of facet query views */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

                headers.put(name, value);
            }
    
            @Override
            public void setIntHeader(String name, int value) {
            }
    
            @Override
            public void addIntHeader(String name, int value) {
            }
    
            @Override
            public java.util.Collection<String> getHeaders(String name) {
                return java.util.Collections.emptyList();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java

      public void testEmptyBuilder() {
        ImmutableBiMap<String, Integer> map = new Builder<String, Integer>().build();
        assertEquals(Collections.<String, Integer>emptyMap(), map);
        assertEquals(Collections.<Integer, String>emptyMap(), map.inverse());
        assertSame(ImmutableBiMap.of(), map);
      }
    
      public void testSingletonBuilder() {
        ImmutableBiMap<String, Integer> map = new Builder<String, Integer>().put("one", 1).build();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            log.info("Set health check interval to {} ms", millis);
        }
    
        /**
         * Get current pool statistics
         * @return pool statistics string
         */
        public String getPoolStatistics() {
            return String.format("Pool statistics: Active=%d, NonPooled=%d, MaxSize=%d, Failures=%d, HealthChecks=%d, Removed=%d",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

            String expected = "[testParam, null]";
            assertEquals(expected, param.toString());
        }
    
        public void test_toString_withEmptyValues() {
            // Test toString with empty values
            String name = "emptyParam";
            String[] values = {};
            RequestParameter param = new RequestParameter(name, values);
    
            String expected = "[emptyParam, []]";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

            final Map<String, List<String>> paramListMap = new HashMap<>();
            final String[] pairs = queryString.split("&");
            try {
                for (final String pair : pairs) {
                    final int pos = pair.indexOf('=');
                    if (pos >= 0) {
                        final String key = urlCodec.decode(pair.substring(0, pos), enc);
                        List<String> list = paramListMap.get(key);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top