Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 218 for maxsize (0.29 sec)

  1. cluster/gce/windows/common.psm1

        [parameter(Mandatory=$false)] [int]$MaxSize = 100mb,
        # Maximum number of backup archives to maintain.
        [parameter(Mandatory=$false)] [int]$MaxBackups = 5
      )
      $config = [FileRotationConfig]::new()
      $config.Force = $Force
      $config.MaxBackupInterval = $MaxBackupInterval
      $config.MaxSize = $MaxSize
      $config.MaxBackups = $MaxBackups
      return $config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/TimeCheckingClassLoaderCache.java

            public int hashCode() {
                return Objects.hash(file, timestamp);
            }
        }
    
        public TimeCheckingClassLoaderCache(int maxSize) {
            commonParent = new URLClassLoader(new URL[0]);
            cache = new GuavaBackedClassLoaderCache<>(maxSize);
        }
    
        @Override
        public ClassLoader commonParent() {
            return commonParent;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// https://httpwg.org/specs/rfc7541.html#rfc.section.2.3.2
    	table          headerFieldTable
    	size           uint32 // in bytes
    	maxSize        uint32 // current maxSize
    	allowedMaxSize uint32 // maxSize may go up to this, inclusive
    }
    
    func (dt *dynamicTable) setMaxSize(v uint32) {
    	dt.maxSize = v
    	dt.evict()
    }
    
    func (dt *dynamicTable) add(f HeaderField) {
    	dt.table.addEntry(f)
    	dt.size += f.Size()
    	dt.evict()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. 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)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

            }
            return super.sink(file, mustCreate)
          }
        }
    
      /** The maximum number of bytes that this cache should use to store its data. */
      @get:Synchronized @set:Synchronized
      var maxSize: Long = maxSize
        set(value) {
          field = value
          if (initialized) {
            cleanupQueue.schedule(cleanupTask) // Trim the existing store if necessary.
          }
        }
    
      /*
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    		return false // don't allow tags or comments
    	}
    	// only name(s) and type
    	const maxSize = 30 // adjust as appropriate, this is an approximate value
    	namesSize := identListSize(f.Names, maxSize)
    	if namesSize > 0 {
    		namesSize = 1 // blank between names and types
    	}
    	typeSize := p.nodeSize(f.Type, maxSize)
    	return namesSize+typeSize <= maxSize
    }
    
    func (p *printer) setLineComment(text string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. src/runtime/tracebuf.go

    		// less error-prone.
    		return
    	}
    	w.mp.trace.buf[w.gen%2] = w.traceBuf
    }
    
    // ensure makes sure that at least maxSize bytes are available to write.
    //
    // Returns whether the buffer was flushed.
    func (w traceWriter) ensure(maxSize int) (traceWriter, bool) {
    	refill := w.traceBuf == nil || !w.available(maxSize)
    	if refill {
    		w = w.refill(traceNoExperiment)
    	}
    	return w, refill
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/runtime/asm_wasm.s

    TEXT runtime·morestack_noctxt(SB),NOSPLIT,$0
    	MOVD $0, CTXT
    	JMP runtime·morestack(SB)
    
    TEXT ·asmcgocall(SB), NOSPLIT, $0-0
    	UNDEF
    
    #define DISPATCH(NAME, MAXSIZE) \
    	Get R0; \
    	I64Const $MAXSIZE; \
    	I64LeU; \
    	If; \
    		JMP NAME(SB); \
    	End
    
    TEXT ·reflectcall(SB), NOSPLIT, $0-48
    	I64Load fn+8(FP)
    	I64Eqz
    	If
    		CALLNORESUME runtime·sigpanic<ABIInternal>(SB)
    	End
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/kt/CacheResponse.kt

    class CacheResponse(cacheDirectory: File) {
      private val client: OkHttpClient =
        OkHttpClient.Builder()
          .cache(
            Cache(
              directory = cacheDirectory,
              // 1 MiB.
              maxSize = 10L * 1024L * 1024L,
            ),
          )
          .build()
    
      fun run() {
        val request =
          Request.Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top