Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 371 for Automatic (0.11 sec)

  1. fess-crawler/pom.xml

    				<artifactId>maven-javadoc-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<artifactId>maven-jar-plugin</artifactId>
    				<configuration>
    					<archive>
    						<manifestEntries>
    							<Automatic-Module-Name>org.codelibs.fess.crawler</Automatic-Module-Name>
    						</manifestEntries>
    					</archive>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    				<artifactId>license-maven-plugin</artifactId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidStudioPerformanceTest.groovy

         * or you should set "studioHome" system property with the Android Studio installation path,
         * or you should enable automatic download of Android Studio with the -PautoDownloadAndroidStudio=true.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/using-request-directly.md

    It would also mean that if you get data from the `Request` object directly (for example, read the body) it won't be validated, converted or documented (with OpenAPI, for the automatic API user interface) by FastAPI.
    
    Although any other parameter declared normally (for example, the body with a Pydantic model) would still be validated, converted, annotated, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/body.md

    * Those schemas will be part of the generated OpenAPI schema, and used by the automatic documentation <abbr title="User Interfaces">UIs</abbr>.
    
    ## Automatic docs
    
    The JSON Schemas of your models will be part of your OpenAPI generated schema, and will be shown in the interactive API docs:
    
    <img src="/img/tutorial/body/image01.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/cgo/abi_amd64.h

    // license that can be found in the LICENSE file.
    
    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These save the frame pointer, so in general, functions that use
    // these should have zero frame size to suppress the automatic frame
    // pointer, though it's harmless to not do this.
    
    #ifdef GOOS_windows
    
    // REGS_HOST_TO_ABI0_STACK is the stack bytes used by
    // PUSH_REGS_HOST_TO_ABI0.
    #define REGS_HOST_TO_ABI0_STACK (28*8 + 8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 12:38:13 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/README.md

    fluentd-gcp-v2.0.15   100m          200Mi            300Mi
    ```
    
    In order to change those values, a [ScalingPolicy][scalingPolicy] needs to be
    defined. Currently, only base values are supported (no automatic scaling). The
    ScalingPolicy can be created using kubectl. E.g. to set cpu request to 101m,
    memory request to 150Mi and memory limit to 400Mi:
    
    ```
    $ cat <<EOF | kubectl apply -f -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            </manifest>
                            <manifestEntries>
                                <Automatic-Module-Name>junit</Automatic-Module-Name>
                            </manifestEntries>                        
                        </archive>
                    </configuration>
                </plugin>
                <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AbstractIncrementalAnnotationProcessingIntegrationTest.groovy

                f.createFile()
                f.text = packageStatement
                f << body
                out = f
            }
            out
        }
    
        def "explicit -processor option overrides automatic detection"() {
            buildFile << """
                compileJava.options.compilerArgs << "-processor" << "unknown.Processor"
            """
            java "class A {}"
    
            expect:
            fails("compileJava")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. docs/changelogs/upgrading_to_okhttp_4.md

    OkHttp 3.x. You can use an OkHttp 4.x .jar file with applications or libraries built for OkHttp 3.x.
    
    OkHttp is **not** source-compatible for Kotlin callers, but upgrading should be automatic thanks to
    Kotlin’s powerful deprecation features. Most developers should be able to use IntelliJ’s _Code
    Cleanup_ for a safe and fast upgrade.
    
    
    Backwards-Incompatible Changes
    ------------------------------
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/jpms/ModuleJarFixture.groovy

            }
    
            def manifest = ['Manifest-Version: 1.0', "Implementation-Title: $name", 'Implementation-Version: 1.0']
            if (kind == JarKind.AUTO_MODULE) {
                manifest += "Automatic-Module-Name: $name"
            }
    
            final FileManager fileManager = new FileManager(compiler.getStandardFileManager(null, null, null))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top