Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Boundaries (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    However, there are some things to consider depending on whether you need module information to be available, and module boundaries to be enforced, during test execution.
    In this context, the terms _whitebox testing_ (module boundaries are deactivated or relaxed) and _blackbox testing_ (module boundaries are in place) are often used.
    Whitebox testing is used/needed for unit testing and blackbox testing fits functional or integration test requirements.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter, deadcode deadValueChoice) {
    	// repeat rewrites until we find no more rewrites
    	pendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/block
    	pendingLines.clear()
    	debug := f.pass.debug
    	if debug > 1 {
    		fmt.Printf("%s: rewriting for %s\n", f.pass.name, f.Name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // On a related note, small objects are always small enough that their bitmap
    // fits in goarch.PtrSize*8 bits, so writing out bitmap data takes two bitmap
    // writes at most (because object boundaries don't generally lie on
    // s.heapBits()[i] boundaries).
    //
    // For larger objects, if t is the type for the object starting at "start",
    // within some span whose mspan is s, then the bitmap at t.GCData is "tiled"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// of the steps we need with a single traceback printer implementation.
    	//
    	// We could be more lax about exactly how many frames we print, for example
    	// always stopping and resuming on physical frame boundaries, or at least
    	// cgo expansion boundaries. It's not clear that's much simpler.
    	flags |= unwindPrintErrors
    	var u unwinder
    	tracebackWithRuntime := func(showRuntime bool) int {
    		const maxInt int = 0x7fffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Status GetFunctionNameAttr(Node const* node, string* attr) const;
    
      // Copies edges local to a subgraph. Adds _Arg and _Retval nodes to
      // subgraphs for data edges that cross subgraph boundaries.
      Status CopySubgraphEdges(
          const absl::flat_hash_map<const Node*, Node*>& node_images,
          std::vector<std::pair<const Node*, Node*>>* src_arg_pairs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	sc.setNonEmpty()
    }
    
    type piController struct {
    	kp float64 // Proportional constant.
    	ti float64 // Integral time constant.
    	tt float64 // Reset time.
    
    	min, max float64 // Output boundaries.
    
    	// PI controller state.
    
    	errIntegral float64 // Integral of the error from t=0 to now.
    
    	// Error flags.
    	errOverflow   bool // Set if errIntegral ever overflowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	errs := make(chan error, workersNumber+1)
    	workersExited := make(chan struct{})
    
    	wg.Add(workersNumber)
    	for i := 0; i < workersNumber; i++ {
    		go func() {
    			// panics don't cross goroutine boundaries
    			defer utilruntime.HandleCrash(func(panicReason interface{}) {
    				errs <- fmt.Errorf("DeleteCollection goroutine panicked: %v", panicReason)
    			})
    			defer wg.Done()
    
    			for item := range toProcess {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  8. src/time/time.go

    //
    // The calendar runs on an exact 400 year cycle: a 400-year calendar
    // printed for 1970-2369 will apply as well to 2370-2769. Even the days
    // of the week match up. It simplifies the computations to choose the
    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    // that the first leap year is the 4th year, the first missed leap year
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:interoperability]]
    == Interoperability
    
    When mixing languages in your build logic, you may have to cross language boundaries.
    An extreme example would be a build that uses tasks and plugins that are implemented in Java, Groovy and Kotlin, while also using both Kotlin DSL and Groovy DSL build scripts.
    
    Quoting the Kotlin reference documentation:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    	pph.Paddr = uint64(*FlagTextAddr) - uint64(HEADR) + pph.Off
    	pph.Align = uint64(*FlagRound)
    
    	/*
    	 * PHDR must be in a loaded segment. Adjust the text
    	 * segment boundaries downwards to include it.
    	 */
    	{
    		o := int64(Segtext.Vaddr - pph.Vaddr)
    		Segtext.Vaddr -= uint64(o)
    		Segtext.Length += uint64(o)
    		o = int64(Segtext.Fileoff - pph.Off)
    		Segtext.Fileoff -= uint64(o)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top