Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 133 for initiatives (0.19 sec)

  1. pkg/kube/namespace/filter.go

    			return nil, err
    		}
    		requirements = append(requirements, *r)
    	}
    	selector := labels.NewSelector()
    	selector = selector.Add(requirements...)
    	return selector, nil
    }
    
    // SelectorsChanged initializes the discovery filter state with the discovery selectors and selected namespaces
    func (d *discoveryNamespacesFilter) selectorsChanged(
    	discoverySelectors []*meshapi.LabelSelector,
    	notify bool,
    ) {
    	d.lock.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    // ApplyTo adds the admission chain to the server configuration.
    // In case admission plugin names were not provided by a cluster-admin they will be prepared from the recommended/default values.
    // In addition the method lazily initializes a generic plugin that is appended to the list of pluginInitializers
    // note this method uses:
    //
    //	genericconfig.Authorizer
    func (a *AdmissionOptions) ApplyTo(
    	c *server.Config,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Persistently slow build startup times are usually the result of problems in your init scripts.
    Double check that the work you’re doing there is necessary and performant.
    
    === Settings and _buildSrc_
    
    After startup, Gradle initializes your project. Usually, Gradle only processes your settings file.
    If you have custom build logic in a `buildSrc` directory, Gradle also processes that logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// specific pprof plugins being used.
    	ExtraUsage() string
    
    	// AddExtraUsage appends additional text to the end of the extra usage message.
    	AddExtraUsage(eu string)
    
    	// Parse initializes the flags with their values for this run
    	// and returns the non-flag command line arguments.
    	// If an unknown flag is encountered or there are no arguments,
    	// Parse should call usage and return nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    }
    
    // ScoreExtensions of the Score plugin.
    func (pl *TaintToleration) ScoreExtensions() framework.ScoreExtensions {
    	return pl
    }
    
    // New initializes a new plugin and returns it.
    func New(_ context.Context, _ runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	return &TaintToleration{
    		handle:                    h,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. cmd/sftp-server-driver.go

    	startTime := time.Now()
    	source := getSource(2)
    	return func(sz int64, err error) {
    		globalTrace.Publish(sftpTrace(s, startTime, source, user, err, sz))
    	}
    }
    
    // NewSFTPDriver initializes sftp.Handlers implementation of following interfaces
    //
    // - sftp.Fileread
    // - sftp.Filewrite
    // - sftp.Filelist
    // - sftp.Filecmd
    func NewSFTPDriver(perms *ssh.Permissions) sftp.Handlers {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. internal/event/target/kafka.go

    		}
    		config.Version = kafkaVersion
    	}
    
    	config.Net.KeepAlive = 60 * time.Second
    	config.Net.SASL.User = args.SASL.User
    	config.Net.SASL.Password = args.SASL.Password
    	initScramClient(args, config) // initializes configured scram client.
    	config.Net.SASL.Enable = args.SASL.Enable
    
    	tlsConfig, err := saramatls.NewConfig(args.TLS.ClientTLSCert, args.TLS.ClientTLSKey)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/fake.go

    	retry.UntilOrFail(f.t, f.store.HasSynced, retry.Delay(time.Millisecond))
    	retry.UntilOrFail(f.t, f.Registry.HasSynced, retry.Delay(time.Millisecond))
    
    	f.ServiceEntryRegistry.ResyncEDS()
    }
    
    // SetupProxy initializes a proxy for the current environment. This should generally be used when creating
    // any proxy. For example, `p := SetupProxy(&model.Proxy{...})`.
    func (f *ConfigGenTest) SetupProxy(p *model.Proxy) *model.Proxy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    // rawExpr typechecks expression e and initializes x with the expression
    // value or type. If an error occurred, x.mode is set to invalid.
    // If a non-nil target T is given and e is a generic function,
    // T is used to infer the type arguments for e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// specific pprof plugins being used.
    	ExtraUsage() string
    
    	// AddExtraUsage appends additional text to the end of the extra usage message.
    	AddExtraUsage(eu string)
    
    	// Parse initializes the flags with their values for this run
    	// and returns the non-flag command line arguments.
    	// If an unknown flag is encountered or there are no arguments,
    	// Parse should call usage and return nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top