Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,071 for config1 (0.33 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/settings.go

    	// Start with system configs.
    	configs := []namedConfig{{Name: "Default", config: defaultConfig()}}
    	if settings, err := readSettings(fname); err == nil {
    		// Add user configs.
    		configs = append(configs, settings.Configs...)
    	}
    
    	// Convert to menu entries.
    	result := make([]configMenuEntry, len(configs))
    	lastMatch := -1
    	for i, cfg := range configs {
    		dst, changed := cfg.config.makeURL(u)
    		if !changed {
    			lastMatch = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. cmd/bucket-replication_test.go

    		expectedSync: false,
    	},
    	{ // 3. existing object replication config enabled, versioning suspended
    		name:         "existing object replication config enabled, versioning suspended",
    		info:         ObjectInfo{Size: 100, VersionID: nullVersionID},
    		rcfg:         replicationConfig{Config: &configs[0]},
    		expectedSync: false,
    	},
    	{ // 4. existing object replication enabled, versioning enabled; no reset in progress
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/authorization_test.go

    	var configs []config.Config
    	for _, data := range fs.data {
    		if data.typ == typ {
    			if namespace != "" && data.ns == namespace {
    				continue
    			}
    			configs = append(configs, data.cfg)
    		}
    	}
    	return configs
    }
    
    func (fs *authzFakeStore) Delete(_ config.GroupVersionKind, _, _ string, _ *string) error {
    	return fmt.Errorf("not implemented")
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/authorization.go

    	log.Debugf("applying authorization policy %s.%s",
    		config.Namespace, config.Name)
    	switch config.Spec.GetAction() {
    	case authpb.AuthorizationPolicy_ALLOW:
    		configs.Allow = append(configs.Allow, config)
    	case authpb.AuthorizationPolicy_DENY:
    		configs.Deny = append(configs.Deny, config)
    	case authpb.AuthorizationPolicy_AUDIT:
    		configs.Audit = append(configs.Audit, config)
    	case authpb.AuthorizationPolicy_CUSTOM:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/testdata/intermediate.config.json

    David Eads <******@****.***> 1567691999 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 391 bytes
    - Viewed (0)
  6. okhttp/src/main/resources/META-INF/native-image/okhttp/okhttp/resource-config.json

    Jesse Wilson <******@****.***> 1703114827 -0500
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 92 bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/deployment/flags.go

    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    var additionalConfigs = &configs{}
    
    func init() {
    	flag.Var(additionalConfigs, "istio.test.echo.configs", "The path to a file containing a list of "+
    		"echo.Config in YAML which will be added to the set of echos for every suite.")
    }
    
    // configs wraps a slice of echo.Config to implement the config.Value interface, allowing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/v1/defaults_test.go

    	enable := true
    	unknownPluginConfigs := append([]configv1.PluginConfig{}, pluginConfigs...)
    	unknownPluginConfigs[0].Args = runtime.RawExtension{Object: &runtime.Unknown{}}
    
    	tests := []struct {
    		name     string
    		config   *configv1.KubeSchedulerConfiguration
    		expected *configv1.KubeSchedulerConfiguration
    	}{
    		{
    			name:   "empty config",
    			config: &configv1.KubeSchedulerConfiguration{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. istioctl/pkg/kubeinject/testdata/inject-config.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 255 bytes
    - Viewed (0)
  10. pilot/pkg/config/memory/monitor.go

    type Monitor interface {
    	Run(<-chan struct{})
    	AppendEventHandler(config2.GroupVersionKind, Handler)
    	ScheduleProcessEvent(ConfigEvent)
    }
    
    // ConfigEvent defines the event to be processed
    type ConfigEvent struct {
    	config config2.Config
    	old    config2.Config
    	event  model.Event
    }
    
    type configStoreMonitor struct {
    	store    model.ConfigStore
    	handlers map[config2.GroupVersionKind][]Handler
    	eventCh  chan ConfigEvent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top