Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for Initial (0.72 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       * @throws IllegalArgumentException if {@code initialCapacity} is negative
       * @throws IllegalStateException if an initial capacity was already set
       */
      @CanIgnoreReturnValue
      public CacheBuilder<K, V> initialCapacity(int initialCapacity) {
        checkState(
            this.initialCapacity == UNSET_INT,
            "initial capacity was already set to %s",
            this.initialCapacity);
        checkArgument(initialCapacity >= 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
        }
    
        private ResolverResults resolveGraphForBuildDependenciesIfRequired() {
            assertIsResolvable();
            return currentResolveState.update(initial -> {
                if (!initial.isPresent()) {
                    try {
                        return Optional.of(resolver.resolveBuildDependencies(this));
                    } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    	proxier.mu.Lock()
    	proxier.servicesSynced = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	//     */mips(le)         31         4MB           1   512  (2KB)
    
    	// heapArenaBytes is the size of a heap arena. The heap
    	// consists of mappings of size heapArenaBytes, aligned to
    	// heapArenaBytes. The initial heap mapping is one arena.
    	//
    	// This is currently 64MB on 64-bit non-Windows and 4MB on
    	// 32-bit and on Windows. We use smaller arenas on Windows
    	// because all committed memory is charged to the process,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .admonitionblock td.icon i {
    	align-items: center;
    	background-position-x: .5em;
    	display: inline-flex;
    	filter: invert(100%);
    	padding-left: 2em;
    	vertical-align: initial;
    	width: auto
    }
    
    .admonitionblock td.icon i::after {
    	content: attr(title);
    	filter: invert(100%);
    	font-style: normal;
    	font-weight: bold;
    	margin: -.05em;
    	padding: 0 .5em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	unwindPrintErrors unwindFlags = 1 << iota
    
    	// unwindSilentErrors silently ignores errors during unwinding.
    	unwindSilentErrors
    
    	// unwindTrap indicates that the initial PC and SP are from a trap, not a
    	// return PC from a call.
    	//
    	// The unwindTrap flag is updated during unwinding. If set, frame.pc is the
    	// address of a faulting instruction instead of the return address of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	activeQ           = "Active"
    	backoffQ          = "Backoff"
    	unschedulablePods = "Unschedulable"
    
    	preEnqueue = "PreEnqueue"
    )
    
    const (
    	// DefaultPodInitialBackoffDuration is the default value for the initial backoff duration
    	// for unschedulable pods. To change the default podInitialBackoffDurationSeconds used by the
    	// scheduler, update the ComponentConfig value in defaults.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                            it.value = "mutated"
                        }
                    }
                }
            }
            registry.registerInstance("thing", new Bean(value: "initial"))
    
            when:
            def thing = registry.realize("thing", Bean)
    
            then:
            thing.value == "mutated"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Select1 (Add64carry x y c)) => (ADDZEzero (Select1 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1])))))
    // Fold initial carry bit if 0.
    (ADDE x y (Select1 <typ.UInt64> (ADDCconst (MOVDconst [0]) [-1]))) => (ADDC x y)
    // Fold transfer of CA -> GPR -> CA. Note 2 uses when feeding into a chained Add64carry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	// For hint < 0 overLoadFactor returns false since hint < bucketCnt.
    	B := uint8(0)
    	for overLoadFactor(hint, B) {
    		B++
    	}
    	h.B = B
    
    	// allocate initial hash table
    	// if B == 0, the buckets field is allocated lazily later (in mapassign)
    	// If hint is large zeroing this memory could take a while.
    	if h.B != 0 {
    		var nextOverflow *bmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top