Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,536 for rerunning (0.34 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            file('lib/src/main/java/Lib.java').text = """
                public class Lib { public static void main() {
                    System.out.println("After!");
                } }
            """
    
            and: 'rerunning the build'
            inDirectory 'app'
            configurationCacheRun 'run'
    
            then: 'it should pick up the changes'
            outputContains 'After!'
            configurationCache.assertStateLoaded()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/kube/krt/fetch.go

    		ff := func(o []Event[T], initialSync bool) {
    			f(slices.Map(o, castEvent[T, any]), initialSync)
    		}
    		// Skip calling all the existing state for secondary dependencies, otherwise we end up with a deadlock due to
    		// rerunning the same collection's recomputation at the same time (once for the initial event, then for the initial registration).
    		c.RegisterBatch(ff, false)
    	})
    
    	// Now we can do the real fetching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm_test.go

    	buildcfg.GOARCH = "ppc64le"
    	buildcfg.GOPPC64 = 8
    	buildop(nil)
    	optabLen := len(optab)
    	buildcfg.GOPPC64 = 9
    	buildop(nil)
    	reinitOptabLen := len(optab)
    	if reinitOptabLen != optabLen {
    		t.Errorf("rerunning buildop changes optab size from %d to %d", optabLen, reinitOptabLen)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ====
    
    [[sec:hidden_tasks]]
    == Private and hidden tasks
    
    Gradle doesn't support marking a task as _private_.
    
    However, tasks will only show up when running `:tasks` if `task.group` is set or no other task depends on it.
    
    For instance, the following task will not appear when running `./gradlew :app:tasks` because it does not have a group; it is called a _hidden_ task:
    
    ====
    [.multi-language-sample]
    =====
    .app/build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    2. They facilitate incremental building. +
    For example, suppose Gradle recognizes that the inputs and outputs of a task remain unchanged. In that case, it can leverage results from previous build runs or the build cache, avoiding rerunning the task action altogether.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    				run(workdir, ShowOutput|CheckExit, goBinary, "list", "-f={{.ImportPath}} {{.Stale}}", target)
    				break
    			}
    		}
    		fatalf("unexpected stale targets reported by %s list -gcflags=\"%s\" -ldflags=\"%s\" for %v (consider rerunning with GOMAXPROCS=1 GODEBUG=gocachehash=1):\n%s", goBinary, gogcflags, goldflags, targets, out)
    	}
    }
    
    // Cannot use go/build directly because cmd/dist for a new release
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

        gradle cleanTest test
    
    `cleanTest` is based on a task rule provided by the <<base_plugin.adoc#sec:base_tasks,Base Plugin>>. You can use it for _any_ task.
    
    [[sec:debugging_java_tests]]
    == Debugging when running tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. clause/returning.go

    package clause
    
    type Returning struct {
    	Columns []Column
    }
    
    // Name where clause name
    func (returning Returning) Name() string {
    	return "RETURNING"
    }
    
    // Build build where clause
    func (returning Returning) Build(builder Builder) {
    	if len(returning.Columns) > 0 {
    		for idx, column := range returning.Columns {
    			if idx > 0 {
    				builder.WriteByte(',')
    			}
    
    			builder.WriteQuoted(column)
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Oct 27 23:56:55 UTC 2021
    - 681 bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    has failed.
    
    In package list mode only, go test caches successful package test
    results to avoid unnecessary repeated running of tests. When the
    result of a test can be recovered from the cache, go test will
    redisplay the previous output instead of running the test binary
    again. When this happens, go test prints '(cached)' in place of the
    elapsed time in the summary line.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/configuration-cache/running-help.gif

    running-help.gif...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156.9K bytes
    - Viewed (0)
Back to top