Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 208 for maxargs (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. docs/bucket/quota/README.md

    # Bucket Quota Configuration Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/)
    
    ![quota](https://raw.githubusercontent.com/minio/minio/master/docs/bucket/quota/bucketquota.png)
    
    Buckets can be configured to have `Hard` quota - it disallows writes to the bucket after configured quota limit is reached.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top