Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for maxargs (0.72 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go

    // license that can be found in the LICENSE file.
    
    //go:build (386 || amd64 || amd64p32) && gc
    
    package cpu
    
    // cpuid is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32)
    
    // xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 499 bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_windows.go

    )
    
    func addMaxRSS(w io.Writer) {
    	var m windows.PROCESS_MEMORY_COUNTERS
    	p, _ := syscall.GetCurrentProcess()
    	err := windows.GetProcessMemoryInfo(p, &m, uint32(unsafe.Sizeof(m)))
    	if err == nil {
    		fmt.Fprintf(w, "# MaxRSS = %d\n", m.PeakWorkingSetSize)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 20:04:21 UTC 2022
    - 505 bytes
    - Viewed (0)
  3. src/net/http/cookie_test.go

    		{Name: "quoted0", Value: "none", MaxAge: 30},
    		{Name: "quoted1", Value: "cookieValue", MaxAge: 31},
    		{Name: "quoted2", Value: "cookieAV"},
    		{Name: "quoted3", Value: "both"},
    	}
    	if len(got) != len(want) {
    		t.Fatalf("got %d cookies, want %d", len(got), len(want))
    	}
    	for i, w := range want {
    		g := got[i]
    		if g.Name != w.Name || g.Value != w.Value || g.MaxAge != w.MaxAge {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go

    func NewBalancedAllocation(_ context.Context, baArgs runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	args, ok := baArgs.(*config.NodeResourcesBalancedAllocationArgs)
    	if !ok {
    		return nil, fmt.Errorf("want args to be of type NodeResourcesBalancedAllocationArgs, got %T", baArgs)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        @Override
        CacheConfigurationsInternal getCaches();
    
        /**
         * This is a version of {@link Settings#include(String...)} for just one argument.
         * If varargs get supoprted in Declarative DSL this overload will no longer be needed.
         */
        @Adding
        @Incubating
        default void include(String projectPath) {
            include(new String[] {projectPath});
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_gc_manager.go

    	if im.policy.MaxAge == 0 {
    		return images, nil
    	}
    
    	// Wait until the MaxAge has passed since the Kubelet has started,
    	// or else we risk prematurely garbage collecting images.
    	if freeTime.Sub(beganGC) <= im.policy.MaxAge {
    		return images, nil
    	}
    	var deletionErrors []error
    	remainingImages := make([]evictionInfo, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/CompositePublicationArtifactSet.java

        private final FileCollection files;
    
        @SafeVarargs
        @SuppressWarnings("varargs")
        public CompositePublicationArtifactSet(TaskDependencyFactory taskDependencyFactory, Class<T> type, PublicationArtifactSet<T>... artifactSets) {
            super(CompositeDomainObjectSet.create(type, artifactSets));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/AndSpec.java

     */
    public class AndSpec<T> extends CompositeSpec<T> {
        public static final AndSpec<?> EMPTY = new AndSpec<>();
    
        public AndSpec() {
            super();
        }
    
        @SafeVarargs
        @SuppressWarnings("varargs")
        public AndSpec(Spec<? super T>... specs) {
            super(specs);
        }
    
        public AndSpec(Iterable<? extends Spec<? super T>> specs) {
            super(specs);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    	result.UploadID = uploadID
    	result.MaxParts = maxParts
    	result.PartNumberMarker = partNumberMarker
    	result.UserDefined = cloneMSS(fi.Metadata)
    	result.ChecksumAlgorithm = fi.Metadata[hash.MinIOMultipartChecksum]
    
    	if partNumberMarker < 0 {
    		partNumberMarker = 0
    	}
    
    	// Limit output to maxPartsList.
    	if maxParts > maxPartsList-partNumberMarker {
    		maxParts = maxPartsList - partNumberMarker
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

            val expectedInvokeResult = Any()
            val delegate = mock<GroovyObject> {
                on { invokeMethod(eq("nest"), any()) }.thenAnswer {
                    val varargs = uncheckedCast<Array<Any?>>(it.getArgument(1))
                    val closure = uncheckedCast<Closure<Any>?>(varargs[0])
                    ConfigureUtil
                        .configureUsing<Any>(closure)
                        .execute(nestedDelegate)
                    expectedInvokeResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top