Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 444 for alocale (0.3 sec)

  1. src/runtime/arena_test.go

    	}
    }
    
    func runSubTestUserArenaNew[S comparable](t *testing.T, value *S, parallel bool) {
    	t.Run(reflect.TypeOf(value).Elem().Name(), func(t *testing.T) {
    		if parallel {
    			t.Parallel()
    		}
    
    		// Allocate and write data, enough to exhaust the arena.
    		//
    		// This is an underestimate, likely leaving some space in the arena. That's a good thing,
    		// because it gives us coverage of boundary cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        GradleExecuter withDefaultCharacterEncoding(String defaultCharacterEncoding);
    
        /**
         * Sets the default locale to use.
         *
         * Only makes sense for forking executers.
         *
         * @return this executer
         */
        GradleExecuter withDefaultLocale(Locale defaultLocale);
    
        /**
         * Set the number of seconds an idle daemon should live for.
         *
         * @return this executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

    import java.net.URI;
    import java.nio.charset.StandardCharsets;
    import java.util.ArrayList;
    import java.util.Comparator;
    import java.util.HashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    public class DependencyVerifierBuilder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. src/runtime/map_fast32.go

    				continue
    			}
    			inserti = i
    			insertb = b
    			goto done
    		}
    		ovf := b.overflow(t)
    		if ovf == nil {
    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/runtime/mcache.go

    	// Alternatively, instead of making sure we do this on every P
    	// between starting the world and allocating on that P, we
    	// could leave allocate-black on, allow allocation to continue
    	// as usual, use a ragged barrier at the beginning of sweep to
    	// ensure all cached spans are swept, and then disable
    	// allocate-black. However, with this approach it's difficult
    	// to avoid spilling mark bits into the *next* GC cycle.
    	sg := mheap_.sweepgen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/runtime/os_freebsd.go

    // Called on the parent thread (main thread in case of bootstrap), can allocate memory.
    func mpreinit(mp *m) {
    	mp.gsignal = malg(32 * 1024)
    	mp.gsignal.m = mp
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    	getg().m.procid = uint64(thr_self())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator.go

    	// rate limited requeues on errors
    	queue workqueue.RateLimitingInterface
    }
    
    var _ CIDRAllocator = &rangeAllocator{}
    
    // NewCIDRRangeAllocator returns a CIDRAllocator to allocate CIDRs for node (one from each of clusterCIDRs)
    // Caller must ensure subNetMaskSize is not less than cluster CIDR mask size.
    // Caller must always pass in a list of existing nodes so the new allocator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    	// Call down into the policy to assign this container CPUs if required.
    	err := m.policy.Allocate(m.state, p, c)
    	if err != nil {
    		klog.ErrorS(err, "Allocate error")
    		return err
    	}
    
    	return nil
    }
    
    func (m *manager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	m.Lock()
    	defer m.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/cidrallocator.go

    	if err != nil {
    		return err
    	}
    	return allocator.AllocateService(service, ip)
    }
    
    func (c *MetaAllocator) Allocate(ip net.IP) error {
    	allocator, err := c.getAllocator(ip)
    	if err != nil {
    		return err
    	}
    	return allocator.Allocate(ip)
    }
    
    func (c *MetaAllocator) AllocateNextService(service *api.Service) (net.IP, error) {
    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

     */
    package org.codelibs.fess.rank.fusion;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top