Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 945 for homes (0.04 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

          }
          if (lhs == null) {
            // lhs (null) comes just before justAfterNull.
            // If rhs is b, lhs comes first.
            if (rhs.equals(justAfterNull)) {
              return -1;
            }
            return justAfterNull.compareTo(rhs);
          }
          if (rhs == null) {
            // rhs (null) comes just before justAfterNull.
            // If lhs is b, rhs comes first.
            if (lhs.equals(justAfterNull)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderIntegrationTest.groovy

            then:
            compileFiles.size() == 1
            runtimeFiles.size() == 1
        }
    
        def "can provide custom Gradle user home"() {
            given:
            File customGradleUserHome = temporaryFolder.createDir('gradle-user-home')
    
            when:
            project = ProjectBuilder.builder().withGradleUserHomeDir(customGradleUserHome).build()
    
            then:
            customGradleUserHome.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/debug/dwarf/line_test.go

    package dwarf_test
    
    import (
    	. "debug/dwarf"
    	"io"
    	"strings"
    	"testing"
    )
    
    var (
    	file1C = &LineFile{Name: "/home/austin/go.dev/src/debug/dwarf/testdata/line1.c"}
    	file1H = &LineFile{Name: "/home/austin/go.dev/src/debug/dwarf/testdata/line1.h"}
    	file2C = &LineFile{Name: "/home/austin/go.dev/src/debug/dwarf/testdata/line2.c"}
    )
    
    func TestLineELFGCC(t *testing.T) {
    	// Generated by:
    	//   # gcc --version | head -n1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

     :: Spring Boot ::        (v2.2.1.RELEASE)
    
    2019-11-12 22:14:43.819  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : Starting SpringBootDemoApplication on localhost with PID 1389 (/home/user/build/classes/java/main started by user in /home/user)
    2019-11-12 22:14:43.820  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : No active profile set, falling back to default profiles: default
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. releasenotes/notes/43771.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 43771
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 18:58:45 UTC 2023
    - 196 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top