Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for maxsize (0.48 sec)

  1. pkg/controller/nodeipam/node_ipam_controller.go

    		if len(clusterCIDRs) == 0 {
    			return nil, fmt.Errorf("Controller: Must specify --cluster-cidr if --allocate-node-cidrs is set")
    		}
    
    		for idx, cidr := range clusterCIDRs {
    			mask := cidr.Mask
    			if maskSize, _ := mask.Size(); maskSize > nodeCIDRMaskSizes[idx] {
    				return nil, fmt.Errorf("Controller: Invalid --cluster-cidr, mask size of cluster CIDR must be less than or equal to --node-cidr-mask-size configured for CIDR family")
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashSet.java

        Preconditions.checkArgument(expectedSize >= 0, "Expected size must be >= 0");
    
        // Save expectedSize for use in allocArrays()
        this.metadata = Ints.constrainToRange(expectedSize, 1, CompactHashing.MAX_SIZE);
      }
    
      /** Returns whether arrays need to be allocated. */
      boolean needsAllocArrays() {
        return table == null;
      }
    
      /** Handle lazy allocation of arrays. */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                        assertCacheHits(run)
                    }
                }
            }
            val daemonFixture = DaemonLogsAnalyzer.newAnalyzer(executer.daemonBaseDir)
            assertThat(daemonFixture.daemons).hasSize(1)
        }
    
        @Test
        fun `writes build cache entries`() {
            expectCacheEntriesWritten(2, false)
        }
    
        @Test
        fun `writes no build cache entries when script caching disabled`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashSet.java

        Preconditions.checkArgument(expectedSize >= 0, "Expected size must be >= 0");
    
        // Save expectedSize for use in allocArrays()
        this.metadata = Ints.constrainToRange(expectedSize, 1, CompactHashing.MAX_SIZE);
      }
    
      /** Returns whether arrays need to be allocated. */
      boolean needsAllocArrays() {
        return table == null;
      }
    
      /** Handle lazy allocation of arrays. */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    extensions and documentation located in this repository.
    For other extensions and components, see the 
    [Gradle Community Resources](https://gradle.org/resources/).
    
    This guide will help you to...
    
    * maximize the chance of your changes being accepted
    * work on the Gradle code base
    * get help if you encounter trouble
    
    ## Before you start
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. pkg/kube/apimirror/probe.go

    // limitations under the License.
    
    // Package apimirror contains copies of Kubernetes APIs. This allows json serialization, without worrying about
    // importing the massive 15mb+ Kubernetes API libraries.
    // This is intended for import only by istio-agent. Any other binaries (Istiod) should likely import the
    // upstream Kubernetes API instead.
    package apimirror
    
    import (
    	"encoding/json"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/internal/trace/batchcursor.go

    			// Heap invariant already applies.
    			break
    		}
    		heap[i], heap[m] = heap[m], heap[i]
    		i = m
    	}
    	return i
    }
    
    func min3(b []*batchCursor, i0, i1, i2 int) int {
    	minIdx := i0
    	minT := maxTime
    	if i0 < len(b) {
    		minT = b[i0].ev.time
    	}
    	if i1 < len(b) {
    		if t := b[i1].ev.time; t < minT {
    			minT = t
    			minIdx = i1
    		}
    	}
    	if i2 < len(b) {
    		if t := b[i2].ev.time; t < minT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactHashMap.java

        Preconditions.checkArgument(expectedSize >= 0, "Expected size must be >= 0");
    
        // Save expectedSize for use in allocArrays()
        this.metadata = Ints.constrainToRange(expectedSize, 1, CompactHashing.MAX_SIZE);
      }
    
      /** Returns whether arrays need to be allocated. */
      boolean needsAllocArrays() {
        return table == null;
      }
    
      /** Handle lazy allocation of arrays. */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/objfile.go

    func (r *Reloc) fromBytes(b []byte) { copy(r[:], b) }
    
    // Aux symbol info.
    //
    // Serialized format:
    //
    //	Aux struct {
    //	   Type uint8
    //	   Sym  SymRef
    //	}
    type Aux [AuxSize]byte
    
    const AuxSize = 1 + 8
    
    // Aux Type
    const (
    	AuxGotype = iota
    	AuxFuncInfo
    	AuxFuncdata
    	AuxDwarfInfo
    	AuxDwarfLoc
    	AuxDwarfRanges
    	AuxDwarfLines
    	AuxPcsp
    	AuxPcfile
    	AuxPcline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    		plaintext = payload
    	}
    
    	if hc.mac != nil {
    		macSize := hc.mac.Size()
    		if len(payload) < macSize {
    			return nil, 0, alertBadRecordMAC
    		}
    
    		n := len(payload) - macSize - paddingLen
    		n = subtle.ConstantTimeSelect(int(uint32(n)>>31), 0, n) // if n < 0 { n = 0 }
    		record[3] = byte(n >> 8)
    		record[4] = byte(n)
    		remoteMAC := payload[n : n+macSize]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top