Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,429 for delete1 (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

        /**
         * Deletes files and directories.
         *
         * This will not follow symlinks. If you need to follow symlinks too use [KotlinInitScript.delete].
         *
         * @param paths Any type of object accepted by [KotlinInitScript.file]
         * @return true if anything got deleted, false otherwise
         */
        @Suppress("unused")
        fun delete(vararg paths: Any): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

        private static final String PACKAGE_INFO_CLASS_NAME = "package-info";
    
        private final Deleter deleter;
        private final FileOperations fileOperations;
        private final FileTree sourceTree;
        private final Iterable<FileChange> sourceChanges;
        private final boolean incremental;
    
        public AbstractRecompilationSpecProvider(
            Deleter deleter,
            FileOperations fileOperations,
            FileTree sourceTree,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		// DeleteOptions does not have these fields.
    		delete(inMap, "fieldManager")
    		delete(inMap, "fieldValidation")
    
    		// UpdateOptions does not have these fields.
    		delete(outMap, "gracePeriodSeconds")
    		delete(outMap, "preconditions")
    		delete(outMap, "orphanDependents")
    		delete(outMap, "propagationPolicy")
    
    		// Compare the results.
    		inBytes, err = json.Marshal(inMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. cmd/batch-expire_test.go

            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
        - type: deleted # objects with delete marker as their latest version
          name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/c/experimental/saved_model/public/saved_model_api.h

    //  If status is not OK, returns nullptr. Otherwise, returns a newly created
    //  TF_SavedModel instance. It must be deleted by calling TF_DeleteSavedModel.
    TF_CAPI_EXPORT extern TF_SavedModel* TF_LoadSavedModelWithTags(
        const char* dirname, TFE_Context* ctx, const char* const* tags,
        int tags_len, TF_Status* status);
    
    // Deletes a TF_SavedModel, and frees any resources owned by it.
    TF_CAPI_EXPORT extern void TF_DeleteSavedModel(TF_SavedModel* model);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 5K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	UpdatedAt  time.Time
    }
    
    // SRBucketDeleteOp - type of delete op
    type SRBucketDeleteOp string
    
    const (
    	// MarkDelete creates .minio.sys/buckets/.deleted/<bucket> vol entry to hold onto deleted bucket's state
    	// until peers are synced in site replication setup.
    	MarkDelete SRBucketDeleteOp = "MarkDelete"
    
    	// Purge deletes the .minio.sys/buckets/.deleted/<bucket> vol entry
    	Purge SRBucketDeleteOp = "Purge"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller.go

    	if c.running {
    		go registry.Run(stop)
    	}
    }
    
    // DeleteRegistry deletes specified registry from the aggregated controller
    func (c *Controller) DeleteRegistry(clusterID cluster.ID, providerID provider.ID) {
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    
    	if len(c.registries) == 0 {
    		log.Warnf("Registry list is empty, nothing to delete")
    		return
    	}
    	index, ok := c.getRegistryIndex(clusterID, providerID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

    import org.gradle.api.internal.file.copy.SyncCopyActionDecorator;
    import org.gradle.api.tasks.util.PatternFilterable;
    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.file.Deleter;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Synchronizes the contents of a destination directory with some source directories and files.
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            boolean expectMoreChanges = (changesCount > changesLimit)
    
            when:
            succeeds("theTask")
            inputFiles.each { it.delete() }
    
            then:
            buildTriggeredAndSucceeded()
            sendEOT()
            assertReportsChanges(inputFiles.collect { new ChangeEntry('deleted', it) }, expectMoreChanges)
    
            where:
            changesCount << [1, changesLimit, 11]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top