Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 371 for Automatic (0.32 sec)

  1. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/application/build.gradle.kts

    }
    // end::extraModuleInfo[]
    
    dependencies {
        implementation("com.google.code.gson:gson:2.8.9")           // real module
        implementation("org.apache.commons:commons-lang3:3.10")     // automatic module
        implementation("commons-beanutils:commons-beanutils:1.9.4") // plain library (also brings in other libraries transitively)
        implementation("commons-cli:commons-cli:1.4")               // plain library
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. samples/security/spire/README.md

      If you have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection) enabled:
    
      ```bash
      $ kubectl apply -f sleep-spire.yaml
      ```
    
      Otherwise, manually inject the sidecar before applying:
    
      ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

            fails ':compileJava'
    
            then:
            failure.assertHasErrorOutput '(package moda.internal is declared in module moda, which does not export it)'
        }
    
        def "compiles a module depending on an automatic module"() {
            given:
            publishAutoModule('moda')
            consumingModuleInfo('requires moda')
            consumingModuleClass('moda.ModaClass', 'moda.internal.ModaClassInternal')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/MultiSourceSetsJavaModulesCompileIntegrationTest.groovy

            """
        }
    
        @Override
        protected producingAutomaticModuleNameSetting() {
            buildFile << """
                tasks.producerJar {
                    manifest {
                        attributes 'Automatic-Module-Name': 'producer'
                    }
                }
            """
        }
    
        @Override
        protected producingModuleInfo(String... statements) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoTransform.java

        }
    
        private boolean isAutoModule(File jar) {
            try (JarInputStream inputStream = new JarInputStream(new FileInputStream(jar))) {
                return inputStream.getManifest().getMainAttributes().getValue("Automatic-Module-Name") != null;
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }
    
        private File getModuleJar(TransformOutputs outputs, File originalJar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/index.md

    ## OpenAPI
    
    OpenAPI (previously known as Swagger) is the open specification for building APIs (now part of the Linux Foundation).
    
    **FastAPI** is based on **OpenAPI**.
    
    That's what makes it possible to have multiple automatic interactive documentation interfaces, code generation, etc.
    
    OpenAPI has a way to define multiple security "schemes".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. docs/en/docs/alternatives.md

    It was one of the first examples of **automatic API documentation**, and this was specifically one of the first ideas that inspired "the search for" **FastAPI**.
    
    !!! note
        Django REST Framework was created by Tom Christie. The same creator of Starlette and Uvicorn, on which **FastAPI** is based.
    
    
    !!! check "Inspired **FastAPI** to"
        Have an automatic API documentation web user interface.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. okcurl/build.gradle.kts

      testApi(libs.assertk)
      testImplementation(kotlin("test"))
    }
    
    animalsniffer {
      isIgnoreFailures = true
    }
    
    tasks.jar {
      manifest {
        attributes("Automatic-Module-Name" to "okhttp3.curl")
        attributes("Main-Class" to "okhttp3.curl.MainCommandLineKt")
      }
    }
    
    tasks.shadowJar {
      mergeServiceFiles()
    }
    
    graal {
      mainClass("okhttp3.curl.MainCommandLineKt")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/MultiProjectJavaModulesCompileIntegrationTest.groovy

            """
        }
    
        @Override
        protected TestFile producingAutomaticModuleNameSetting() {
            producerBuildFile << """
                tasks.jar {
                    manifest {
                        attributes 'Automatic-Module-Name': 'producer'
                    }
                }
            """
        }
    
        @Override
        protected producingModuleInfo(String... statements) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoPluginExtension.java

            if (conf != null) {
                conf.execute(moduleInfo);
            }
            this.moduleInfo.put(jarName, moduleInfo);
        }
    
        /**
         * Add only an automatic module name to a given jar file.
         */
        public void automaticModule(String jarName, String moduleName) {
            automaticModules.put(jarName, moduleName);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top