Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 137 for afterward (0.33 sec)

  1. src/cmd/fix/fix.go

    func walk(x any, visit func(any)) {
    	walkBeforeAfter(x, nop, visit)
    }
    
    func nop(any) {}
    
    // walkBeforeAfter is like walk but calls before(x) before traversing
    // x's children and after(x) afterward.
    func walkBeforeAfter(x any, before, after func(any)) {
    	before(x)
    
    	switch n := x.(type) {
    	default:
    		panic(fmt.Errorf("unexpected type %T in walkBeforeAfter", x))
    
    	case nil:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    		// Do initial scan for metadata needed for writing _testmain.go
    		// Use that metadata to update the list of imports for package main.
    		// The list of imports is used by recompileForTest and by the loop
    		// afterward that gathers t.Cover information.
    		t, err := loadTestFuncs(p)
    		if err != nil && pmain.Error == nil {
    			pmain.setLoadPackageDataError(err, p.ImportPath, &stk, nil)
    		}
    		t.Cover = cover
    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/runtime/chan.go

    // empty).  It is atomically correct and sequentially consistent at the moment
    // it returns, but since the channel is unlocked, the channel may become
    // non-empty immediately afterward.
    func empty(c *hchan) bool {
    	// c.dataqsiz is immutable.
    	if c.dataqsiz == 0 {
    		return atomic.Loadp(unsafe.Pointer(&c.sendq.first)) == nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    	//
    	// To prevent other processes from reading the directory if we crash,
    	// create a .partial file before extracting the directory, and delete
    	// the .partial file afterward (all while holding the lock).
    	//
    	// Before Go 1.16, we extracted to a temporary directory with a random name
    	// then renamed it into place with os.Rename. On Windows, this failed with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	}
    }
    
    // If -testwork is specified, the test prints the name of the temp directory
    // and does not remove it when done, so that a programmer can
    // poke at the test file tree afterward.
    var testWork = flag.Bool("testwork", false, "")
    
    // cleanup cleans up a test that runs testgo.
    func (tg *testgoData) cleanup() {
    	tg.t.Helper()
    	if *testWork {
    		if tg.tempdir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    However, their changes would not invalidate the configuration cache afterward.
    Starting with Gradle 8.4, such undeclared configuration inputs are correctly tracked.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * **Adding excludes**: Use <<component_metadata_rules.adoc#sec:component_metadata_rules,Component Metadata Rules>>.
    * **Roles**: Configuration roles should be set upon creation and not changed afterward.
    * **Hierarchy**: Configuration hierarchy (`extendsFrom`) should be set upon creation. Mutating the hierarchy prior to resolution is highly discouraged, but is permitted within a `withDependencies` hook.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. manifests/helm-profiles/README.md

    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Warning: unlike the `IstioOperator` profiles, these profiles cannot enable or disable certain components.
    As a result, users still need to ensure they install the appropriate charts to use a profile correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
  9. test/fixedbugs/issue8017.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issues 8017 and 8058: walk modifies nodes generated
    // by slicelit and causes an internal error afterwards
    // when gen_as_init parses it back.
    
    package main
    
    func F() {
    	var ch chan int
    	select {
    	case <-ch:
    	case <-make(chan int, len([2][]int{([][]int{})[len(ch)], []int{}})):
    	}
    }
    
    func G() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 540 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelViewClosedException.java

    /**
     * Thrown when at attempt is made to mutate a subject of a rule after the rule has completed.
     * <p>
     * This can potentially happen when a reference to the subject is retained during a rule and then used afterwards,
     * Such as when an anonymous inner class or closure “closes over” the subject.
     */
    @Incubating
    public class ModelViewClosedException extends ReadOnlyModelViewException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top