Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 218 for maxsize (0.41 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeDescriberSelector.java

            AttributeDescriber current = null;
            int maxSize = 0;
            for (AttributeDescriber consumerDescriber : consumerDescribers) {
                int size = Sets.intersection(consumerDescriber.getDescribableAttributes(), consumerAttributeSet).size();
                if (size > maxSize) {
                    // Select the describer which handles the maximum number of attributes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java

        @ValidateTypeFailure
        public Integer maxSize;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Size(max = 1000)
        public String virtualHost;
    
        @Size(max = 255)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
            maxSize = 10;
            boost = 100.0f;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/GuavaBackedClassLoaderCache.java

     */
    public class GuavaBackedClassLoaderCache<K> implements AutoCloseable {
        private final Cache<K, ClassLoader> cache;
    
    
        public GuavaBackedClassLoaderCache(int maxSize) {
            cache = CacheBuilder
                .newBuilder()
                .maximumSize(maxSize)
                .removalListener(new RemovalListener<K, ClassLoader>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/resource/validation/validation.go

    		}
    	}
    	if len(resourceHandles) > maxSize {
    		// Dumping the entire field into the error message is likely to be too long,
    		// in particular when it is already beyond the maximum size. Instead this
    		// just shows the number of entries.
    		allErrs = append(allErrs, field.TooLongMaxLength(fldPath, len(resourceHandles), maxSize))
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. 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)
  7. hack/verify-file-sizes.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    cd "${KUBE_ROOT}"
    
    # Files larger than 1MB need to be allowed explicitly.
    maxsize=$((1 * 1024 * 1024))
    
    # Sorted list of those exceptions.
    allowlist=(
        staging/src/k8s.io/kubectl/images/kubectl-logo-full.png
    )
    
    
    # Files larger than 1MB get reported and verification fails, unless the file is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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 (1)
Back to top