Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 148 for __callback (0.17 sec)

  1. pkg/kube/kclient/client.go

    	delayedClient := &delayedClient[T]{
    		inf:     new(atomic.Pointer[Informer[T]]),
    		delayed: delay,
    	}
    
    	// If resource is not yet known, we will use the delayedClient.
    	// When the resource is later loaded, the callback will trigger and swap our dummy delayedClient
    	// with a full client
    	readyNow := delay.KnownOrCallback(func(stop <-chan struct{}) {
    		// The inf() call is responsible for starting the informer
    		inf := getInf()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

         *
         * ```kt
         * fun usage(action: String.(Int) -> String) {
         *   "hello".<expr>action</expr>(10)
         * }
         * ```
         *
         * The user might want to know the type of the `action` callback. If we always return null for the named references,
         * we won't be able to handle this request, and just return null. So the user will only be able to see the type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token.go

    			 - The name of the Secret must be named "bootstrap-token-(token-id)".
    
    			You can read more about bootstrap tokens here:
    			  https://kubernetes.io/docs/admin/bootstrap-tokens/
    		`),
    
    		// Without this callback, if a user runs just the "token"
    		// command without a subcommand, or with an invalid subcommand,
    		// cobra will print usage information, but still exit cleanly.
    		// We want to return an error code in these cases so that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/runtime/race_amd64.s

    call:
    	ANDQ	$~15, SP	// alignment for gcc ABI
    	CALL	AX
    	MOVQ	R12, SP
    	// Back to Go world, set special registers.
    	// The g register (R14) is preserved in C.
    	XORPS	X15, X15
    	RET
    
    // C->Go callback thunk that allows to call runtime·racesymbolize from C code.
    // Direct Go->C race call has only switched SP, finish g->g0 switch by setting correct g.
    // The overall effect of Go->C->Go call chain is similar to that of mcall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

          // Make sure when the pass is FallbackEnabled, it only modifies the MLIR
          // module in case of no failures.
          auto module_ref_clone = module_ref->clone();
          timings.Reset({kTfMlirCategory, name.str() + "_fallback"});
          pass_status = pass_registration.pass->Run(
              function_name, config_proto, module_ref_clone, **graph, *flib_def);
          timings.ReportAndStop();
    
          if (pass_status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

            if (projectsLoaded) {
                assert rootProject != null;
                action.execute(rootProject);
            } else {
                // only need to decorate when this callback is delayed
                rootProjectActions.add(decorate(registrationPoint, action));
            }
        }
    
        @Override
        public void allprojects(final Action<? super Project> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

        // downside. If we were to add the ability for computations to wait directly
        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
        // destination stream, but when this function returns, the send requests
        // might not be enqueued to the stream yet, we put it on destination stream.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	}
    
    	if test.validate != nil {
    		if err := test.validate(connState); err != nil {
    			t.Fatalf("validate callback returned error: %s", err)
    		}
    	}
    
    	if write {
    		path := test.dataPath()
    		out, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    // Split the tfg.NextIteration into tf_executor::NextIterationSourceOp and
    // tf_executor::NextIterationSinkOp to break the cycle introduced by itself.
    static void SplitNextIteration(Block &block) {
      // TODO(b/207144333): Supports callback for unregistered ops
      block.walk([&](Operation *op) {
        if (op->getName().getStringRef() != "tfg.NextIteration") return;
        mlir::OpBuilder builder(op);
    
        llvm::SmallVector<Value, 2> new_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    //
    // 1. On systems without pthreads, like Windows
    // dropm is called when a cgo callback has called needm but is now
    // done with the callback and returning back into the non-Go thread.
    //
    // The main expense here is the call to signalstack to release the
    // m's signal stack, and then the call to needm on the next callback
    // from this thread. It is tempting to try to save the m for next time,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top