Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 188 for Automatic (0.17 sec)

  1. docs/en/docs/tutorial/body-multiple-params.md

    
    **FastAPI** will do the automatic conversion from the request, so that the parameter `item` receives its specific content and the same for `user`.
    
    It will perform the validation of the compound data, and will document it like that for the OpenAPI schema and automatic docs.
    
    ## Singular values in body
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/M2Installation.groovy

    </settings>"""
            return this
        }
    
        void execute(GradleExecuter gradleExecuter) {
            init()
            gradleExecuter.withUserHomeDir(userHomeDir)
            // if call `using m2`, then we disable the automatic isolation of m2
            isolateMavenLocal = false
            if (globalMavenDirectory?.exists()) {
                gradleExecuter.withEnvironmentVars(M2_HOME: globalMavenDirectory.absolutePath)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		err = c.AddPostStartHook(
    			"start-encryption-provider-config-automatic-reload",
    			func(_ server.PostStartHookContext) error {
    				dynamicEncryptionConfigController := encryptionconfigcontroller.NewDynamicEncryptionConfiguration(
    					"encryption-provider-config-automatic-reload-controller",
    					s.EncryptionProviderConfigFilepath,
    					dynamicTransformers,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    To enable it, all that's needed is to apply the <<signing_plugin.adoc#signing_plugin,`signing`>> plugin in your build.
    
    === Shadow dependencies ===
    
    Starting from version 1.0.0 of Plugin Publish Plugin, shadowing your plugin's dependencies (ie, publishing it as a fat jar) has been made automatic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. docs/en/docs/advanced/openapi-webhooks.md

    ```Python hl_lines="9-13  36-53"
    {!../../../docs_src/openapi_webhooks/tutorial001.py!}
    ```
    
    The webhooks that you define will end up in the **OpenAPI** schema and the automatic **docs UI**.
    
    !!! info
        The `app.webhooks` object is actually just an `APIRouter`, the same type you would use when structuring your app with multiple files.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //	}
    //
    // # Specifying printf wrappers by flag
    //
    // The -funcs flag specifies a comma-separated list of names of
    // additional known formatting functions or methods. (This legacy flag
    // is rarely used due to the automatic inference described above.)
    //
    // If the name contains a period, it must denote a specific function
    // using one of the following forms:
    //
    //	dir/pkg.Function
    //	dir/pkg.Type.Method
    //	(*dir/pkg.Type).Method
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top