Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for predefined (0.17 sec)

  1. src/cmd/internal/goobj/objfile.go

    	PkgIdxHashed64                      // Short hashed (content-addressable) symbols
    	PkgIdxHashed                        // Hashed (content-addressable) symbols
    	PkgIdxBuiltin                       // Predefined runtime symbols (ex: runtime.newobject)
    	PkgIdxSelf                          // Symbols defined in the current package
    	PkgIdxSpecial  = PkgIdxSelf         // Indices above it has special meanings
    	PkgIdxInvalid  = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/sql-databases-peewee.md

    If you are developing an application with an older non-async framework, and can work with all its defaults, **it can be a great tool**.
    
    But if you need to change some of the defaults, support more than one predefined database, work with an async framework (like FastAPI), etc, you will need to add quite some complex extra code to override those defaults.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public class CycleDetectingLockFactory {
    
      /**
       * Encapsulates the action to be taken when a potential deadlock is encountered. Clients can use
       * one of the predefined {@link Policies} or specify a custom implementation. Implementations must
       * be thread-safe.
       *
       * @since 13.0
       */
      public interface Policy {
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public class CycleDetectingLockFactory {
    
      /**
       * Encapsulates the action to be taken when a potential deadlock is encountered. Clients can use
       * one of the predefined {@link Policies} or specify a custom implementation. Implementations must
       * be thread-safe.
       *
       * @since 13.0
       */
      public interface Policy {
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry.go

    		GracefulDeletionInterval:  filterConfig.GracefulDeletionInterval,
    	}
    
    	for _, override := range listenerCfg.Overrides {
    		metricName, f := metricToPrometheusMetric[override.Name]
    		if !f {
    			// Not a predefined metric, must be a custom one
    			metricName = override.Name
    		}
    		mc := &stats.MetricConfig{
    			Dimensions: map[string]string{},
    			Name:       metricName,
    			Drop:       override.Disabled,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/interface.go

    type PluginScore struct {
    	// Name is the name of plugin or extender.
    	Name  string
    	Score int64
    }
    
    // Code is the Status code/type which is returned from plugins.
    type Code int
    
    // These are predefined codes used in a Status.
    // Note: when you add a new status, you have to add it in `codes` slice below.
    const (
    	// Success means that plugin ran correctly and found pod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    		return true
    	case *ast.SelectStmt:
    		return true
    	case *ast.TypeSwitchStmt:
    		return true
    	case *ast.ExprStmt:
    		// Calls to panic change the flow.
    		// We really should verify that "panic" is the predefined function,
    		// but without type checking we can't and the likelihood of it being
    		// an actual problem is vanishingly small.
    		if call, ok := s.X.(*ast.CallExpr); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    	<-called
    	close(ch)
    	received <- struct{}{}
    
    	// it should take at most 2 seconds + some overhead, not 3
    	if now.Add(3 * time.Second).Before(time.Now()) {
    		t.Errorf("JitterUntil did not returned after predefined period with negative jitter factor when the stop chan was closed inside the func")
    	}
    }
    
    func TestExponentialBackoff(t *testing.T) {
    	// exits immediately
    	i := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/MediaType.java

     * Content-Type} header and as such has no support for header-specific considerations such as line
     * folding and comments.
     *
     * <p>For media types that take a charset the predefined constants default to UTF-8 and have a
     * "_UTF_8" suffix. To get a version without a character set, use {@link #withoutParameters}.
     *
     * @since 12.0
     * @author Gregory Kick
     */
    @GwtCompatible
    @Immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/MediaType.java

     * Content-Type} header and as such has no support for header-specific considerations such as line
     * folding and comments.
     *
     * <p>For media types that take a charset the predefined constants default to UTF-8 and have a
     * "_UTF_8" suffix. To get a version without a character set, use {@link #withoutParameters}.
     *
     * @since 12.0
     * @author Gregory Kick
     */
    @GwtCompatible
    @Immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
Back to top