Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for enterIf (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    }
    
    // -----
    
    // Check that a tf_executor.Enter parent is a graph.
    func.func @parent_is_graph(%arg0: tensor<*xf32>) {
      "tf.some_op"() ({
        %res:2 = tf_executor.Enter %arg0 frame "some/fra\"me" : tensor<*xf32>
    // expected-error@-1 {{'tf_executor.Enter' op expects parent op 'tf_executor.graph'}}
      }) : () -> ()
      func.return
    }
    
    // -----
    
    // Check that Enter return value is the same type as the input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

         * Call this when an error occurs during class loading.
         * This method only records the error but doesn't throw any exceptions.
         * The exception will be rethrown (wrapped in a ClassNotFoundException) when this thread enters or exits the class loading scope.
         * <p>
         * This may be called outside the class loading scope.
         *
         * @param className the name of the class that was loading
         * @param cause the original exception
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

        }
    
        override fun leaveDynamicCall(entryPoint: Any) {
            val innermostCall = currentThreadState.callStack.pop()
            check(entryPoint == innermostCall.entryPoint) { "Mismatched enter-leave calls in DynamicCallProjectIsolationProblemReporting" }
        }
    
        override fun unreportedProblemInCurrentCall(problemKey: Any): Boolean {
            val currentThreadCallStack = currentThreadState.callStack
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "exit hint does not mention enter when not on windows"() {
            when:
            file("a").touch()
            buildScript "task a { inputs.file 'a'; outputs.file 'b'; doLast {} }"
    
            then:
            succeeds "a"
            output.endsWith("(ctrl-d to exit)\n")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "exit hint mentions enter when on windows"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

            assertNotNull(bean.myBean);
            assertNotSame(bean.myBean.getClass(), MySessionScopedBean.class);
    
            assertThrows(OutOfScopeException.class, () -> bean.myBean.getSession());
    
            sessionScope.enter();
            sessionScope.seed(Session.class, this.session);
            assertNotNull(bean.myBean.getSession());
            assertNotNull(bean.myBean.getAnotherBean());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:52:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                }
            }
    
            @Override
            protected FileVisitResult doPreVisitDirectory(Path dir, BasicFileAttributes attrs) {
                String fileName = getInternedFileName(dir);
                pathTracker.enter(fileName);
                if (shouldVisitDirectory(dir, fileName)) {
                    String internedRemappedAbsolutePath = intern(symbolicLinkMapping.remapAbsolutePath(dir));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Node* node = options.FinalizeBuilder(&node_builder);
      // Add any Enter nodes required to bring the constant to the correct control
      // flow frame.
      while (!control_flow_info[src_node->id()].frame_name.empty()) {
        NodeDebugInfo debug_info(*src_node);
        NodeBuilder enter_builder(options.GetNameForOp("Enter"), "Enter",
                                  options.op_registry(), &debug_info);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. src/cmd/trace/threadgen.go

    	if to == trace.GoSyscall {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no P here
    		// if we're in a cgo callback or this is a transition from GoUndetermined
    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, ev.Thread(), ev.Stack())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/os/pipe_test.go

    	}
    	defer r.Close()
    	defer w.Close()
    
    	// Close the read end of the pipe in a goroutine while we are
    	// writing to the write end, or vice-versa.
    	go func() {
    		// Give the main goroutine a chance to enter the Read or
    		// Write call. This is sloppy but the test will pass even
    		// if we close before the read/write.
    		time.Sleep(20 * time.Millisecond)
    
    		var err error
    		if read {
    			err = r.Close()
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/runtime/cgo/libcgo.h

    #elif defined(__SANITIZE_THREAD__)
    # define CGO_TSAN
    #endif
    
    #ifdef CGO_TSAN
    
    // These must match the definitions in yesTsanProlog in cmd/cgo/out.go.
    // In general we should call _cgo_tsan_acquire when we enter C code,
    // and call _cgo_tsan_release when we return to Go code.
    // This is only necessary when calling code that might be instrumented
    // by TSAN, which mostly means system library calls that TSAN intercepts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top