Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for invalidating (0.23 sec)

  1. cmd/object-handlers_test.go

    		objectName string
    		accessKey  string
    		secretKey  string
    		// expected output.
    		expectedRespStatus int // expected response status body.
    	}{
    		// Test case - 1.
    		// Fetching stat info of object and validating it.
    		{
    			bucketName:         bucketName,
    			objectName:         objectName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    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/server_test.go

    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    	// executing the HTTP request.
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// validating the response status code.
    	c.Assert(response.StatusCode, http.StatusOK)
    	// reading the response body.
    	// response body is expected to have the copied content of the first uploaded object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    				t.Errorf("expected success for %s: %v", k, errs)
    			}
    
    			// Update validation should pass same success cases
    			// copy to avoid polluting the testcase object, set a resourceVersion to allow validating update, and test a no-op update
    			v = *v.DeepCopy()
    			v.ResourceVersion = "1"
    			if errs := ValidateCronJobUpdate(&v, &v, corevalidation.PodValidationOptions{}); len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    	dependGlobalBackgroundHealState bool
    	dependBucketTargetSys           bool
    }
    
    // RegisterRead register the metrics populator function to be used
    // to populate new values upon cache invalidation.
    func (g *MetricsGroupV2) RegisterRead(read func(context.Context) []MetricV2) {
    	g.metricsCache = cachevalue.NewFromFunc(g.cacheInterval,
    		cachevalue.Opts{ReturnLastGood: true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    type alwaysValidatingDeny struct{}
    
    func (alwaysValidatingDeny) Validate(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	return admission.NewForbidden(a, errors.New("Validating admission control is denying all modifications"))
    }
    
    func (alwaysValidatingDeny) Handles(operation admission.Operation) bool {
    	return true
    }
    
    var _ admission.ValidationInterface = &alwaysValidatingDeny{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    99707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"007-expected.png","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"cell-pref-width-invalidation-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"append-cells-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // # Configuration for downloading non-public code
    //
    // The go command defaults to downloading modules from the public Go module
    // mirror at proxy.golang.org. It also defaults to validating downloaded modules,
    // regardless of source, against the public Go checksum database at sum.golang.org.
    // These defaults work well for publicly available source code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    retrieve certificates for the pods in the cluster. # CSR clients such as the Istio Agent and ingress gateways can use this to specify the CA endpoint. caAddress: "" # Used to locate istiod. istioNamespace: istio-system # Configure the policy for validating JWT. # Currently, two options are supported: "third-party-jwt" and "first-party-jwt". jwtPolicy: "third-party-jwt" # Mesh ID means Mesh Identifier. It should be unique within the scope where # meshes will interact with each other, but it is not...
    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