Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,405 for delete1 (0.16 sec)

  1. src/internal/types/testdata/check/builtins0.go

    	copy(f3()) // ERROR "too many arguments"
    }
    
    func delete1() {
    	var m map[string]int
    	var s string
    	delete() // ERROR "not enough arguments"
    	delete(1) // ERROR "not enough arguments"
    	delete(1, 2, 3) // ERROR "too many arguments"
    	delete(m, 0 /* ERROR "cannot use" */)
    	delete(m, s)
    	_ = delete /* ERROR "used as value" */ (m, s)
    
    	var t []map[string]string
    	delete(t... /* ERROR "invalid use of ..." */ )
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    			obj, deleted, err := r.Delete(ctx, name, rest.AdmissionToValidateObjectDeleteFunc(admit, staticAdmissionAttrs, scope), options)
    			wasDeleted = deleted
    			return obj, err
    		})
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    		span.AddEvent("Object deleted from database")
    
    		status := http.StatusOK
    		// Return http.StatusAccepted if the resource was not deleted immediately and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            ex.suppressed.collect { it.message } == ["ROOT CAUSE"]
        }
    
        def "reports failed to delete child files and reports a reasonable number of retries after failure to delete directory"() {
    
            given:
            def targetDir = tmpDir.createDir("target")
            def deletable = targetDir.createFile("delete.yes")
            def nonDeletable = targetDir.createFile("delete.no")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/delete_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			// Inject deleter into the controller and call syncVolume. The
    			// deleter simulates one delete() call that succeeds.
    			test: wrapTestWithReclaimCalls(operationDelete, []error{nil}, testSyncVolume),
    		},
    		{
    			// PV requires external deleter
    			name:            "8-10-1 - external deleter when volume is dynamic provisioning",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. docs/bucket/replication/DESIGN.md

    case of versioned deletes a.k.a permanent delete of a version by doing a `mc rm --version-id` on a object, replication implementation marks a object version permanently deleted as `PENDING` purge and deletes the version from source after syncing to the target and ensuring target version is deleted. The delete marker being deleted or object version being deleted will still be visible on listing with `mc ls --versions` until the sync is completed. Objects marked as deleted will not be accessible via `GET`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            files[1].assertDoesNotExist()
    
            and: // deletes empty parent directories
            findFiles(cacheDir, 'resources-*/*').isEmpty()
            findFiles(cacheDir, 'files-*/*').isEmpty()
        }
    
        @ToBeFixedForConfigurationCache(because = "does not re-download missing artifacts")
        def "downloads deleted files again when they are referenced"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/internal/concurrent/hashtriemap.go

    				i.mu.Unlock()
    				return
    			}
    			if n.isEntry {
    				// What we saw is still true, so we can continue with the delete.
    				break
    			}
    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// Try to delete the entry.
    	e, deleted := n.entry().compareAndDelete(key, old, ht.keyEqual, ht.valEqual)
    	if !deleted {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/MoreFiles.java

        }
      }
    
      /**
       * Deletes all files within the directory at the given {@code path} {@linkplain #deleteRecursively
       * recursively}. Does not delete the directory itself. Deletes symbolic links, not their targets
       * (subject to the caveat below). If {@code path} itself is a symbolic link to a directory, that
       * link is followed and the contents of the directory it targets are deleted.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    	if curPod.DeletionTimestamp != nil {
    		// when a pod is deleted gracefully it's deletion timestamp is first modified to reflect a grace period,
    		// and after such time has passed, the kubelet actually deletes it from the store. We receive an update
    		// for modification of the deletion timestamp and expect an rs to create more replicas asap, not wait
    		// until the kubelet actually deletes the pod. This is different from the Phase of a pod changing, because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// returned error value err when the specified resource is not found.
    	// Delete *may* return the object that was deleted, or a status object indicating additional
    	// information about deletion.
    	// It also returns a boolean which is set to true if the resource was instantly
    	// deleted or false if it will be deleted asynchronously.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top