Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for delete1 (0.24 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    					APIVersions: []string{"a"},
    					Resources:   []string{"a"},
    				},
    			}},
    		},
    		}, true),
    		expectedError: `Unsupported value: ""`,
    	}, {
    		name: "operation must be either create/update/delete/connect",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			Rules: []admissionregistration.RuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 2.
    		// Attempt to delete an object which is already deleted.
    		// Still should return http response status 204.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. fastapi/applications.py

            Add a *path operation* using an HTTP DELETE operation.
    
            ## Example
    
            ```python
            from fastapi import FastAPI
    
            app = FastAPI()
    
            @app.delete("/items/{item_id}")
            def delete_item(item_id: str):
                return {"message": "Item deleted"}
            ```
            """
            return self.router.delete(
                path,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            outputDir1.assertExists()
            outputDir2.assertExists()
            gcFile.lastModified() >= SECONDS.toMillis(beforeCleanup)
        }
    
        def "cache cleanup does not delete entries that are currently being created"() {
            given:
            requireOwnGradleUserHomeDir() // needs its own journal
            blockingHttpServer.start()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                        ${
                switch (type) {
                    case FileType.Missing:
                        return """
                                    outputs.${method}('this_file_does_not.exist').delete()
    
                                """
                    case FileType.Directory:
                        return """
                                    def output = outputs.${method}('directory')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    				},
    			},
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{
    					v1.ResourceMemory: 512 * mb,
    				},
    			},
    		},
    		{
    			description: "should delete the container assignment and update the machine state",
    			assignments: state.ContainerMemoryAssignments{
    				"pod1": map[string][]state.Block{
    					"container1": {
    						{
    							NUMAAffinity: []int{0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					t.Errorf("expected only ErrorTypeInvalid errors, but got: %v", err)
    					continue
    				}
    				matched := false
    				for expected := range unmatched {
    					if strings.Contains(err.Error(), expected) {
    						delete(unmatched, expected)
    						matched = true
    						break
    					}
    				}
    				if !matched {
    					t.Errorf("expected error to contain one of %v, but got: %v", unmatched, err)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // Setting the GOCACHE environment variable overrides this default,
    // and running 'go env GOCACHE' prints the current cache directory.
    //
    // The go command periodically deletes cached data that has not been
    // used recently. Running 'go clean -cache' deletes all cached data.
    //
    // The build cache correctly accounts for changes to Go source files,
    // compilers, compiler options, and so on: cleaning the cache explicitly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      tf_executor.graph {
        // expected-remark@above {{ID: 7}}
        %island = tf_executor.island {
            // expected-remark@above {{ID: 5}}
            // expected-remark@above {{Successors: {6}}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    <p>
    The built-in function <code>delete</code> removes the element with key
    <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
    type of <code>k</code> must be <a href="#Assignability">assignable</a>
    to the key type of <code>m</code>.
    </p>
    
    <pre class="grammar">
    delete(m, k)  // remove element m[k] from map m
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top