Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for yield4x (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                "This behavior has been deprecated. This will fail with an error in Gradle 9.0. " +
                "Resolving relative file paths might yield unexpected results, there is no single clear location it would make sense to resolve against. " +
                "Configure an absolute path to a Java executable instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/replicate_invariant_op_hoisting.cc

    limitations under the License.
    ==============================================================================*/
    
    // This pass hoists replicate invariant ops, or ops that yield the same
    // result(s) regardless of replication, out of their respective replicate.
    
    #include <memory>
    #include <optional>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/Support/Casting.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/runtime/traceevent.go

    	traceEvGoDestroy           // goroutine ends [timestamp]
    	traceEvGoDestroySyscall    // goroutine ends in syscall (cgo callback) [timestamp]
    	traceEvGoStop              // goroutine yields its time, but is runnable [timestamp, reason, stack ID]
    	traceEvGoBlock             // goroutine blocks [timestamp, reason, stack ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

          }
        }
      }
      return invariant;
    }
    
    Operation* GetAnyReturn(Region* region) {
      Operation* result;
      // We only go one level deep, since "returns" in nested functions
      // and return-as-yield CF don't belong to us.
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
          if (op.hasTrait<OpTrait::ReturnLike>()) result = &op;
        }
      }
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. docs/en/mkdocs.yml

          - tutorial/dependencies/sub-dependencies.md
          - tutorial/dependencies/dependencies-in-path-operation-decorators.md
          - tutorial/dependencies/global-dependencies.md
          - tutorial/dependencies/dependencies-with-yield.md
        - Security:
          - tutorial/security/index.md
          - tutorial/security/first-steps.md
          - tutorial/security/get-current-user.md
          - tutorial/security/simple-oauth2.md
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/sync/mutex.go

    			if atomic.CompareAndSwapInt32(&m.state, old, new) {
    				runtime_Semrelease(&m.sema, false, 1)
    				return
    			}
    			old = m.state
    		}
    	} else {
    		// Starving mode: handoff mutex ownership to the next waiter, and yield
    		// our time slice so that the next waiter can start to run immediately.
    		// Note: mutexLocked is not set, the waiter will set it after wakeup.
    		// But mutex is still considered locked if mutexStarving is set,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top