Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 426 for dependentes (0.16 sec)

  1. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

            name = flakyTestQuarantineProject.name + " (Trigger)"
            type = Type.COMPOSITE
    
            applyDefaultSettings()
    
            dependencies {
                snapshotDependencies(
                    flakyTestQuarantineProject.buildTypes.map {
                        it as BaseGradleBuildType
                    },
                )
            }
        })
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/response-headers.md

    You can also declare the `Response` parameter in dependencies, and set headers (and cookies) in them.
    
    ## Return a `Response` directly { #return-a-response-directly }
    
    You can also add headers when you return a `Response` directly.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

        }
    
        public void test_expired_method_can_be_called() {
            try {
                target.expired();
            } catch (Exception e) {
                // Expected that it may fail due to missing dependencies in test environment
                // but method should be callable
                assertNotNull("Exception should not be null if thrown", e);
            }
        }
    
        public void test_package_structure() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Function.java

     * <p>This interface is now a legacy type. Use {@code java.util.function.Function} (or the
     * appropriate primitive specialization such as {@code ToIntFunction}) instead whenever possible.
     * Otherwise, at least reduce <i>explicit</i> dependencies on this type by using lambda expressions
     * or method references instead of classes, leaving your code easier to migrate in the future.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 15 22:14:00 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.24.md

      - [Changes by Kind](#changes-by-kind)
        - [Feature](#feature)
        - [Bug or Regression](#bug-or-regression)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    - [v1.24.16](#v12416)
      - [Downloads for v1.24.16](#downloads-for-v12416)
        - [Source Code](#source-code-1)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

      - [Changes by Kind](#changes-by-kind)
        - [Feature](#feature)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    - [v1.28.14](#v12814)
      - [Downloads for v1.28.14](#downloads-for-v12814)
        - [Source Code](#source-code-1)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.31.md

      - [Changes by Kind](#changes-by-kind)
        - [Feature](#feature)
        - [Bug or Regression](#bug-or-regression)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    - [v1.31.11](#v13111)
      - [Downloads for v1.31.11](#downloads-for-v13111)
        - [Source Code](#source-code-1)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/test/java/org/apache/maven/api/JavaPathTypeTest.java

         */
        private static List<Path> paths() {
            return List.of(Path.of("src", "foo.java"), Path.of("src", "bar.java"));
        }
    
        /**
         * Converts paths from Unix style to platform-dependent style.
         *
         * @param expected the option value expected by the test
         * @return the expected value with separators of the host
         */
        private static String toPlatformSpecific(String expected) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                                "-PperformanceBaselines" to dependencyBaselines,
                            ).joinToString(" ") { (key, value) -> os.escapeKeyValuePair(key, value) },
                    )
                }
    
                dependencies {
                    snapshotDependencies(performanceTestProject.performanceTests) {
                        if (type == PerformanceTestType.FLAKINESS_DETECTION) {
                            reuseBuilds = ReuseBuilds.NO
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

                    allowEmpty = true,
                    description = "Additional options for the test task to run (`-PrerunAllTests` is already added implicitly)",
                )
            }
    
            dependencies {
                compileAllDependency(CompileAll.buildTypeId("Check"))
            }
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 19 08:02:04 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top