Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for pawn (0.04 sec)

  1. guava/src/com/google/common/eventbus/EventBus.java

     *
     * <p>When {@code post} is called, all registered subscribers for an event are run in sequence, so
     * subscribers should be reasonably quick. If an event may trigger an extended process (such as a
     * database load), spawn a thread or queue it for later. (For a convenient way to do this, use an
     * {@link AsyncEventBus}.)
     *
     * <h2>Subscriber Methods</h2>
     *
     * <p>Event subscriber methods must accept only one argument: the event.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

        core_tpu_ops.insert(&op);
      }
    
      GatherOpsForExtraction(&core_tpu_ops, merged_set, /*predecessors=*/true,
                             /*successors=*/true);
    
      // TODO(patn): Verify that all the ops here fall between the forward pass
      // and backward pass ops (i.e., not before the forward pass or after the
      // backward pass).
      return LogicalResult::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. internal/logger/target/http/http.go

    				if time.Since(lastBatchProcess).Seconds() < 1 {
    					continue
    				}
    			}
    		}
    
    		lastBatchProcess = time.Now()
    
    	retry:
    		// If the channel reaches above half capacity
    		// we spawn more workers. The workers spawned
    		// from this main worker routine will exit
    		// once the channel drops below half capacity
    		// and when it's been at least 30 seconds since
    		// we launched a new worker.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    	// Subsequent blocks, if any. The number and order depend on the block kind.
    	Succs []Edge
    
    	// Inverse of successors.
    	// The order is significant to Phi nodes in the block.
    	// TODO: predecessors is a pain to maintain. Can we somehow order phi
    	// arguments by block id and have this field computed explicitly when needed?
    	Preds []Edge
    
    	// A list of values that determine how the block is exited. The number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. internal/grid/muxclient.go

    		return nil, err
    	}
    	if debugPrint {
    		fmt.Println("Connecting Mux", m.MuxID, ",to", m.parent.Remote)
    	}
    
    	// Space for one message and an error.
    	responseCh := make(chan Response, 1)
    
    	// Spawn simple disconnect
    	if requests == nil {
    		go m.handleOneWayStream(responseCh, responses)
    		return &Stream{responses: responseCh, Requests: nil, ctx: m.ctx, cancel: m.cancelFn, muxID: m.MuxID}, nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    		[maxLen]byte{'i', '-', 'n', 'a', 'v', 'a', 'j', 'o'}:           _nv,  // i-navajo
    		[maxLen]byte{'i', '-', 'p', 'w', 'n'}:                          _pwn, // i-pwn
    		[maxLen]byte{'i', '-', 't', 'a', 'o'}:                          _tao, // i-tao
    		[maxLen]byte{'i', '-', 't', 'a', 'y'}:                          _tay, // i-tay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. docs/pl/docs/index.md

    ---
    
    "_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. docs/he/docs/index.md

    ---
    
    "_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    					rc.desiredStateOfWorld.SetMultiAttachError(volumeToAttach.VolumeName, volumeToAttach.NodeName)
    				}
    				continue
    			}
    		}
    
    		// Volume/Node doesn't exist, spawn a goroutine to attach it
    		logger.V(5).Info("Starting attacherDetacher.AttachVolume", "volume", volumeToAttach)
    		err := rc.attacherDetacher.AttachVolume(logger, volumeToAttach.VolumeToAttach, rc.actualStateOfWorld)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. docs/uk/docs/index.md

    ---
    
    "_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top