Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for predefined (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    }
    
    // Quantization configuration for StableHLO Quantizer. This is the primary
    // message containing all configurable options.
    // Next ID: 9
    message QuantizationConfig {
      // Config presets provide predefined popular or common quantization specs.
      // Lightweight users may choose one of the presets for quick experiments. Each
      // preset is completely represented by other fields in `QuantizationConfig`.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/pgen.go

    	for i, n := range fn.Dcl {
    		if n.Op() != ir.ONAME || n.Class != ir.PAUTO && !(n.Class == ir.PPARAMOUT && n.IsOutputParamInRegisters()) {
    			// i.e., stack assign if AUTO, or if PARAMOUT in registers (which has no predefined spill locations)
    			continue
    		}
    		if mls != nil && mls.Subsumed(n) {
    			continue
    		}
    		if !n.Used() {
    			fn.DebugInfo.(*ssa.FuncDebug).OptDcl = fn.Dcl[i:]
    			fn.Dcl = fn.Dcl[:i]
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_tls.go

    		}
    		// `istio-peer-exchange` alpn is only used when using mtls communication between peers.
    		// We add `istio-peer-exchange` to the list of alpn strings.
    		// The code has repeated snippets because We want to use predefined alpn strings for efficiency.
    		if cb.isHttp2Cluster(c) {
    			// This is HTTP/2 in-mesh cluster, advertise it with ALPN.
    			if features.MetadataExchange && !features.DisableMxALPN {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/internal/reflectlite/type.go

    	if T == V {
    		return true
    	}
    
    	kind := T.Kind()
    	if kind != V.Kind() {
    		return false
    	}
    
    	// Non-composite types of equal kind have same underlying type
    	// (the predefined instance of the type).
    	if abi.Bool <= kind && kind <= abi.Complex128 || kind == abi.String || kind == abi.UnsafePointer {
    		return true
    	}
    
    	// Composite types.
    	switch kind {
    	case abi.Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/security/oauth2-scopes.md

        But in your application, for security, you should make sure you only add the scopes that the user is actually able to have, or the ones you have predefined.
    
    === "Python 3.10+"
    
        ```Python hl_lines="156"
        {!> ../../../docs_src/security/tutorial005_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="156"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    * They will be marked with a list of tags that contain a single string `"items"`.
        * These "tags" are especially useful for the automatic interactive documentation systems (using OpenAPI).
    * All of them will include the predefined `responses`.
    * All these *path operations* will have the list of `dependencies` evaluated/executed before them.
        * If you also declare dependencies in a specific *path operation*, **they will be executed too**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top