Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 222 for Expansions (0.57 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/fake.go

    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/client-go/restmapper"
    )
    
    // FakeCategoryExpander is for testing only
    var FakeCategoryExpander restmapper.CategoryExpander = restmapper.SimpleCategoryExpander{
    	Expansions: map[string][]schema.GroupResource{
    		"all": {
    			{Group: "", Resource: "pods"},
    			{Group: "", Resource: "replicationcontrollers"},
    			{Group: "", Resource: "services"},
    			{Group: "apps", Resource: "statefulsets"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    		case *aliases.Alias:
    			addType(aliases.Unalias(T))
    		case *types.Basic:
    			// nop
    		case *types.Named:
    			// Remove infinite expansions of *types.Named by always looking at the origin.
    			// Some named types with type parameters [that will not type check] have
    			// infinite expansions:
    			//     type N[T any] struct { F *N[N[T]] }
    			// importMap() is called on such types when Analyzer.RunDespiteErrors is true.
    			T = T.Origin()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

    }
    
    }  // namespace
    
    QuantizationConfig ExpandPresets(const QuantizationConfig& config) {
      QuantizationConfig new_config = config;
    
      // Update the `new_config` with each preset's expansions.
      switch (config.preset_case()) {
        case QuantizationConfig::kStaticRangePtqPreset:
          ExpandStaticRangePtqPreset(config.static_range_ptq_preset(), new_config);
          break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/math/j1.go

    		return -(2 / Pi) / x
    	}
    	z := x * x
    	u := U00 + z*(U01+z*(U02+z*(U03+z*U04)))
    	v := 1 + z*(V00+z*(V01+z*(V02+z*(V03+z*V04))))
    	return x*(u/v) + (2/Pi)*(J1(x)*Log(x)-1/x)
    }
    
    // For x >= 8, the asymptotic expansions of pone is
    //      1 + 15/128 s**2 - 4725/2**15 s**4 - ..., where s = 1/x.
    // We approximate pone by
    //      pone(x) = 1 + (R/S)
    // where R = pr0 + pr1*s**2 + pr2*s**4 + ... + pr5*s**10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  5. hack/lib/logging.sh

      # is a more verbose version of set -o errexit
      trap 'kube::log::errexit' ERR
    
      # setting errtrace allows our ERR trap handler to be propagated to functions,
      # expansions and subshells
      set -o errtrace
    }
    
    # Print out the stack trace
    #
    # Args:
    #   $1 The number of stack frames to skip when printing.
    kube::log::stack() {
      local stack_skip=${1:-0}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/math/j0.go

    	}
    	z := x * x
    	u := U00 + z*(U01+z*(U02+z*(U03+z*(U04+z*(U05+z*U06)))))
    	v := 1 + z*(V01+z*(V02+z*(V03+z*V04)))
    	return u/v + (2/Pi)*J0(x)*Log(x) // ~7.4506e-9 < |x| < 2.0
    }
    
    // The asymptotic expansions of pzero is
    //      1 - 9/128 s**2 + 11025/98304 s**4 - ..., where s = 1/x.
    // For x >= 2, We approximate pzero by
    // 	pzero(x) = 1 + (R/S)
    // where  R = pR0 + pR1*s**2 + pR2*s**4 + ... + pR5*s**10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // expands to ~string|~[]byte|int|string, which reduces to ~string|~[]byte|int,
    // which when intersected with C (~string|~int) yields ~string|int.
    //
    // NormalTerms computes these expansions and reductions, producing a
    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    query.boost.fuzzy.title.fuzziness=AUTO
    query.boost.fuzzy.title.expansions=10
    query.boost.fuzzy.title.prefix_length=0
    query.boost.fuzzy.title.transpositions=true
    query.boost.fuzzy.content=0.005
    query.boost.fuzzy.content.fuzziness=AUTO
    query.boost.fuzzy.content.expansions=10
    query.boost.fuzzy.content.prefix_length=0
    query.boost.fuzzy.content.transpositions=true
    
    query.prefix.expansions=50
    query.prefix.slop=0
    query.fuzzy.prefix_length=0
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. integration-tests/gradle/gradlew

    #
    #           ksh Gradle
    #
    #       Busybox and similar reduced shells will NOT work, because this script
    #       requires all of these POSIX shell features:
    #         * functions;
    #         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
    #           «${var#prefix}», «${var%suffix}», and «$( cmd )»;
    #         * compound commands having a testable exit status, especially «case»;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         * abbreviated type `MyString`. The abbreviated type is not `MyList<MyString>`, although it might be rendered as such.
         *
         *
         * ### Transitive expansion
         *
         * Types are always expanded to their final form. That is, if we have a chain of type alias expansions, the [KaType] only represents the
         * final expanded type, and its [abbreviatedType] the initial type alias application. For example:
         *
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top