Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for deleteRS (0.33 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/deleted v0.1.0
    	example.net/deleted v0.1.0 // redundant
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. cmd/veeam-sos-api.go

    //     Optional value, default 64, range: 1-unlimited
    //
    //   - <S3MultiObjectDeleteLimit>
    //     Some of the Veeam products use Multi Delete operations. This setting can reduce how many objects are included in one
    //     multi-delete operation. The same registry key setting overwrites the storage-defined setting.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-oidc.sh

    fi
    
    ./mc rm minio3/newbucket/README.md
    sleep 5
    
    ./mc stat minio2/newbucket/README.md
    if [ $? -eq 0 ]; then
    	echo "expected file to be deleted, exiting.."
    	exit_1
    fi
    
    ./mc stat minio1/newbucket/README.md
    if [ $? -eq 0 ]; then
    	echo "expected file to be deleted, exiting.."
    	exit_1
    fi
    
    sleep 10
    ./mc stat minio3/newbucket/lrgfile
    if [ $? -ne 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/events.go

    	// AssignedPodDelete is the event when a pod is deleted that causes pods with matching affinity
    	// terms to be more schedulable.
    	AssignedPodDelete = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Delete, Label: "AssignedPodDelete"}
    	// NodeSpecUnschedulableChange is the event when unschedulable node spec is changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/unique/handle.go

    	a, loaded := uniqueMaps.LoadOrStore(typ, m)
    	if !loaded {
    		// Add a cleanup function for the new map.
    		cleanupFuncsMu.Lock()
    		cleanupFuncs = append(cleanupFuncs, func() {
    			// Delete all the entries whose weak references are nil and clean up
    			// deleted entries.
    			m.All()(func(key T, wp weak.Pointer[T]) bool {
    				if wp.Strong() == nil {
    					m.CompareAndDelete(key, wp)
    				}
    				return true
    			})
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. internal/crypto/metadata.go

    func RemoveSSEHeaders(metadata map[string]string) {
    	delete(metadata, xhttp.AmzServerSideEncryption)
    	delete(metadata, xhttp.AmzServerSideEncryptionKmsID)
    	delete(metadata, xhttp.AmzServerSideEncryptionKmsContext)
    	delete(metadata, xhttp.AmzServerSideEncryptionCustomerAlgorithm)
    	delete(metadata, xhttp.AmzServerSideEncryptionCustomerKey)
    	delete(metadata, xhttp.AmzServerSideEncryptionCustomerKeyMD5)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. tests/associations_has_one_test.go

    	// Delete
    	if err := DB.Model(&user2).Association("Account").Delete(&Account{}); err != nil {
    		t.Fatalf("Error happened when delete account, got %v", err)
    	}
    	AssertAssociationCount(t, user2, "Account", 1, "after delete non-existing data")
    
    	if err := DB.Model(&user2).Association("Account").Delete(&account2); err != nil {
    		t.Fatalf("Error happened when delete Account, got %v", err)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/GradleUserHomeCleanupServices.java

    public class GradleUserHomeCleanupServices implements ServiceRegistrationProvider {
    
        public void configure(
            ServiceRegistration registration,
            GlobalScopedCacheBuilderFactory cacheBuilderFactory,
            Deleter deleter,
            GradleUserHomeDirProvider gradleUserHomeDirProvider,
            BuildOperationRunner buildOperationRunner,
            CacheConfigurationsInternal cacheConfigurations,
            ListenerManager listenerManager,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. api/discovery/apis__admissionregistration.k8s.io__v1.json

          "name": "mutatingwebhookconfigurations",
          "namespaced": false,
          "singularName": "mutatingwebhookconfiguration",
          "storageVersionHash": "Sqi0GUgDaX0=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "categories": [
            "api-extensions"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

    /**
     * <p>
     * Wraps individual MojoExecutions, containing information about completion status and scheduling.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public class ExecutionPlanItem {
        private final MojoExecution mojoExecution;
    
        public ExecutionPlanItem(MojoExecution mojoExecution) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top