Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,013 for repoId (0.12 sec)

  1. src/cmd/link/internal/ld/stackcheck.go

    		// expensive work to report a good error. First, for
    		// the over-limit functions, redo the stack check but
    		// record the graph this time.
    		sc = newStackCheck(ctxt, true)
    		for _, s := range failed {
    			sc.check(s)
    		}
    
    		// Find the roots of the graph (functions that are not
    		// called by any other function).
    		roots := sc.findRoots()
    
    		// Find and report all paths that go over the limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    				targsList = [][]Type{targs}
    				xlistList = [][]syntax.Expr{xlist}
    				// Update x.expr so that we can record the partially instantiated function.
    				x.expr = inst
    			} else {
    				// x was instantiated: we must record it here because we didn't
    				// use the usual expression evaluators.
    				check.record(&x)
    			}
    			resList = []*operand{&x}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/go/types/call.go

    				targsList = [][]Type{targs}
    				xlistList = [][]ast.Expr{xlist}
    				// Update x.expr so that we can record the partially instantiated function.
    				x.expr = ix.Orig
    			} else {
    				// x was instantiated: we must record it here because we didn't
    				// use the usual expression evaluators.
    				check.record(&x)
    			}
    			resList = []*operand{&x}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. .github/workflows/build.yml

            run: ./gradlew test -Dtest.java.version=11
    
          - name: Publish Test Report
            if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
            uses: mikepenz/action-junit-report@v4
            with:
              report_paths: '**/build/test-results/*/TEST-*.xml'
              check_name: OpenJDK 11 Test Report
    
          - name: Publish Test Results
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultMavenArtifactRepositoryTest.groovy

            repository.url = 'repo-dir'
            repository.artifactUrls('repo1', 'repo2')
    
            when:
            def repo = repository.createResolver()
    
            then:
            repo instanceof MavenResolver
            repo.root == uri
            repo.artifactPatterns.size() == 3
            repo.artifactPatterns.any { it.startsWith uri.toString() }
            repo.artifactPatterns.any { it.startsWith uri1.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top