- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 2,636 for ALL (0.04 sec)
-
ci/official/upload.sh
# See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== # This script uploads all staged artifacts from all previous builds in the same # job chain to GCS and PyPI. source "${BASH_SOURCE%/*}/utilities/setup.sh" # Update the version numbers for Nightly only, then fetch the version numbers
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jan 24 20:52:12 UTC 2024 - 2.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
buildType(PartialTrigger("All Functional Tests for ${stage.stageName.stageName}", "Stage_${stage.stageName.id}_FuncTests", model, functionalTests)) } val smokeTests = specificBuildTypes.filterIsInstance<SmokeTests>() if (smokeTests.size > 1) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 07 09:17:14 UTC 2024 - 9.5K bytes - Viewed (0) -
ci/official/utilities/setup.sh
# -u: error if undefined variable used # -x: log all commands # -o pipefail: entire command fails if pipe fails. watch out for yes | ... # -o history: record shell history # -o allexport: export all functions and variables to be available to subscripts # (affects 'source $TFCI') set -euxo pipefail -o history -o allexport # Set TFCI_GIT_DIR, the root directory for all commands, to two directories
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 6K bytes - Viewed (0) -
docs/compression/README.md
> [!NOTE] > To enable compression for all content when using environment variables, set either or both of the extensions and MIME types to `*` instead of an empty string: > ```bash > export MINIO_COMPRESSION_ENABLE="on" > export MINIO_COMPRESSION_EXTENSIONS="*" > export MINIO_COMPRESSION_MIME_TYPES="*" > ``` ### 3. Compression + Encryption Combining encryption and compression is not safe in all setups.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 11 11:55:34 UTC 2024 - 5.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
* * @since 3.0-alpha */ public interface ProjectDependencyGraph { /** * Gets all collected projects. * * @return All collected projects. * * @since 3.5.0 */ List<MavenProject> getAllProjects(); /** * Gets all projects in their intended build order, i.e. after topologically sorting the projects according to their * interdependencies. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/en/docs/advanced/security/oauth2-scopes.md
## Use the `scopes` The parameter `security_scopes` will be of type `SecurityScopes`. It will have a property `scopes` with a list containing all the scopes required by itself and all the dependencies that use this as a sub-dependency. That means, all the "dependants"... this might sound confusing, it is explained again later below.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 29 11:02:16 UTC 2024 - 13.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableRangeSet.java
return of(); } else if (range.equals(Range.all())) { return all(); } else { return new ImmutableRangeSet<>(ImmutableList.of(range)); } } /** Returns an immutable range set containing the single range {@link Range#all()}. */ @SuppressWarnings("unchecked") static <C extends Comparable> ImmutableRangeSet<C> all() { return (ImmutableRangeSet<C>) ALL; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 27K bytes - Viewed (0) -
guava/src/com/google/common/io/Resources.java
} /** * Reads all bytes from a URL into a byte array. * * @param url the URL to read from * @return a byte array containing all the bytes from the URL * @throws IOException if an I/O error occurs */ public static byte[] toByteArray(URL url) throws IOException { return asByteSource(url).read(); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/bucket/lifecycle/README.md
Note: This rule has an implicit zero NoncurrentDays, which makes the expiry of those 'extra' noncurrent versions immediate. #### 3.2.b Automatic removal of all versions (MinIO only extension) This is available only on MinIO as an extension to the Expiration feature. The following rule makes it possible to remove all versions of an object under the prefix `user-uploads/` as soon as the latest object satisfies the expiration criteria.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 09 01:45:38 UTC 2024 - 9K bytes - Viewed (0) -
docs/multi-user/README.md
Change the policy for group `newgroup` to `putonly` canned policy. ``` mc admin policy attach myminio putonly --group=newgroup ``` ### 7. List all users or groups List all enabled and disabled users. ``` mc admin user list myminio ``` List all enabled or disabled groups. ``` mc admin group list myminio ``` ### 8. Configure `mc` ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 21 06:38:06 UTC 2023 - 8K bytes - Viewed (0)