Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 945 for homes (0.06 sec)

  1. 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)
  2. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    		Your Kubernetes control-plane has initialized successfully!
    
    		To start using your cluster, you need to run the following as a regular user:
    
    		  mkdir -p $HOME/.kube
    		  sudo cp -i {{.KubeConfigPath}} $HOME/.kube/config
    		  sudo chown $(id -u):$(id -g) $HOME/.kube/config
    
    		Alternatively, if you are the root user, you can run:
    
    		  export KUBECONFIG=/etc/kubernetes/admin.conf
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/M2Installation.groovy

                globalMavenDirectory = userHomeDir.createDir("m2_home")
                globalSettingsFile = globalMavenDirectory.file("conf/settings.xml")
                println "M2 home: " + userHomeDir
    
                initialized = true
            }
        }
    
        void assertNoLeftoverState() {
            assert System.getenv("M2_HOME") == null
            assert System.getProperty("maven.repo.local") == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/static-files.md

        You could also use `from starlette.staticfiles import StaticFiles`.
    
        **FastAPI** provides the same `starlette.staticfiles` as `fastapi.staticfiles` just as a convenience for you, the developer. But it actually comes directly from Starlette.
    
    ### What is "Mounting"
    
    "Mounting" means adding a complete "independent" application in a specific path, that then takes care of handling all the sub-paths.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/2/bar/3/4")))
        }
    
        @Test
        fun `recognizes user-home-based paths against the user home dir`() {
            val instance = createFromPaths(listOf("~/.gradle/foo.bar"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File(System.getProperty("user.home"), ".gradle/foo.bar")))
        }
    
        @Test
        fun `recognizes relative paths pointing outside the root directory`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsGenerationIntegrationTest.groovy

        def "Gradle API is not generated if not declared by build"() {
            given:
            buildFile << applyJavaPlugin()
    
            when:
            succeeds 'build'
    
            then:
            file("user-home/caches/${distribution.version.version}/generated-gradle-jars").assertIsEmptyDir()
        }
    
        def "buildSrc project implicitly forces generation of Gradle API JAR"() {
            given:
            buildFile << applyJavaPlugin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top