Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 710 for WORK (0.04 sec)

  1. src/cmd/go/testdata/script/test_fuzz_cgo.txt

    [!fuzz] skip
    [!cgo] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Test that fuzzing works with cgo (issue 65169)
    
    go test -fuzz=. -fuzztime=1x
    stdout ok
    ! stdout FAIL
    
    -- go.mod --
    module example.com/p
    
    go 1.20
    -- c.go --
    package p
    
    import "C"
    -- c_test.go --
    package p
    
    import "testing"
    
    func Fuzz(f *testing.F) {
    	f.Add(0)
    	f.Fuzz(func(t *testing.T, x int) {})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 364 bytes
    - Viewed (0)
  2. doc/next/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
    
    **Go 1.23 is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
                    gradle.taskGraph.visitScheduledNodes { nodes, entryNodes -> work = ScheduledWork(nodes, entryNodes) }
                    return work
                }
        }
    
        private
        inner class DefaultConfigurationCacheBuild(
            override val state: BuildState,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    // fmtCmd formats a command in the manner of fmt.Sprintf but also:
    //
    //	fmtCmd replaces the value of b.WorkDir with $WORK.
    func (sh *Shell) fmtCmd(dir string, format string, args ...any) string {
    	cmd := fmt.Sprintf(format, args...)
    	if sh.workDir != "" && !strings.HasPrefix(cmd, "cat ") {
    		cmd = strings.ReplaceAll(cmd, sh.workDir, "$WORK")
    		escaped := strconv.Quote(sh.workDir)
    		escaped = escaped[1 : len(escaped)-1] // strip quote characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            expect:
            2.times {
                run("work", "--parallel")
                result.assertTaskOrder(":a:work", ":a:finalizer", ":b:work")
            }
    
            and: "Apply workaround"
            buildFile """
                configure(project(':b')) {
                    work.mustRunAfter(":a:work")
                }
            """
            2.times {
                run("work", "--parallel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            events.contains([profile: "project fingerprint", type: "C", "frame": ProjectFingerprint.name])
    
            and: "Gradle and Work Graph events are logged"
            events.contains([profile: "build ':' state", type: "O", frame: "Gradle"])
            events.contains([profile: "build ':' state", type: "O", frame: "Work Graph"])
    
            and: "state frame events are logged"
            events.contains([profile: "build ':' state", type: "O", frame: ":ok"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/clean/clean.go

    	CmdClean.Flag.BoolVar(&cleanTestcache, "testcache", false, "")
    
    	// -n and -x are important enough to be
    	// mentioned explicitly in the docs but they
    	// are part of the build flags.
    
    	work.AddBuildFlags(CmdClean, work.DefaultBuildFlags)
    }
    
    func runClean(ctx context.Context, cmd *base.Command, args []string) {
    	if len(args) > 0 {
    		cacheFlag := ""
    		switch {
    		case cleanCache:
    			cacheFlag = "-cache"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil_test.go

    	return nil
    }
    
    func TestDeadlineWorker(t *testing.T) {
    	work := NewDeadlineWorker(500 * time.Millisecond)
    
    	err := work.Run(func() error {
    		time.Sleep(600 * time.Millisecond)
    		return nil
    	})
    	if err != context.DeadlineExceeded {
    		t.Error("DeadlineWorker shouldn't be successful - should return context.DeadlineExceeded")
    	}
    
    	err = work.Run(func() error {
    		time.Sleep(450 * time.Millisecond)
    		return nil
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/envcmd/env.go

    		case "GODEBUG":
    			env[i].Changed = env[i].Value != ""
    		}
    	}
    
    	if work.GccgoBin != "" {
    		env = append(env, cfg.EnvVar{Name: "GCCGO", Value: work.GccgoBin, Changed: true})
    	} else {
    		env = append(env, cfg.EnvVar{Name: "GCCGO", Value: work.GccgoName})
    	}
    
    	goarch, val, changed := cfg.GetArchEnv()
    	if goarch != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

            when: 'repo is not disabled'
            repositoryBlacklister.isDisabled(REPOSITORY_ID) >> false
            access.listModuleVersions(dependency, result)
    
            then: 'work is delegated'
            1 * delegate.listModuleVersions(dependency, result)
    
            when: 'exception is thrown in resolution'
            repositoryBlacklister.getDisabledReason(REPOSITORY_ID) >> Optional.of(exception)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top