Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 747 for mreply (0.3 sec)

  1. util/update_snapshot_docs.sh

    git clone -q -b gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/guava.git" gh-pages > /dev/null
    cd gh-pages
    
    git config --global user.name "$GITHUB_ACTOR"
    git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
    
    ./updaterelease.sh snapshot
    
    git push -fq origin gh-pages > /dev/null
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 16 16:48:28 UTC 2021
    - 439 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

            when:
            hostGradleWrapperFile << "dummy wrapper"
            buildFile << '''
        model {
            visualStudio {
                projects.all { project ->
                    projectFile.location = "very/deeply/nested/${project.name}.vcxproj"
                    filtersFile.location = "other/filters.vcxproj.filters"
                }
                solution {
                    solutionFile.location = "vs/${it.name}.solution"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5.groovy

                            line all of its own, and end it with three
                            quotes also on a line of their own.
                            Multi-line strings also let you write "quote marks"
                            freely inside your strings, which is great!
                            """
                }
    
                public func getRawString() -> String {
                    let value = 42
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/internal/capabilities/ImmutableCapability.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.capabilities;
    
    /**
     * A marker interface that indicates this type is deeply immutable.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:22:00 UTC 2023
    - 820 bytes
    - Viewed (0)
  5. .mailmap

    #   git log --format='%aE - %aN' | sort -uf
    #
    # For explanation on this file format: man git-shortlog
    
    Anand Babu (AB) Periasamy <******@****.***> Anand Babu (AB) Periasamy <abperiasamy@users.noreply.github.com>
    Anand Babu (AB) Periasamy <******@****.***> <******@****.***>
    Anis Elleuch <******@****.***>
    Frederick F. Kautz IV <******@****.***> <******@****.***>
    Harshavardhana <******@****.***> <******@****.***>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 09 18:39:42 UTC 2019
    - 835 bytes
    - Viewed (0)
  6. src/math/acosh.go

    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    //
    // __ieee754_acosh(x)
    // Method :
    //	Based on
    //	        acosh(x) = log [ x + sqrt(x*x-1) ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4Test.groovy

                '''XCTAssertNotNil(getLongMessage().range(of: """
                                    Multi-line strings also let you write "quote marks"
                                    freely inside your strings, which is great!
                                    """))'''),
                testCase("testCodeWasCompiledWithSwift4Compiler",
                    """#if swift(>=5.0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/structs/hostlayout.go

    type HostLayout struct {
    	_ hostLayout // prevent accidental conversion with plain struct{}
    }
    
    // We use an unexported type within the exported type to give the marker
    // type itself, rather than merely its name, a recognizable identity in
    // the type system. The main consequence of this is that a user can give
    // the type a new name and it will still have the same properties, e.g.,
    //
    //	type HL structs.HostLayout
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerNestedBuildTest.groovy

    package org.gradle.testkit.runner
    
    import spock.lang.Issue
    
    class GradleRunnerNestedBuildTest extends BaseGradleRunnerIntegrationTest {
    
        @Issue("https://github.com/gradle/gradle/issues/2622")
        def "does not break for deeply nested builds"() {
            given:
            buildScript """          
                task nested1(type: GradleBuild)
                
                task nested2(type: GradleBuild) {
                    tasks = ['nested1']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. hack/cherry_pick_pull.sh

          echo "+++ Please resolve the conflicts in another window (and remember to 'git add / git am --continue')"
          read -p "+++ Proceed (anything other than 'y' aborts the cherry-pick)? [y/n] " -r
          echo
          if ! [[ "${REPLY}" =~ ^[yY]$ ]]; then
            echo "Aborting." >&2
            exit 1
          fi
        done
    
        if [[ "${conflicts}" != "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
Back to top