Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 488 for config_url (0.11 seconds)

  1. .github/workflows/docs.yml

        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'documentation')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v6
    
          - name: Configure JDK
            uses: actions/setup-java@v5
            with:
              distribution: 'temurin'
              java-version: 21
    
          - uses: actions/setup-python@v6
            with:
              python-version: 3.x
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 26 22:11:04 GMT 2026
    - 990 bytes
    - Click Count (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/package-info.java

     */
    
    /**
     * Provides annotations for Maven plugin development, including mojo configuration,
     * parameter definitions, and lifecycle bindings. These annotations are used to
     * generate plugin descriptors and configure plugin behavior.
     *
     * @since 4.0.0
     */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Nov 16 22:51:39 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

        val capabilitiesFile = repoRoot().file("gradle/dependency-management/capabilities.json").asFile
        val capabilities: List<CapabilitySpec> = readCapabilities(capabilitiesFile)
        capabilities.forEach {
            it.configure(dependencies.components, configurations)
        }
    }
    
    fun readCapabilities(source: File): List<CapabilitySpec> {
        JsonReader(source.reader(Charsets.UTF_8)).use { reader ->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 09:04:32 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPlugin.java

            TaskProvider<Task> checkNotice = registerCheckNoticeTask(project, checkExtraction);
            TaskProvider<Task> checkTask = project.getTasks().named("check");
            checkTask.configure(task -> {
                task.dependsOn(checkExtraction);
                task.dependsOn(checkLicense);
                task.dependsOn(checkNotice);
            });
    
            String projectName = project.getName();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/JarHellPrecommitPlugin.java

            project.getPluginManager().apply(JarHellPlugin.class);
    
            if (project.getPath().equals(":libs:elasticsearch-core") == false) {
                // ideally we would configure this as a default dependency. But Default dependencies do not work correctly
                // with gradle project dependencies as they're resolved to late in the build and don't setup according task
                // dependencies properly
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

        }
    }
    
    fun Project.wrapperUpdateTask(name: String, label: String) {
        val wrapperTaskName = "${name}Wrapper"
        val configureWrapperTaskName = "configure${wrapperTaskName.capitalize()}"
    
        val wrapperTask = tasks.register<Wrapper>(wrapperTaskName) {
            dependsOn(configureWrapperTaskName)
            group = "wrapper"
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 17 08:58:33 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/first-steps.md

    También podrías usarlo para generar código automáticamente, para clientes que se comuniquen con tu API. Por ejemplo, aplicaciones frontend, móviles o IoT.
    
    ### Configura el `entrypoint` de la app en `pyproject.toml` { #configure-the-app-entrypoint-in-pyproject-toml }
    
    Puedes configurar dónde está tu app en un archivo `pyproject.toml` así:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            });
    
        }
    
        /**
         * Sets up the condition builder for listing failure URLs with pagination and filtering.
         *
         * @param cb the condition builder to configure
         * @param failureUrlPager the pager containing filter criteria
         */
        protected void setupListCondition(final FailureUrlCB cb, final FailureUrlPager failureUrlPager) {
            if (failureUrlPager.id != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt

       * retries all must complete within one timeout period.
       *
       * Configure the client's default timeout with [OkHttpClient.Builder.callTimeout].
       */
      fun timeout(): Timeout
    
      /**
       * Configure this call to publish all future events to [eventListener], in addition to the
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Nov 05 18:28:35 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/groovy/elasticsearch.runtime-jdk-provision.gradle

            version = VersionProperties.bundledJdkVersion
            platform = OS.current().name().toLowerCase()
            architecture = Architecture.current().name().toLowerCase()
        }
    }
    
    configure(allprojects) {
        project.tasks.withType(Test).configureEach { Test test ->
            if (BuildParams.getIsRuntimeJavaHomeSet()) {
                test.executable = "${BuildParams.runtimeJavaHome}/bin/java"
            } else {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 1.4K bytes
    - Click Count (0)
Back to Top