Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,268 for Only (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        /**
         * Compile only.
         */
        COMPILE_ONLY("compile-only", false),
    
        /**
         * Compile, runtime and test.
         */
        COMPILE("compile", true),
    
        /**
         * Runtime and test.
         */
        RUNTIME("runtime", true),
    
        /**
         * Provided.
         */
        PROVIDED("provided", false),
    
        /**
         * Test compile only.
         */
        TEST_ONLY("test-only", false),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. docs/security/tls_configuration_history.md

     * TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
     * **REMOVED:** ~~TLS_AES_128_CCM_SHA256[¹][tlsv13_only]~~
     * **REMOVED:** ~~TLS_AES_128_CCM_8_SHA256[¹][tlsv13_only]~~
    
    ##### MODERN_TLS / COMPATIBLE_TLS cipher suites
    
     * TLS_AES_128_GCM_SHA256[¹][tlsv13_only]
     * TLS_AES_256_GCM_SHA384[¹][tlsv13_only]
     * TLS_CHACHA20_POLY1305_SHA256[¹][tlsv13_only]
     * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
     * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 9K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClass.groovy

         */
        CombinedInterface groovyProp
    
        /**
         * A read-only groovy property.
         */
        final String readOnlyGroovyProp
    
        /**
         * An array property.
         */
        def String[] arrayProp
    
        private def ignoreMe1;
        public int ignoreMe2;
        protected int ignoreMe3;
        static String ignoreMe4;
    
        /**
         * A read-only property.
         */
        def getReadOnly() {
            'value'
        }
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 915 bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

              </plugin>
              <plugin>
                <artifactId>only-active-profile</artifactId>
                <executions>
                  <execution>
                    <id>Active only ||${project.basedir}||</id>
                    <configuration>
                      <plugin-in-active-profile-only>Active only ||${project.basedir}||</plugin-in-active-profile-only>
                    </configuration>
                  </execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-interpolation-reporting/pom.xml

              </plugin>
              <plugin>
                <artifactId>only-active-profile</artifactId>
                <reportSets>
                  <reportSet>
                    <id>Active only ||${project.basedir}||</id>
                    <configuration>
                      <plugin-in-active-profile-only>Active only ||${project.basedir}||</plugin-in-active-profile-only>
                    </configuration>
                  </reportSet>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 4K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/README.md

    ```
    mc ilm rule add --noncurrent-expire-days 30 --noncurrent-expire-newer 5 myminio/mydata
    ```
    
    #### 3.2.a Automatic removal of noncurrent versions keeping only most recent ones immediately (MinIO only extension)
    
    This is available only on MinIO as an extension to the NewerNoncurrentVersions feature. The following rule makes it possible to remove older noncurrent versions
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Aug 26 07:33:25 GMT 2023
    - 9K bytes
    - Viewed (1)
  7. src/main/resources/fess_env_thumbnail.properties

    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    time.adjust.time.millis = 0
    
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 12 13:38:57 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  8. src/main/resources/fess_env_web.properties

    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    time.adjust.time.millis = 0
    
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/ResolutionScope.java

         * = <code>compile-only</code> + <code>compile</code> + <code>provided</code> + <code>test-compile-only</code> + <code>test</code>
         * dependencies
         */
        TEST_COMPILE(
                "test-compile",
                Scope.EMPTY,
                Scope.COMPILE_ONLY,
                Scope.COMPILE,
                Scope.PROVIDED,
                Scope.TEST_COMPILE_ONLY,
                Scope.TEST),
        /**
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Scope.java

    /**
     * Scope for a dependency
     *
     * @since 4.0.0
     */
    @Experimental
    public enum Scope {
        EMPTY(""),
        COMPILE_ONLY("compile-only"),
        COMPILE("compile"),
        RUNTIME("runtime"),
        PROVIDED("provided"),
        TEST_COMPILE_ONLY("test-compile-only"),
        TEST("test"),
        TEST_RUNTIME("test-runtime"),
        IMPORT("import"); // TODO: v4: remove import scope somehow
    
        private final String id;
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.7K bytes
    - Viewed (1)
Back to top