Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,126 for configuration (0.42 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        } // -- void removeExecution( Execution )
    
        /**
         * Set configuration to pass to all goals run in this phase.
         *
         * @param configuration a configuration object.
         */
        public void setConfiguration(Object configuration) {
            this.configuration = configuration;
        } // -- void setConfiguration( Object )
    
        /**
         * Set the goals to execute within the phase.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. docs/site-replication/README.md

      - Bucket Tags
      - Bucket Object-Lock configurations (including retention and legal hold configuration)
      - Bucket Encryption configuration
    
    > NOTE: Bucket versioning is automatically enabled for all new and existing buckets on all replicated sites.
    
    The following Bucket features will **not be replicated**, is designed to differ between sites:
    
    - Bucket notification configuration
    - Bucket lifecycle (ILM) configuration
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                throws ProjectBuildingException {
            ProjectBuilderConfiguration configuration = new DefaultProjectBuilderConfiguration();
            configuration.setLocalRepository(localRepository);
            configuration.setGlobalProfileManager(profileManager);
    
            return build(pom, configuration);
        }
    
        public MavenProject buildFromRepository(
                Artifact artifact,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. api/maven-api-plugin/pom.xml

                  </models>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Oct 19 18:11:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. docs/pt/docs/how-to/general.md

    ## Resumo e Descrição da documentação - OpenAPI
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 12 02:41:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. build.gradle.kts

        google()
      }
    
      tasks.create("downloadDependencies") {
        description = "Download all dependencies to the Gradle cache"
        doLast {
          for (configuration in configurations) {
            if (configuration.isCanBeResolved) {
              configuration.files
            }
          }
        }
      }
    
      normalization {
        runtimeClasspath {
          metaInf {
            ignoreAttribute("Bnd-LastModified")
          }
        }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jun 23 17:02:02 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            Set<File> classpath = new HashSet<>();
            for (FilterConfiguration configuration : getIncludeFilters().getOrElse(Collections.emptyList())) {
                addClasspathFor(configuration.getFilterClass(), classpath);
            }
            for (FilterConfiguration configuration : getExcludeFilters().getOrElse(Collections.emptyList())) {
                addClasspathFor(configuration.getFilterClass(), classpath);
            }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/general.md

    ## Beschreibung der Response in der Dokumentation – OpenAPI
    
    Um die Beschreibung der Response zu definieren, welche in der Oberfläche der Dokumentation angezeigt wird, lesen Sie die Dokumentation unter [Tutorial – Pfadoperation-Konfiguration – Beschreibung der Response](../tutorial/path-operation-configuration.md#beschreibung-der-response){.internal-link target=_blank}.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 30 18:18:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. apache-maven/pom.xml

                    hence template is renamed to maven-configuration.md.vm, to avoid conflict (and picking up resolver template)
                    -->
                    <argument>--templates=maven-configuration.md,configuration.properties,configuration.yaml</argument>
                    <argument>${basedir}/..</argument>
                    <argument>${basedir}/../src/site/markdown/</argument>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 13:41:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/configure-swagger-ui.md

    {* ../../docs_src/configure_swagger_ui/tutorial002.py hl[3] *}
    
    That configuration would change the syntax highlighting color theme:
    
    <img src="/img/tutorial/extending-openapi/image04.png">
    
    ## Change Default Swagger UI Parameters
    
    FastAPI includes some default configuration parameters appropriate for most of the use cases.
    
    It includes these default configurations:
    
    {* ../../fastapi/openapi/docs.py ln[8:23] hl[17:23] *}
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 26 16:50:52 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top