Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for maxargs (0.19 sec)

  1. cmd/object-handlers_test.go

    	testCases := []struct {
    		fault            Fault
    		partNumberMarker string
    		maxParts         string
    		expectedErr      APIError
    	}{
    		// Test case - 1.
    		// case where a signature mismatch is introduced and the response is validated.
    		{
    			fault:            BadSignature,
    			partNumberMarker: "",
    			maxParts:         "",
    			expectedErr:      signatureMismatchErr,
    		},
    
    		// Test case - 2.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		OA.ObjectParts.MaxParts = opts.MaxParts
    		partsLength := len(objInfo.Parts)
    		OA.ObjectParts.PartsCount = partsLength
    
    		if opts.MaxParts > -1 {
    			for i, v := range objInfo.Parts {
    				if v.Number <= opts.PartNumberMarker {
    					continue
    				}
    
    				if len(OA.ObjectParts.Parts) == opts.MaxParts {
    					break
    				}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	}
    
    	for _, name := range policy.ExposeHeaders {
    		errs = appendErrors(errs, ValidateHTTPHeaderName(name))
    	}
    
    	if policy.MaxAge != nil {
    		errs = appendErrors(errs, agent.ValidateDuration(policy.MaxAge))
    		if policy.MaxAge.Nanos > 0 {
    			errs = multierror.Append(errs, errors.New("max_age duration is accurate only to seconds precision"))
    		}
    	}
    
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

            .addHeader("Cache-Control: s-maxage=60")
            .addHeader("Cache-Control: max-age=180")
            .build(),
        )
      }
    
      @Test
      fun maxAgePreferredOverHigherMaxAge() {
        assertNotCached(
          MockResponse.Builder()
            .addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES))
            .addHeader("Cache-Control: s-maxage=180")
            .addHeader("Cache-Control: max-age=60")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		LowThresholdPercent:  int(kubeCfg.ImageGCLowThresholdPercent),
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) {
    		imageGCPolicy.MaxAge = kubeCfg.ImageMaximumGCAge.Duration
    	} else if kubeCfg.ImageMaximumGCAge.Duration != 0 {
    		klog.InfoS("ImageMaximumGCAge flag enabled, but corresponding feature gate is not enabled. Ignoring flag.")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax). type: string type: object type: array exposeHeaders: description: A list of HTTP headers that the browsers are allowed to access. items: type: string type: array maxAge: description: Specifies how long the results of a preflight request can be cached. type: string type: object delegate: description: Delegate is used to specify the particular VirtualService which can be used to define delegate HTTPRoute. properties:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top