Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for testRepo (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/coverage/cfile/emit.go

    // Package cfile implements management of coverage files.
    // It provides functionality exported in runtime/coverage as well as
    // additional functionality used directly by package testing
    // through testing/internal/testdeps.
    package cfile
    
    import (
    	"crypto/md5"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/encodecounter"
    	"internal/coverage/encodemeta"
    	"internal/coverage/rtcov"
    	"io"
    	"os"
    	"path/filepath"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    	internal/coverage/pods
    	< internal/coverage/cfile
    	< runtime/coverage;
    
    	internal/coverage/cfile, internal/fuzz, internal/testlog, runtime/pprof, regexp
    	< testing/internal/testdeps;
    
    	# Test-only packages can have anything they want
    	CGO, internal/syscall/unix < net/internal/cgotest;
    
    
    `
    
    // listStdPkgs returns the same list of packages as "go list std".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/internal/fuzz/fuzz.go

    		c.corpus.entries = append(c.corpus.entries, e)
    	}
    	return noDupes, nil
    }
    
    // CorpusEntry represents an individual input for fuzzing.
    //
    // We must use an equivalent type in the testing and testing/internal/testdeps
    // packages, but testing can't import this package directly, and we don't want
    // to export this type from testing. Instead, we use the same struct type and
    // use a type alias (not a defined type) for convenience.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top