Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,906 for repoId (0.16 sec)

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

            def repo1 = mavenHttpRepo("repo1")
            def repo2 = mavenHttpRepo("repo2")
    
            given:
            buildFile << """
    repositories.clear() // Do not use default repo
    repositories {
        maven {
            url "${repo1.uri}"
            artifactUrls "${repo2.uri}"
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/repo-marker.txt

    John Dennis Casey <******@****.***> 1192565740 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 75 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            given:
            def repo1 = ivyHttpRepo("repo1")
            def repo2 = mavenHttpRepo("repo2")
            def projectAInRepo1 = repo1.module('group', 'projectA', '1.2')
            def projectAInRepo2 = repo2.module('group', 'projectA', '1.2').publish()
            def projectB = repo1.module('group', 'projectB', '1.3').publish()
    
            and:
            buildFile << """
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

        }
    
        void "cache entries are segregated between different repositories"() {
            given:
            def repo1 = ivyHttpRepo('ivy-repo-a')
            def module1 = repo1.module('org.gradle', 'testproject', '1.0').publish()
            def repo2 = ivyHttpRepo('ivy-repo-b')
            def module2 = repo2.module('org.gradle', 'testproject', '1.0').publishWithChangedContent()
    
            and:
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker_test.go

    	for i, step := range steps {
    		secondsToAdvance := step.secondsElapsed
    		if i > 0 {
    			secondsToAdvance -= steps[i-1].secondsElapsed
    		}
    		fakeClock.Step(time.Duration(secondsToAdvance) * time.Second)
    
    		// Record all droppeded requests and recompute retryAfter.
    		for r := 0; r < step.droppedRequests; r++ {
    			tracker.RecordDroppedRequest("pl")
    		}
    		if retryAfter := tracker.GetRetryAfter("pl"); retryAfter != step.retryAfter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/plugins/MavenPublishPluginTest.groovy

            publishLocalTasks.size() == 1
        }
    
        def "tasks are created for compatible publication / repo"() {
            given:
            publishing.publications.create("test", MavenPublication)
    
            when:
            def repo1 = publishing.repositories.maven { url "foo" }
            def repo2 = publishing.repositories.maven { url "foo"; name "other" }
            publishing.repositories.ivy {}
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/runtime/profbuf.go

    // entry in the fields overflow and overflowTime. The pending overflow
    // entry can be turned into a real record by either the writer or the
    // reader. If the writer is called to write a new record and finds that
    // the output buffer has room for both the pending overflow entry and the
    // new record, the writer emits the pending overflow entry and the new
    // record into the buffer. If the reader is called to read data and finds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. hack/logcheck.conf

    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    # golangci-lint will report stale results:
    #    _output/local/bin/golangci-lint cache clean
    
    # At this point we don't enforce the usage structured logging calls except in
    # those packages that were migrated. This disables the check for other files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/network.go

    			errs = multierror.Append(errs, fmt.Errorf("upstream dns failure, qtype: %v", dnsType))
    			return
    		}
    		for _, rr := range res.Answer {
    			switch record := rr.(type) {
    			case *dns.A:
    				out = append(out, record.A.String())
    			case *dns.AAAA:
    				out = append(out, record.AAAA.String())
    			}
    		}
    		if nextTTL := minimalTTL(res); nextTTL < ttl {
    			ttl = nextTTL
    		}
    	}
    
    	wg.Add(2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/software/resources-sftp/src/test/groovy/org/gradle/internal/resource/transport/sftp/SftpClientFactoryTest.groovy

            def mockSftpClient1 = Mock(LockableSftpClient)
            def mockSftpClient2 = Mock(LockableSftpClient)
    
            given:
            URI uri1 = new URI('http://localhost:22/repo1')
            URI uri2 = new URI('http://localhost:22/repo2')
            PasswordCredentials credentials1 = new DefaultPasswordCredentials('sftp1', 'sftp1')
            PasswordCredentials credentials2 = new DefaultPasswordCredentials('sftp2', 'sftp2')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top