Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 444 for alocale (0.18 sec)

  1. src/cmd/compile/internal/ssa/op.go

    //	CMPQ b, c
    //	JA   fail2
    //	CMPQ a, b
    //	JA   fail3
    //
    // fail1: CALL panicSlice3Acap (c, cap)
    // fail2: CALL panicSlice3B (b, c)
    // fail3: CALL panicSlice3C (a, b)
    //
    // When we register allocate that code, we want the same register to be used for
    // the first arg of panicSlice3Acap and the second arg to panicSlice3B. That way,
    // initializing that register once will satisfy both calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. pkg/api/v1/resource/helpers.go

    // as an API change.
    func PodRequests(pod *v1.Pod, opts PodResourcesOptions) v1.ResourceList {
    	// attempt to reuse the maps if passed, or allocate otherwise
    	reqs := reuseOrClearResourceList(opts.Reuse)
    
    	var containerStatuses map[string]*v1.ContainerStatus
    	if opts.InPlacePodVerticalScalingEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.util.Collection;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Optional;
    import java.util.Set;
    import java.util.function.Supplier;
    import java.util.stream.Collectors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/stackalloc.go

    			}
    
    			if names[v.ID] == empty {
    				if f.pass.debug > stackDebug {
    					fmt.Printf("stackalloc value %s to name %s\n", v, *name)
    				}
    				names[v.ID] = *name
    			}
    		}
    	}
    
    	// Allocate args to their assigned locations.
    	for _, v := range f.Entry.Values {
    		if !hasAnyArgOp(v) {
    			continue
    		}
    		if v.Aux == nil {
    			f.Fatalf("%s has nil Aux\n", v.LongString())
    		}
    		if v.Op == OpArg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	`MallocedMemBlock::MallocedMemBlock`,
    	`_M_allocate`,
    	`__builtin_(vec_)?delete`,
    	`__builtin_(vec_)?new`,
    	`__gnu_cxx::new_allocator::allocate`,
    	`__libc_malloc`,
    	`__malloc_alloc_template::allocate`,
    	`allocate`,
    	`cpp_alloc`,
    	`operator new(\[\])?`,
    	`simple_alloc::allocate`,
    }, `|`)
    
    var allocSkipRxStr = strings.Join([]string{
    	// Preserve Go runtime frames that appear in the middle/bottom of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeConnection.java

     */
    package jcifs.smb;
    
    
    import java.io.IOException;
    import java.net.UnknownHostException;
    import java.util.Arrays;
    import java.util.EnumSet;
    import java.util.Locale;
    import java.util.Objects;
    import java.util.Random;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicLong;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/pod_devices.go

    	allCDIDevices := sets.New[string]()
    	// Loops through AllocationResponses of all cached device resources.
    	for _, devices := range resources {
    		resp := devices.allocResp
    		// Each Allocate response has the following artifacts.
    		// Environment variables
    		// Mount points
    		// Device files
    		// Container annotations
    		// CDI device IDs
    		// These artifacts are per resource per container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertTrue(options.isBreakIterator());
        }
    
        @Test
        public void testFluentLocale() {
            final String localeValue = "nl";
            assertEquals(options, options.locale(localeValue));
            assertEquals(localeValue, options.getLocale());
        }
    
        @Test
        public void testFluentEncoding() {
            final String encodingValue = "UTF-8";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

        private static final DateTimeZone GMT = new FixedDateTimeZone("GMT", "GMT", 0, 0)
        private static final DateTimeFormatter RCF_3339_DATE_FORMAT = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
            .withLocale(Locale.US)
            .withZone(GMT)
    
        private static final String DATE_HEADER = 'Mon, 29 Sep 2014 11:04:27 GMT'
        private static final String SERVER_GCS = 'GCS'
    
        TestDirectoryProvider testDirectoryProvider
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/RateLimiter.java

    import com.google.common.util.concurrent.SmoothRateLimiter.SmoothWarmingUp;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.time.Duration;
    import java.util.Locale;
    import java.util.concurrent.TimeUnit;
    import javax.annotation.CheckForNull;
    
    /**
     * A rate limiter. Conceptually, a rate limiter distributes permits at a configurable rate. Each
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top