Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for maxSize (1.13 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/KeyMatch.java

            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "KeyMatch [boost=" + boost + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", maxSize=" + maxSize
                    + ", query=" + query + ", term=" + term + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta="
                    + docMeta + "]";
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java

        @Deprecated
        protected void getTransfer(Resource resource, File destination, InputStream input, boolean closeInput, int maxSize)
                throws TransferFailedException {
            addTransfer("getTransfer " + resource.getName());
            super.getTransfer(resource, destination, input, closeInput, maxSize);
        }
    
        public void get(String resourceName, File destination)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/KeyMatchDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnMaxSize = cci("maxSize", "maxSize", null, null, Integer.class, "maxSize", null, false, false, false,
                "Integer", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String term;
    
        public String query;
    
        public String maxSize;
    
        public String boost;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
            allRecordCount = 0;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_key_match.json

                "type" : "float"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "maxSize" : {
                "type" : "integer"
              },
              "query" : {
                "type" : "keyword"
              },
              "term" : {
                "type" : "keyword"
              },
              "updatedBy" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/compress/flate/flate_test.go

    		// where Read will fail to return an early io.EOF.
    		windowSize * 1, windowSize * 2, windowSize * 3,
    	}
    
    	var maxSize int
    	for _, n := range testSizes {
    		if maxSize < n {
    			maxSize = n
    		}
    	}
    
    	readBuf := make([]byte, 40)
    	data := make([]byte, maxSize)
    	for i := range data {
    		data[i] = byte(i)
    	}
    
    	for _, sz := range testSizes {
    		if testing.Short() && sz > windowSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_config.key_match/key_match.json

    {
        "properties": {
          "term": {
            "type": "keyword"
          },
          "query": {
            "type": "keyword"
          },
          "maxSize": {
            "type": "integer"
          },
          "boost": {
            "type": "float"
          },
          "virtualHost": {
            "type": "keyword"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 516 bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_details.jsp

                                        <tr>
                                            <th><la:message key="labels.key_match_size"/></th>
                                            <td>${f:h(maxSize)}<la:hidden property="maxSize"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.key_match_boost"/></th>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java

                new MessageDigestHashFunction(algorithmName, bytes, algorithmName).hashBytes(input));
          }
          try {
            int maxSize = digest.getDigestLength();
            new MessageDigestHashFunction(algorithmName, maxSize + 1, algorithmName);
            fail();
          } catch (IllegalArgumentException expected) {
          }
        } catch (NoSuchAlgorithmException nsae) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// ReadFile reads the given file in the file tree corresponding to revision rev.
    	// It should refuse to read more than maxSize bytes.
    	//
    	// If the requested file does not exist it should return an error for which
    	// os.IsNotExist(err) returns true.
    	ReadFile(ctx context.Context, rev, file string, maxSize int64) (data []byte, err error)
    
    	// ReadZip downloads a zip file for the subdir subdirectory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top