Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 121 for purego (0.1 sec)

  1. helm-releases/minio-5.2.0.tgz

    `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} stat 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 OBJECTLOCKING=$5 # 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...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. helm-releases/minio-4.1.0.tgz

    `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 OBJECTLOCKING=$5 # 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...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Oct 24 20:37:05 UTC 2022
    - 20K bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugin/plugin_test.go

    		},
    
    		{
    			name:      "It should delete expired credential during purge",
    			step:      18 * time.Minute,
    			keyLength: 0,
    			// while get call for random, cache purge will be called and it will delete expired
    			// image3 credentials. We cannot use image3 as getKey here, as it will get deleted during
    			// get only, we will not be able verify the purge call.
    			getKey: "random",
    			cacheEntry: cacheEntry{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Used for declaring implementation dependencies for all variants of the main component (see <<sec:swift_library_api_vs_implementation,API vs implementation section>>).
    This is where you should declare dependencies which are purely internal and not meant to be exposed to consumers of any variants.
    
    `main__Variant__Implementation` (e.g. `mainDebugImplementation` and `mainReleaseImplementation`) extends `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                }
    
                if (!plugin.isExtensions()
                        && artifacts.size() == 1
                        && artifacts.get(0).getFile() != null) {
                    /*
                     * This is purely for backward-compat with 2.x where <extensions> consisting of a single artifact where
                     * loaded into the core and hence available to plugins, in contrast to bigger extensions that were
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

     * latest strategy nor a ivy instance is set, an IllegalStateException will be thrown when calling
     * accept(). Note that it can't work with latest time strategy, cause no time is known for the
     * limits of the range. Therefore only purely revision based LatestStrategy can be used.
     */
    public class VersionRangeSelector extends AbstractVersionVersionSelector {
        private static final String OPEN_INC = "[";
    
        private static final String OPEN_EXC = "]";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/prune.go

    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleBindingStr},
    	}
    	// AllClusterResources lists all cluster scope resources types which should be deleted in purge case, including CRD.
    	AllClusterResources = append(ClusterResources,
    		schema.GroupVersionKind{Group: "apiextensions.k8s.io", Version: "v1", Kind: name.CRDStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Used for declaring implementation dependencies for all variants of the main component (see <<sec:cpp_library_api_vs_implementation,API vs implementation section>>).
    This is where you should declare dependencies which are purely internal and not meant to be exposed to consumers of any variants.
    
    `main__Variant__Implementation` (e.g. `mainDebugImplementation` and `mainReleaseImplementation`) extends `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. src/path/filepath/path.go

    	"io/fs"
    	"os"
    	"slices"
    )
    
    const (
    	Separator     = os.PathSeparator
    	ListSeparator = os.PathListSeparator
    )
    
    // Clean returns the shortest path name equivalent to path
    // by purely lexical processing. It applies the following rules
    // iteratively until no further processing can be done:
    //
    //  1. Replace multiple [Separator] elements with a single one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. internal/http/headers.go

    	// Header indicates if the delete marker should be preserved by client
    	MinIOSourceDeleteMarker = "x-minio-source-deletemarker"
    
    	// Header indicates if the delete marker version needs to be purged.
    	MinIOSourceDeleteMarkerDelete = "x-minio-source-deletemarker-delete"
    
    	// Header indicates permanent delete replication status.
    	MinIODeleteReplicationStatus = "X-Minio-Replication-Delete-Status"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top