Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 328 for Solution (0.13 sec)

  1. SECURITY.md

    ## Public Discussions
    
    Please restrain from publicly discussing a potential security vulnerability. 🙊
    
    It's better to discuss privately and try to find a solution first, to limit the potential impact as much as possible.
    
    ---
    
    Thanks for your help!
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Sep 11 16:15:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginTest.groovy

            when:
            project.pluginManager.apply(VisualStudioPlugin)
    
            then:
            project.visualStudio instanceof VisualStudioRootExtension
            project.visualStudio.solution.location.get().asFile == project.file("root.sln")
        }
    
        def "adds extension to child project"() {
            def child = ProjectBuilder.builder().withParent(project).withProjectDir(projectDir).withName("child").build()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

            // As Android Studio wanted to avoid task realization during sync, it started using "omit_all_tasks" option in production.
            // Gradle should support this option at least until an alternative solution exists and Android Studio has migrated to it.
            String builderOptions = System.getProperty("org.gradle.internal.GradleProjectBuilderOptions", "");
            boolean avoidTaskRealization = "omit_all_tasks".equals(builderOptions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeAnnotationHandler.java

                    .details(String.format("This annotation only makes sense on %s types", Arrays.stream(appliesOnlyTo)
                        .map(Class::getSimpleName)
                        .collect(joining(", "))))
                    .solution("Remove the annotation")
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/README.md

    text proto for the SavedModel proto is difficult to use as a test input, since a
    small piece of Python code (e.g. just a tf.Add) generates thousands of lines of
    text proto.
    
    That points to a solution though: write our tests starting from the Python API's
    that generate the SavedModel. That leads to very compact test inputs.
    
    As the SavedModel work progresses, it's likely to be of interest to find a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 02 03:37:19 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. testing/precondition-tester/README.md

    - Arbitrary combinations of above (`@Requires([UnitTestPreconditions.Windows, UnitTestPreconditions.Jdk8OrLater])`)
    
    The issue is that we _ignore_ tests, where the precondition is not satisfied.
    Albeit being the correct solution, this can cause problems where a test is _not running anywhere_ and we don't know anything about it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

                maxWidth = cols - 1;
            } else {
                // Assume 80 wide. This is to minimize wrapping on console where we don't know the width (eg mintty)
                // It's not intended to be a correct solution, simply a work around
                maxWidth = 79;
            }
            if (maxWidth < formattedString.length()) {
                return formattedString.substring(0, maxWidth);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/index.md

    In the next sections you will see other options, configurations, and additional features.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    You could still use most of the features in **FastAPI** with the knowledge from the main [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/building/FileModelSourceTest.java

    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.junit.jupiter.api.Assumptions.assumeTrue;
    
    /**
     * Test that validate the solution of MNG-6261 issue
     *
     */
    class FileModelSourceTest {
    
        /**
         * Test of equals method, of class FileModelSource.
         */
        @Test
        void testEquals() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Always keep in mind that the solution you choose to fix a problem can "leak" to your consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top