Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 444 for alocale (0.26 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    		cgoExport := cgoExports[symName]
    		for _, pprag := range cgoExport {
    			// The export pragmas have the form:
    			//
    			//   cgo_export_* <local> [<remote>]
    			//
    			// If <remote> is omitted, it's the same as
    			// <local>.
    			//
    			// Expand to
    			//
    			//   cgo_export_* <local> <remote> <ABI>
    			if len(*pprag) == 2 {
    				*pprag = append(*pprag, (*pprag)[1])
    			}
    			// Add the ABI argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/runtime/os3_solaris.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
    }
    
    func miniterrno()
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    		pod := makePod("fakePod", "fakeContainer", "2", "2")
    		container := &pod.Spec.Containers[0]
    		mgr.activePods = func() []*v1.Pod { return nil }
    
    		err := mgr.Allocate(pod, container)
    		if !reflect.DeepEqual(err, testCase.expAllocateErr) {
    			t.Errorf("CPU Manager Allocate() error (%v). expected error: %v but got: %v",
    				testCase.description, testCase.expAllocateErr, err)
    		}
    
    		mgr.AddContainer(pod, container, "fakeID")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Chars.java

     * either {@link Character} or {@link Arrays}.
     *
     * <p>All the operations in this class treat {@code char} values strictly numerically; they are
     * neither Unicode-aware nor locale-dependent.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    	}
    	prefixSize := uint64(len(s.prefix))
    
    	var unk runtime.Unknown
    	switch t := obj.(type) {
    	case *runtime.Unknown:
    		estimatedSize := prefixSize + uint64(t.Size())
    		data := memAlloc.Allocate(estimatedSize)
    		i, err := t.MarshalTo(data[prefixSize:])
    		if err != nil {
    			return err
    		}
    		copy(data, s.prefix)
    		_, err = w.Write(data[:prefixSize+uint64(i)])
    		return err
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  6. src/runtime/mgcwork.go

    		if b != nil {
    			b.checkempty()
    		}
    	}
    	// Record that this may acquire the wbufSpans or heap lock to
    	// allocate a workbuf.
    	lockWithRankMayAcquire(&work.wbufSpans.lock, lockRankWbufSpans)
    	lockWithRankMayAcquire(&mheap_.lock, lockRankMheap)
    	if b == nil {
    		// Allocate more workbufs.
    		var s *mspan
    		if work.wbufSpans.free.first != nil {
    			lock(&work.wbufSpans.lock)
    			s = work.wbufSpans.free.first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.EnumSet;
    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.stream.Collectors;
    
    import org.apache.maven.eventspy.AbstractEventSpy;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/runtime/arena.go

    	if !typ.Pointers() {
    		// Allocate pointer-less objects from the tail end of the chunk.
    		v, ok := s.userArenaChunkFree.takeFromBack(size, typ.Align_)
    		if ok {
    			ptr = unsafe.Pointer(v)
    		}
    	} else {
    		v, ok := s.userArenaChunkFree.takeFromFront(size, typ.Align_)
    		if ok {
    			ptr = unsafe.Pointer(v)
    		}
    	}
    	if ptr == nil {
    		// Failed to allocate.
    		mp.mallocing = 0
    		releasem(mp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  9. src/runtime/map_fast64.go

    				continue
    			}
    			insertb = b
    			inserti = i
    			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
    - 14.1K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/GcFinalization.java

    import com.google.common.annotations.J2ktIncompatible;
    import com.google.errorprone.annotations.DoNotMock;
    import com.google.j2objc.annotations.J2ObjCIncompatible;
    import java.lang.ref.WeakReference;
    import java.util.Locale;
    import java.util.concurrent.CancellationException;
    import java.util.concurrent.CountDownLatch;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.Future;
    import java.util.concurrent.TimeoutException;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top