Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for afterward (0.19 sec)

  1. 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)
  2. 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)
  3. src/testing/testing.go

    		return
    	}
    
    	// We don't want to include the time we spend waiting for serial tests
    	// in the test duration. Record the elapsed time thus far and reset the
    	// timer afterwards.
    	t.duration += highPrecisionTimeSince(t.start)
    
    	// Add to the list of tests to be released by the parent.
    	t.parent.sub = append(t.parent.sub, t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			continue
    		} else {
    			// Keep the container.
    			keepCount++
    			continue
    		}
    
    		// We need to kill the container, but if we also want to restart the
    		// container afterwards, make the intent clear in the message. Also do
    		// not kill the entire pod since we expect container to be running eventually.
    		if restart {
    			message = fmt.Sprintf("%s, will be restarted", message)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		go gcBgMarkWorker(ready)
    		releasem(mp)
    
    		// N.B. we intentionally wait on each goroutine individually
    		// rather than starting all in a batch and then waiting once
    		// afterwards. By running one goroutine at a time, we can take
    		// advantage of runnext to bounce back and forth between
    		// workers and this goroutine. In an overloaded application,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    				p.errorAt(pos, "empty type argument list")
    				f.Type = name
    			}
    			break
    		}
    
    		// A type argument list looks like a parameter list with only
    		// types. Parse a parameter list and decide afterwards.
    		list := p.paramList(nil, nil, _Rbrack, false)
    		if len(list) == 0 {
    			// The type parameter list is not [] but we got nothing
    			// due to other errors (reported by paramList). Treat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top