Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 244 for melhor (0.12 sec)

  1. docs/en/docs/advanced/path-operation-advanced-configuration.md

        ```Python hl_lines="17-22  24"
        {!> ../../../docs_src/path_operation_advanced_configuration/tutorial007_pv1.py!}
        ```
    
    !!! info
        In Pydantic version 1 the method to get the JSON Schema for a model was called `Item.schema()`, in Pydantic version 2, the method is called `Item.model_json_schema()`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

            '''.stripIndent()
    
            expect:
            succeeds 'help'
        }
    
        def "allows configuring tool dependencies explicitly via #method"(String method, String buildScriptSnippet) {
            expect: //defaults exist and can be inspected
            succeeds("dependencies", "--configuration", "codenarc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/go/types/66559.md

    The [Alias] type now has an [Rhs] method that returns the type on the
    right-hand side of its declaration: given `type A = B`, the `Rhs` of A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 172 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

     */
    public abstract class EntryPoint {
        private final PrintStream originalStdErr = System.err;
    
        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
        public void run(String[] args) {
            RecordingExecutionListener listener = new RecordingExecutionListener();
            try {
                doAction(args, listener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

        }
    
        @SuppressWarnings("unchecked")
        private <T> T createProxy(Key<T> key, Provider<T> unscoped) {
            InvocationHandler dispatcher = (proxy, method, args) -> {
                method.setAccessible(true);
                try {
                    return method.invoke(getScopeState().scope(key, unscoped).get(), args);
                } catch (InvocationTargetException e) {
                    throw e.getCause();
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            }
            return loader
        }
    
        private static class GroovyInvocationHandler implements InvocationHandler, Serializable {
            Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                return "result!"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

         */
        ResultType getResultType();
    
        /**
         * If the test failed with an exception, this will be the exception.  Some test frameworks do not fail without an
         * exception (JUnit), so in those cases this method will never return null.
         *
         * @return The exception, if any, logged for this test.  If none, a null is returned.
         */
        @Nullable
        Throwable getException();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

         * that owns this property instance.
         *
         * <p>This method is the same as {@link #set(File)} but allows method chaining.</p>
         *
         * @return this
         * @since 6.0
         */
        FileSystemLocationProperty<T> fileValue(@Nullable File file);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         *
         * This can be used to wrap 3rd party APIs that iterate over the system properties, so they won't result in {@link java.util.ConcurrentModificationException}s.
         *
         * This method should not be used when you need to temporarily change system properties.
         */
        public synchronized <T> T withSystemProperties(Factory<T> factory) {
            return factory.create();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10DataFlowInfoProvider.kt

        override fun getExitPointSnapshot(statements: List<KtExpression>): KaDataFlowExitPointSnapshot {
            throw NotImplementedError("Method is not implemented for FE 1.0")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 924 bytes
    - Viewed (0)
Back to top