Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 404 for checkset (0.58 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

            buildFile << """
                dependencies {
                    compile "group:moduleA"
                    compile platform("group:bom:1.0")
                }
            """
    
            when:
            succeeds 'checkDep'
    
            then:
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module("group:bom:1.0:platform-runtime") {
                        constraint("group:moduleA:2.0", "group:moduleA:2.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

                .dependsOn(notRequired, scope: 'provided')
                .publish()
    
            buildFile << """
    dependencies {
        conf 'test:target:1.0'
    }
    """
            expect:
            succeeds 'checkDep'
            resolve.expectDefaultConfiguration("runtime")
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module('test:target:1.0') {
                        module('test:test5:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDependencyResolveIntegrationTest.groovy

                }
                'org.gradle:other:preview-1' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
    
            expect:
            succeeds "checkDep"
            resolve.expectGraph {
                root(':', 'org.gradle:testproject:1.0') {
                    module("org.gradle:test:1.45") {
                        module("org.gradle:other:preview-1")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
        # the head of the pull request instead of the merge commit.
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    git add another.txt
    git commit -a -m 'another'
    git tag v2.0.2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    cp stdout v3/sub/dir/file.txt
    git add v3
    git commit -a -m 'add v3/sub/dir/file.txt'
    
    at 2018-04-17T22:23:00-04:00
    git checkout master
    git tag -a v1.2.4-annotated -m 'v1.2.4-annotated'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/RemoteProject.groovy

            }
            return tmpDir
        }
    
        @TypeChecked(TypeCheckingMode.SKIP)
        static File checkout(FileSystemOperations fsOps, ExecOperations execOps, String remoteUri, String ref, File checkoutDir) {
            cleanTemporaryDir(fsOps, checkoutDir)
            execOps.exec {
                commandLine = ["git", "clone", "--no-checkout", remoteUri, checkoutDir.absolutePath]
                errorOutput = System.out
            }
            execOps.exec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                    }
                }
            """
            repoB.createBranch('release')
            repoB.checkout('release')
            repoB.commit('version 1.2')
            repoB.createLightWeightTag('1.2')
            repoC.createBranch('release')
            repoC.checkout('release')
            repoC.commit('version 1.2')
            repoC.createLightWeightTag('1.2')
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                            message = "second commit"
                        }
                    }
                }
    
                task checkout {
                    dependsOn tag
                    doLast {
                        assert sourceFile.text == 'goodbye world'
                        grgit.checkout {
                            branch = 'previous'
                        }
                        assert sourceFile.text == 'hello world'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          # Checkout must run before the caching key is computed using the `hashFiles` method
    
        - name: Cache Gradle Modules
          uses: actions/cache@v4
          with:
            path: |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. cmd/object-api-input-checks.go

    import (
    	"context"
    	"encoding/base64"
    	"runtime"
    	"strings"
    
    	"github.com/minio/minio-go/v7/pkg/s3utils"
    )
    
    // Checks on CopyObject arguments, bucket and object.
    func checkCopyObjArgs(ctx context.Context, bucket, object string) error {
    	return checkBucketAndObjectNames(ctx, bucket, object)
    }
    
    // Checks on GetObject arguments, bucket and object.
    func checkGetObjArgs(ctx context.Context, bucket, object string) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top