Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for watcher (0.31 sec)

  1. src/runtime/mgc.go

    		// 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,
    		// this can reduce GC start latency by prioritizing these
    		// goroutines rather than waiting on the end of the run queue.
    		<-ready
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // optionally followed by a '-' and a colon-separated list of
      // negative patterns (tests to exclude).  A test is run if it
      // matches one of the positive patterns and does not match any of
      // the negative patterns.
      //
      // For example, *A*:Foo.* is a filter that matches any string that
      // contains the character 'A' or starts with "Foo.".
      bool should_run() const { return should_run_; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        }) {is_stateless = false} : (tensor<i1>) -> tensor<*xf32>
    ```
    ### `-tf-functional-to-executor-conversion`
    
    _Transform from func op to TF executor dialect._
    
    ### `-tf-fused-kernel-matcher`
    
    _Matches computations corresponding to optimized fused kernels_
    
    ### `-tf-gpu-op-fusion`
    
    _Fusion optimization for GPU targets_
    
    This pass is performing fusion specific to GPU targets. This is an ad-hoc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top