Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for tcCall (0.28 sec)

  1. src/runtime/proc.go

    // so that we can set up g0.sched to return to the call of mstart1 above.
    //
    //go:noinline
    func mstart1() {
    	gp := getg()
    
    	if gp != gp.m.g0 {
    		throw("bad runtime·mstart")
    	}
    
    	// Set up m.g0.sched as a label returning to just
    	// after the mstart1 call in mstart0 above, for use by goexit0 and mcall.
    	// We're never coming back to mstart1 after we call schedule,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            }
          }
        }
      }
    
      /**
       * Call the non-timed {@link Future#get()} in a way that allows us to abort if it's expected to
       * hang forever. More precisely, if it's expected to return, we simply call it[*], but if it's
       * expected to hang (because one of the input futures that we know makes it up isn't done yet),
       * then we call it in a separate thread (using pseudoTimedGet). The result is that we wait as long
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            }
          }
        }
      }
    
      /**
       * Call the non-timed {@link Future#get()} in a way that allows us to abort if it's expected to
       * hang forever. More precisely, if it's expected to return, we simply call it[*], but if it's
       * expected to hang (because one of the input futures that we know makes it up isn't done yet),
       * then we call it in a separate thread (using pseudoTimedGet). The result is that we wait as long
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    				}
    
    				if yt.zcase == Zcallduff && ctxt.Arch.Family == sys.AMD64 {
    					// Maintain BP around call, since duffcopy/duffzero can't do it
    					// (the call jumps into the middle of the function).
    					// This makes it possible to see call sites for duffcopy/duffzero in
    					// BP-based profiling tools like Linux perf (which is the
    					// whole point of maintaining frame pointers in Go).
    					// MOVQ BP, -16(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			t.Fatalf("Test %d: %s: Failed to create HTTP request for Head Object: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          For example, the code
            x.a()
            x.b()
            %c = y.c()
            x.d(%c)
          would be transformed into something like
            call @x_1()
            %c = call @y_1()
            call @x_2(%c)
          with @x_1, @x_2 and @y_1 filled in.
      }];
      let constructor = "TF::CreateGroupByDialectPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
        return h ^ (h >>> 16);
      }
    
      /**
       * This method is a convenience for testing. Code should call {@link Segment#newEntry} directly.
       */
      @VisibleForTesting
      ReferenceEntry<K, V> newEntry(K key, int hash, @CheckForNull ReferenceEntry<K, V> next) {
        Segment<K, V> segment = segmentFor(hash);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // converted to the another for a function call or assignment or there is a
      // common source of inputs for both. Therefore, the While op requires the
      // following pairs of type lists to be cast compatible for the tensor_cast
      // operation:
      //
      // * Operands and cond inputs to call the cond function before the
      //   first iteration.
      // * Operands and body inputs to call the body function for the first
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	R_386_TLS_GD_CALL   R_386 = 26 /* call instruction for Sun ABI GD sequence */
    	R_386_TLS_GD_POP    R_386 = 27 /* popl instruction for Sun ABI GD sequence */
    	R_386_TLS_LDM_32    R_386 = 28 /* 32 bit offset to GOT (index,zero) pair */
    	R_386_TLS_LDM_PUSH  R_386 = 29 /* pushl instruction for Sun ABI LD sequence */
    	R_386_TLS_LDM_CALL  R_386 = 30 /* call instruction for Sun ABI LD sequence */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    			Error(w, deniedMsg, StatusUnauthorized)
    		}))
    		// We need to close cst explicitly here so that in-flight server
    		// requests don't race with the call to SetRSTAvoidanceDelay for a retry.
    		defer cst.close()
    		ts := cst.ts
    		c := ts.Client()
    
    		res, err := c.Post(ts.URL, "application/octet-stream", neverEnding('a'))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top