Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 809 for homes (0.04 sec)

  1. README.md

    - Java 17+
    - Maven 3.6.3 or later
    - Run Maven, specifying a location into which the completed Maven distro should be installed:
        ```
        mvn -DdistributionTargetDir="$HOME/app/maven/apache-maven-4.0.x-SNAPSHOT" clean package
        ```
    
    
    [home]: https://maven.apache.org/
    [jira]: https://issues.apache.org/jira/projects/MNG/
    [license]: https://www.apache.org/licenses/LICENSE-2.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface Global extends Scope {}
    
        /**
         * These services are reused across builds in the same process while the Gradle user home directory remains unchanged.
         * The services are closed when the Gradle user home directory changes.
         *
         * <p>{@link Global} and parent scope services are visible to {@link UserHome} scope services, but not vice versa.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/implicitTaskInputDependency/tests/implicitTaskInputDependencyKotlin.out

    > Task :producer
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/build/file.txt
    
    > Task :consumer
    Hello, World!
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                            }
                            if ($useReason) { because("This reason comes from a constraint") }
                        }
                    }
                }
    
                configurations.all {
                    resolutionStrategy.eachDependency {
                        if (requested.name == 'foo') {
                            because("fix comes from component selection rule").useTarget("org:bar:1.0")
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/groovy/build.gradle

    plugins {
        id 'java-library'
        id 'maven-publish'
    
        // this plugin comes from an included build - it fakes a maven repository to allow executing the authentication flow
        id 'maven-repository-stub'
    }
    
    version = '1.0.2'
    group = 'com.example'
    
    // tag::publication[]
    publishing {
        publications {
            library(MavenPublication) {
                from components.java
            }
        }
    // tag::repositories[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 648 bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedRelocationIntegrationTest.groovy

        def "relocating the project doesn't invalidate custom tasks declared in build script"() {
            def originalLocation = file("original-location").createDir()
            def originalHome = file("original-home").createDir()
    
            originalLocation.file("external.gradle").text = externalTaskDef()
            originalLocation.file("input.txt") << "input"
            originalLocation.file("input-2.txt") << "input-2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/GradleConnector.java

         * @since 1.0-milestone-3
         */
        public abstract GradleConnector forProjectDirectory(File projectDir);
    
        /**
         * Specifies the user's Gradle home directory to use. Defaults to {@code ~/.gradle}.
         *
         * @param gradleUserHomeDir The user's Gradle home directory to use.
         * @return this
         * @since 1.0-milestone-3
         */
        public abstract GradleConnector useGradleUserHomeDir(File gradleUserHomeDir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/completion.go

    		source $HOME/.bash_profile
    
    		# Load the kubeadm completion code for bash into the current shell
    		source <(kubeadm completion bash)
    
    		# Write bash completion code to a file and source it from .bash_profile
    		kubeadm completion bash > ~/.kube/kubeadm_completion.bash.inc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/path-params.md

    {!../../../docs_src/path_params/tutorial004.py!}
    ```
    
    !!! tip "Подсказка"
        Возможно, вам понадобится, чтобы параметр содержал `/home/johndoe/myfile.txt` с ведущим слэшем (`/`).
    
        В этом случае URL будет таким: `/files//home/johndoe/myfile.txt`, с двойным слэшем (`//`) между `files` и `home`.
    
    ## Резюме
    Используя **FastAPI** вместе со стандартными объявлениями типов Python (короткими и интуитивно понятными), вы получаете:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/test/java/com/acme/FamilyTest.java

    import static org.junit.Assert.*;
    import static com.acme.Simpsons.*;
    
    public class FamilyTest {
        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
            System.out.println("family = " + family);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
Back to top