Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for predefined (0.15 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    			c.isMidWord = false
    		}
    		wasMid = isMid
    		c.copy()
    	}
    	return true
    }
    
    // finalSigmaSpan would be the same as isLower.
    
    // elUpper implements Greek upper casing, which entails removing a predefined
    // set of non-blocked modifiers. Note that these accents should not be removed
    // for title casing!
    // Example: "Οδός" -> "ΟΔΟΣ".
    func elUpper(c *context) bool {
    	// From CLDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. src/text/scanner/scanner.go

    func (pos Position) String() string {
    	s := pos.Filename
    	if s == "" {
    		s = "<input>"
    	}
    	if pos.IsValid() {
    		s += fmt.Sprintf(":%d:%d", pos.Line, pos.Column)
    	}
    	return s
    }
    
    // Predefined mode bits to control recognition of tokens. For instance,
    // to configure a [Scanner] such that it only recognizes (Go) identifiers,
    // integers, and skips comments, set the Scanner's Mode field to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top