Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,201 for maxline (0.18 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultInMemoryCacheDecoratorFactory.java

        private CacheDetails getCache(final String cacheId, final int maxSize) {
            CacheDetails cacheDetails = caches.get(cacheId, () -> {
                Cache<Object, Object> entries = createInMemoryCache(cacheId, maxSize);
                CacheDetails details = new CacheDetails(maxSize, entries, new AtomicReference<>());
                LOG.debug("Creating in-memory store for cache {} (max size: {})", cacheId, maxSize);
                return details;
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache.go

    func NewLRUExpireCacheWithClock(maxSize int, clock Clock) *LRUExpireCache {
    	if maxSize <= 0 {
    		panic("maxSize must be > 0")
    	}
    
    	return &LRUExpireCache{
    		clock:   clock,
    		maxSize: maxSize,
    		entries: map[interface{}]*list.Element{},
    	}
    }
    
    type cacheEntry struct {
    	key        interface{}
    	value      interface{}
    	expireTime time.Time
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsKeyMatchCQ.java

        }
    
        public void setMaxSize_Equal(Integer maxSize) {
            setMaxSize_Term(maxSize, null);
        }
    
        public void setMaxSize_Equal(Integer maxSize, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setMaxSize_Term(maxSize, opLambda);
        }
    
        public void setMaxSize_Term(Integer maxSize) {
            setMaxSize_Term(maxSize, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmImplementation.java

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain;
    
    
    /**
     * Represents a filter for a implementation of a Java Virtual Machine.
     *
     * @since 6.8
     */
    public final class JvmImplementation {
    
        /**
         * Vendor-specific virtual machine implementation.
         *
         * Acts as a placeholder and matches any implementation from any vendor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:40:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    		}
    		if re.Op == OpRepeat {
    			n := re.Max
    			if n == -1 {
    				n = re.Min
    			}
    			if n <= 0 {
    				n = 1
    			}
    			if int64(n) > maxSize/p.repeats {
    				p.repeats = maxSize
    			} else {
    				p.repeats *= int64(n)
    			}
    		}
    		if int64(p.numRegexp) < maxSize/p.repeats {
    			return
    		}
    
    		// We need to start tracking size.
    		// Make the map and belatedly populate it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch_edit.jsp

                                        <label for="maxSize" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.key_match_size"/></label>
                                        <div class="form-inline col-sm-9">
                                            <la:errors property="maxSize"/>
                                            <input type="number" name="maxSize" id="maxSize"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6K bytes
    - Viewed (0)
  7. docs/fr/docs/deployment/manually.md

    Lorsqu'on se réfère à la machine distante, il est courant de l'appeler **serveur**, mais aussi **machine**, **VM** (machine virtuelle), **nœud**. Tout cela fait référence à un type de machine distante, exécutant  Linux, en règle générale, sur laquelle vous exécutez des programmes.
    
    
    ## Installer le programme serveur
    
    Vous pouvez installer un serveur compatible ASGI avec :
    
    === "Uvicorn"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

         */
        public boolean isCommunicationAddress(InetAddress address) {
            try {
                synchronized (lock) {
                    init();
                    return communicationAddresses.contains(address);
                }
            } catch (Exception e) {
                throw new RuntimeException("Could not determine the IP addresses for this machine.", e);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/unicode/utf16/utf16.go

    package utf16
    
    // The conditions replacementChar==unicode.ReplacementChar and
    // maxRune==unicode.MaxRune are verified in the tests.
    // Defining them locally avoids this package depending on package unicode.
    
    const (
    	replacementChar = '\uFFFD'     // Unicode replacement character
    	maxRune         = '\U0010FFFF' // Maximum valid Unicode code point.
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/internal/osinfo/os_unix.go

    	}
    
    	sysname := unix.ByteSliceToString(uts.Sysname[:])
    	release := unix.ByteSliceToString(uts.Release[:])
    	version := unix.ByteSliceToString(uts.Version[:])
    	machine := unix.ByteSliceToString(uts.Machine[:])
    
    	return sysname + " " + release + " " + version + " " + machine, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 666 bytes
    - Viewed (0)
Back to top