Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for envref (0.24 sec)

  1. pkg/bootstrap/config.go

    	// Append LRS related options.
    	opts = append(opts, option.LoadStatsConfigJSONStr(cfg.Node))
    
    	// TODO: allow reading a file with additional metadata (for example if created with
    	// 'envref'. This will allow Istio to generate the right config even if the pod info
    	// is not available (in particular in some multi-cluster cases)
    	return option.NewTemplateParams(opts...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. .idea/dictionaries/svyatoslav_kuzmich.xml

    <component name="ProjectDictionaryState">
      <dictionary name="svyatoslav.kuzmich">
        <words>
          <w>anyfunc</w>
          <w>copysign</w>
          <w>eqref</w>
          <w>exnref</w>
          <w>externref</w>
          <w>funcref</w>
          <w>jetbrains</w>
          <w>kotlinx</w>
          <w>ktor</w>
          <w>optref</w>
          <w>popcnt</w>
          <w>rotl</w>
          <w>rotr</w>
          <w>simd</w>
          <w>sqrt</w>
          <w>testsuite</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 12 05:42:01 UTC 2021
    - 594 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    }
    
    func mustNewEnvSet(ver *version.Version, opts []VersionedOptions) *EnvSet {
    	envSet, err := newEnvSet(ver, opts)
    	if err != nil {
    		panic(fmt.Sprintf("Default environment misconfigured: %v", err))
    	}
    	return envSet
    }
    
    // NewExpressionsEnv returns the NewExpressions environment Type for this EnvSet.
    // See NewExpressions for details.
    func (e *EnvSet) NewExpressionsEnv() *cel.Env {
    	return e.newExpressions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	loadFn func(envSet *environment.EnvSet) *cel.Env
    }
    
    func (pe alwaysNewEnvLoader) RuleEnv(envSet *environment.EnvSet, _ string) *cel.Env {
    	return pe.loadFn(envSet)
    }
    
    func (pe alwaysNewEnvLoader) MessageExpressionEnv(envSet *environment.EnvSet, _ string) *cel.Env {
    	return pe.loadFn(envSet)
    }
    
    // Compile compiles all the XValidations rules (without recursing into the schema) and returns a slice containing a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	context = &CompositionEnv{
    		MapType:           context.MapType,
    		EnvSet:            context.EnvSet,
    		CompiledVariables: map[string]CompilationResult{},
    	}
    	compiler := NewCompiler(context.EnvSet)
    	filterCompiler := NewFilterCompiler(context.EnvSet)
    	return &CompositedCompiler{
    		Compiler:       compiler,
    		FilterCompiler: filterCompiler,
    		CompositionEnv: context,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.txt

        public final inner class kotlin/jvm/internal/Ref$IntRef
    }
    
    public final class ContextKt
    
    public final class Foo {
        // source: 'context.kt'
        public method <init>(): void
        private final static method test$call(p0: Foo, p1: java.lang.String, p2: kotlin.jvm.internal.Ref$IntRef, p3: int): void
        public final method test(p0: java.lang.String): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 626 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	))
    }
    
    func mustBuildEnvs(baseEnv *environment.EnvSet) map[string]*environment.EnvSet {
    	buildEnvSet := func(envOpts []cel.EnvOption, declTypes []*apiservercel.DeclType) *environment.EnvSet {
    		env, err := baseEnv.Extend(environment.VersionedOptions{
    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions:        envOpts,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/internal/poll/sockopt.go

    func (fd *FD) SetsockoptInt(level, name, arg int) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.SetsockoptInt(fd.Sysfd, level, name, arg)
    }
    
    // SetsockoptInet4Addr wraps the setsockopt network call with an IPv4 address.
    func (fd *FD) SetsockoptInet4Addr(level, name int, arg [4]byte) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:44:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/os/file_mutex_plan9.go

    // File locking support for Plan 9. This uses fdMutex from the
    // internal/poll package.
    
    // incref adds a reference to the file. It returns an error if the file
    // is already closed. This method is on File so that we can incorporate
    // a nil test.
    func (f *File) incref(op string) (err error) {
    	if f == nil {
    		return ErrInvalid
    	}
    	if !f.fdmu.Incref() {
    		err = ErrClosed
    		if op != "" {
    			err = &PathError{Op: op, Path: f.name, Err: err}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/poll/export_test.go

    // the internal/poll tests can not be in package poll.
    
    package poll
    
    var Consume = consume
    
    type XFDMutex struct {
    	fdMutex
    }
    
    func (mu *XFDMutex) Incref() bool {
    	return mu.incref()
    }
    
    func (mu *XFDMutex) IncrefAndClose() bool {
    	return mu.increfAndClose()
    }
    
    func (mu *XFDMutex) Decref() bool {
    	return mu.decref()
    }
    
    func (mu *XFDMutex) RWLock(read bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 714 bytes
    - Viewed (0)
Back to top