Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for VarLive (1.59 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// TODO: what's the difference between VarLive and KeepAlive?
    	{name: "VarLive", argLength: 1, aux: "Sym", symEffect: "Read", zeroWidth: true}, // aux is a *gc.Node of a variable that must be kept live.  arg0=mem, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

            }
            executor.stop();
        }
    
        /**
         * ExecutionRunners process items from the queue until there are no items left, at which point it will either wait for
         * new items to arrive (if there are < max workers threads running) or exit, finishing the thread.
         */
        private class ExecutionRunner implements Runnable {
            @Override
            public void run() {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		call.AuxInt = stksize // Call operations carry the argsize of the callee along with them
    	}
    	s.prevCall = call
    	s.vars[memVar] = s.newValue1I(ssa.OpSelectN, types.TypeMem, int64(len(ACResults)), call)
    	// Insert VarLive opcodes.
    	for _, v := range n.KeepAlive {
    		if !v.Addrtaken() {
    			s.Fatalf("KeepAlive variable %v must have Addrtaken set", v)
    		}
    		switch v.Class {
    		case ir.PAUTO, ir.PPARAM, ir.PPARAMOUT:
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/time/tick_test.go

    		assertTick()
    		Sleep(sched)
    		tim.Reset(10000 * Second)
    		drainAsync()
    		noTick()
    
    		// Test that len sees an immediate tick arrive
    		// for Reset of timer in heap.
    		tim.Reset(1)
    		assertLen()
    		assertTick()
    
    		// Test that len sees an immediate tick arrive
    		// for Reset of timer NOT in heap.
    		tim.Stop()
    		drainAsync()
    		tim.Reset(1)
    		assertLen()
    		assertTick()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      // Note that the `OperationConverter` orders patterns lexicographically by:
      // 1) Ascending legalization depth (i.e., minimum number of patterns
      // necessary
      //    to arrive at conversion target). This requires relevant patterns to
      //    specify the list of ops generated by it which most of patterns
      //    implemented in C++ don't do so this comparison doesn't work in those
      //    cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            given:
            setupLockOwner()
            def pingRequestCount = 0
            //do not handle requests: this simulates the situation were pings do not arrive
            replaceSocketReceiver { pingRequestCount++ }
    
            when:
            def build = executer.withTasks("lock").start()
            def timer = Time.startTimer()
            poll(120) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/cmd/go/main.go

    // or else a command group that ran out of arguments
    // or had an unknown subcommand (len(cmd.Commands) > 0).
    // It returns that command and the number of elements of args
    // that it took to arrive at that command.
    func lookupCmd(args []string) (cmd *base.Command, used int) {
    	cmd = base.Go
    	for used < len(args) {
    		c := cmd.Lookup(args[used])
    		if c == nil {
    			break
    		}
    		if c.Runnable() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.cc

        }
        host_to_device_stream = host_to_device_stream_;
        device_to_device_streams = device_to_device_streams_;
        // The data transfer requests from device to host could arrive out of order,
        // so a single stream would cause deadlock. For this case,
        // xla_device_context would borrow a stream for each transfer request.
        device_to_host_stream = nullptr;
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows.go

    }
    
    func callbackasm()
    
    // callbackasmAddr returns address of runtime.callbackasm
    // function adjusted by i.
    // On x86 and amd64, runtime.callbackasm is a series of CALL instructions,
    // and we want callback to arrive at
    // correspondent call instruction instead of start of
    // runtime.callbackasm.
    // On ARM, runtime.callbackasm is a series of mov and branch instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(connection.isHealthy(System.nanoTime())).isTrue()
    
        // But if the ping doesn't arrive, the connection goes unhealthy.
        Thread.sleep(TimeUnit.NANOSECONDS.toMillis(Http2Connection.DEGRADED_PONG_TIMEOUT_NS.toLong()))
        assertThat(connection.isHealthy(System.nanoTime())).isFalse()
    
        // When a pong does arrive, the connection becomes healthy again.
        connection.writePingAndAwaitPong()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top