Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for quicksort (0.19 sec)

  1. docs/logging/README.md

      - Set number the object operation was performed on.
      - The list of drives participating in this operation belong to the set.
    
    ## Explore Further
    
    - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

            executer.inDirectory(relativeDir).run()
    
            then:
            noExceptionThrown()
        }
    
        @Requires(UnitTestPreconditions.CaseInsensitiveFs)
        def "canonicalizes working directory on case insensitive file system"() {
            testProject()
    
            when:
            def mixedCaseDir = new File(testDirectory, "JAVA/QuickStart")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. docs/distributed/README.md

    ### 1. Prerequisites
    
    Install MinIO either on Kubernetes or Distributed Linux.
    
    Install MinIO on Kubernetes:
    
    - [MinIO Quickstart Guide for Kubernetes](https://min.io/docs/minio/kubernetes/upstream/index.html#quickstart-for-kubernetes).
    - [Deploy a Tenant from the MinIO Operator](https://min.io/docs/minio/kubernetes/upstream/operations/install-deploy-manage/deploy-minio-tenant.html)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GrettySmokeTest.groovy

                dependencies {
                    implementation group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
                }
    
                gretty {
                    contextPath = 'quickstart'
    
                    httpPort = new ServerSocket(0).withCloseable { socket -> socket.getLocalPort() }
                    integrationTestTask = 'checkContainerUp'
                    servletContainer = '${grettyConfig.servletContainer}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/README.md

    This document explains how to setup Prometheus and configure it to scrape data from MinIO servers.
    
    ## Prerequisites
    
    To get started with MinIO, refer [MinIO QuickStart Document](https://min.io/docs/minio/linux/index.html#quickstart-for-linux).
    Follow below steps to get started with MinIO monitoring using Prometheus.
    
    ### 1. Download Prometheus
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. docs/compression/README.md

    Typically, enabling compression on spinning disk systems
    will increase speed when the content can be compressed.
    
    ## Get Started
    
    ### 1. Prerequisites
    
    Install MinIO - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux).
    
    ### 2. Run MinIO with compression
    
    Compression can be enabled by updating the `compress` config settings for MinIO server config.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

        body.writeTo(bodyContent)
    
        val reader = MultipartReader(bodyContent, "boundary")
    
        val quickPart = reader.nextPart()!!
        assertThat(quickPart.headers).isEqualTo(
          headersOf(
            "Content-Type",
            "text/plain; charset=utf-8",
          ),
        )
        assertThat(quickPart.body.readUtf8()).isEqualTo("Quick")
    
        val brownPart = reader.nextPart()!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    == Usage
    
    To use the Ivy Publish Plugin, include the following in your build script:
    
    .Applying the Ivy Publish Plugin
    ====
    include::sample[dir="snippets/ivy-publish/quickstart/kotlin",files="build.gradle.kts[tags=use-plugin]"]
    include::sample[dir="snippets/ivy-publish/quickstart/groovy",files="build.gradle[tags=use-plugin]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    == Usage
    
    To use the Java Library plugin, include the following in your build script:
    
    .Using the Java Library plugin
    ====
    include::sample[dir="snippets/java-library/quickstart/kotlin",files="build.gradle.kts[tags=use-plugin]"]
    include::sample[dir="snippets/java-library/quickstart/groovy",files="build.gradle[tags=use-plugin]"]
    ====
    
    
    [[sec:java_library_separation]]
    == API and implementation separation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    To use the Maven Publish Plugin, include the following in your build script:
    
    .Applying the Maven Publish Plugin
    ====
    include::sample[dir="snippets/maven-publish/quickstart/kotlin",files="build.gradle.kts[tags=use-plugin]"]
    include::sample[dir="snippets/maven-publish/quickstart/groovy",files="build.gradle[tags=use-plugin]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top