Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for testRepo (0.19 sec)

  1. testing/public-api-tests/build.gradle.kts

     */
    
    plugins {
        // TODO Can we apply less here?
        id("gradlebuild.internal.java")
    
    //    id("gradlebuild.repositories")
    //    id("gradlebuild.integration-tests")
    }
    
    val testRepo = configurations.dependencyScope("testRepo")
    val resolveTestRepo = configurations.resolvable("resolveTestRepo") {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

                useHostname()
                start()
            }
            def remoteRepo = new MavenHttpRepository(server, mavenRepo)
    
            def repositoryName = "testrepo"
            settingsFile "rootProject.name = 'root'"
            buildFile buildFileConfiguration("""
                repositories {
                    maven {
                        name "${repositoryName}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    func TestNopgo(*testing.T) {}
    -- dep/dep.go --
    package dep
    import _ "test/dep3"
    -- dep2/dep2.go --
    package dep2
    -- dep3/dep3.go --
    package dep3
    -- testdep/testdep.go --
    package testdep
    import _ "test/testdep2"
    -- testdep2/testdep2.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/testing/internal/testdeps/deps.go

    		return nil
    	}
    	return err
    }
    
    func (TestDeps) ReadCorpus(dir string, types []reflect.Type) ([]fuzz.CorpusEntry, error) {
    	return fuzz.ReadCorpus(dir, types)
    }
    
    func (TestDeps) CheckCorpus(vals []any, types []reflect.Type) error {
    	return fuzz.CheckCorpus(vals, types)
    }
    
    func (TestDeps) ResetCoverage() {
    	fuzz.ResetCoverage()
    }
    
    func (TestDeps) SnapshotCoverage() {
    	fuzz.SnapshotCoverage()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/test.go

    {{end}}
    }
    
    func init() {
    {{if .Cover}}
    	testdeps.CoverMode = {{printf "%q" .Cover.Mode}}
    	testdeps.Covered = {{printf "%q" .Covered}}
    	testdeps.CoverSnapshotFunc = cfile.Snapshot
    	testdeps.CoverProcessTestDirFunc = cfile.ProcessCoverTestDir
    	testdeps.CoverMarkProfileEmittedFunc = cfile.MarkProfileEmitted
    
    {{end}}
    	testdeps.ImportPath = {{.ImportPath | printf "%q"}}
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            abusedCoordinates.pom.file.replace('<groupId>org.spring</groupId>', '<groupId>org.spring/../../../../../</groupId>')
            // Our test dependency that now has a crafty dependency itself
            def testDep = mavenHttpRepo.module('org.test', 'test').dependsOn(pwnedDep, type: '/../../../../.ssh/pwned.txt').publish()
    
            def fakeDep = temporaryFolder.testDirectory.file('fake-repo/pwned.txt')
            fakeDep << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. pkg/util/coverage/fake_test_deps.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package coverage
    
    import (
    	"io"
    	"reflect"
    	"time"
    )
    
    // This is an implementation of testing.testDeps. It doesn't need to do anything, because
    // no tests are actually run. It does need a concrete implementation of at least ImportPath,
    // which is called unconditionally when running tests.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/testing/fuzz.go

    	// filepath.Base of the string returned here.
    	CrashPath() string
    }
    
    // fuzzContext holds fields common to all fuzz tests.
    type fuzzContext struct {
    	deps testDeps
    	mode fuzzMode
    }
    
    type fuzzMode uint8
    
    const (
    	seedCorpusOnly fuzzMode = iota
    	fuzzCoordinator
    	fuzzWorker
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/ep_filters_test.go

    			shards.Shards[sk][i] = ep
    		}
    	}
    	// convert to EndpointIndex
    	index := model.NewEndpointIndex(model.NewXdsCache())
    	for shardKey, testEps := range shards.Shards {
    		svc, _ := index.GetOrCreateEndpointShard("example.ns.svc.cluster.local", "ns")
    		svc.Lock()
    		svc.Shards[shardKey] = testEps
    		svc.Unlock()
    	}
    	return index
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	// harness calls os.Exit with this code. See #34129.
    	exitCode int
    }
    
    // testDeps is an internal interface of functionality that is
    // passed into this package by a test's generated main package.
    // The canonical implementation of this interface is
    // testing/internal/testdeps's TestDeps.
    type testDeps interface {
    	ImportPath() string
    	MatchString(pat, str string) (bool, error)
    	SetPanicOnExit0(bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top