Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 654 for purged (0.13 sec)

  1. helm-releases/minio-3.4.7.tgz

    code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} ls myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 25 20:49:24 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. helm-releases/minio-3.2.0.tgz

    code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} ls myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 13 02:16:24 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postrm

    ${packaging.scripts.header}
    
    #
    # This script is executed in the post-removal phase
    #
    #   On Debian,
    #       $1=remove    : indicates a removal
    #       $1=purge     : indicates an upgrade
    #
    #   On RedHat,
    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    SOURCE_ENV_FILE=true
    REMOVE_DIRS=false
    REMOVE_SERVICE=false
    REMOVE_USER_AND_GROUP=false
    
    case "$1" in
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

            file("output/merged.txt").text == 'file1,file2'
    
            when:
            run("merge")
    
            then:
            result.assertTasksNotSkipped()
    
            when:
            file("file1-source.txt").text = "new-file1"
            run("merge")
    
            then:
            result.assertTasksNotSkipped(":createFile1", ":merge")
            file("output/merged.txt").text == 'new-file1,file2'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

    import org.gradle.api.Action;
    
    /**
     * Specifies how the entries of multiple manifests should be merged together.
     */
    public interface ManifestMergeSpec {
    
        /**
         * The character set used to decode the merged manifest content.
         * Defaults to UTF-8.
         *
         * @return the character set used to decode the merged manifest content
         * @since 2.14
         */
        String getContentCharset();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // This structure represents a merged island. It includes all of the islands
    // that can be merged together and the point of insertion of the merged island.
    struct MergedIsland {
      // Construct a new island from the given root.
      explicit MergedIsland(IslandOp root) : insert_point(root) {
        islands.push_back(root);
      }
    
      // The insertion point anchor of the merged island, or where the merged island
      // will be inserted when created.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/mdo/merger.vm

            #end
                } else {
                    Map<String, String> merged = new HashMap<>();
                    merged.putAll(sourceDominant ? target.get${capField}() : source.get${capField}());
                    merged.putAll(sourceDominant ? source.get${capField}() : target.get${capField}());
                    builder.${field.name}(merged);
            #if ( $locationTracking )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/proxy_config.go

    	merged := &meshconfig.ProxyConfig{}
    	for i := len(pcs) - 1; i >= 0; i-- {
    		if pcs[i] == nil {
    			continue
    		}
    		proxyConfigYaml, err := protomarshal.ToYAML(pcs[i])
    		if err != nil {
    			continue
    		}
    		mergedConfig, err := mesh.MergeProxyConfig(proxyConfigYaml, merged)
    		if err == nil {
    			continue
    		}
    		merged = mergedConfig
    	}
    	return merged
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. RELEASE_BRANCHES.md

    * All code merged in after the feature freeze must have an associated GitHub issue and a release note (exception for
      unit and integration test changes).
        * The release managers may not know of all the features being worked on for an Istio release. Developers must
          make their case as to why their PR should be merged.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedThreadPoolExecutorImpl.java

            return delegate.getQueue();
        }
    
        @Override
        public boolean remove(Runnable task) {
            return delegate.remove(task);
        }
    
        @Override
        public void purge() {
            delegate.purge();
        }
    
        @Override
        public int getPoolSize() {
            return delegate.getPoolSize();
        }
    
        @Override
        public int getActiveCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top