Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Cfg (0.03 sec)

  1. tensorflow/compiler/mlir/runlit.cfg.py

    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    # file, instead config is injected by way of evaluating runlit.cfg.py from
    # runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
    # common for lit tests and intended to only persist temporarily (b/136126535).
    # pylint: disable=undefined-variable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types_test.go

    )
    
    func TestClusterConfigurationEncryptionAlgorithmType(t *testing.T) {
    	tests := []struct {
    		name           string
    		cfg            *ClusterConfiguration
    		expectedResult EncryptionAlgorithmType
    	}{
    		{
    			name: "feature gate is set to true, return ECDSA-P256",
    			cfg: &ClusterConfiguration{
    				FeatureGates: map[string]bool{
    					features.PublicKeysECDSA: true,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 09:39:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    type IptablesRuleBuilder struct {
    	rules Rules
    	cfg   *config.Config
    }
    
    // NewIptablesBuilders creates a new IptablesRuleBuilder
    func NewIptablesRuleBuilder(cfg *config.Config) *IptablesRuleBuilder {
    	if cfg == nil {
    		cfg = &config.Config{}
    	}
    	return &IptablesRuleBuilder{
    		rules: Rules{
    			rulesv4: []*Rule{},
    			rulesv6: []*Rule{},
    		},
    		cfg: cfg,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tests/integration/ambient/cnirepair/main_test.go

    		Setup(func(t resource.Context) error {
    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        repair:
          enabled: true
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/destination_rule.go

    	p.exportTo[resolvedHost] = exportToSet
    }
    
    func ConvertConsolidatedDestRule(cfg *config.Config) *ConsolidatedDestRule {
    	return &ConsolidatedDestRule{
    		rule: cfg,
    		from: []types.NamespacedName{cfg.NamespacedName()},
    	}
    }
    
    // Equals compare l equals r consolidatedDestRule or not.
    func (l *ConsolidatedDestRule) Equals(r *ConsolidatedDestRule) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    		etcdConfig.ListenClientUrls[i].Scheme = "https"
    	}
    	for i := range etcdConfig.AdvertiseClientUrls {
    		etcdConfig.AdvertiseClientUrls[i].Scheme = "https"
    	}
    
    	client := testserver.RunEtcd(t, etcdConfig)
    	cfg := storagebackend.Config{
    		Type: storagebackend.StorageTypeETCD3,
    		Transport: storagebackend.TransportConfig{
    			ServerList:     client.Endpoints(),
    			CertFile:       certFile,
    			KeyFile:        keyFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. doc/next/9-todo.md

    CL 572535 - used "unix" build tag in more places, mentioned accepted proposal https://go.dev/issue/51572; doesn't need a release note
    CL 555255 - an x/tools CL implements accepted proposal https://go.dev/issue/53367 for x/tools/go/cfg
    CL 585216 - an x/build CL mentions accepted proposal https://go.dev/issue/56001 because it fixed a bug causing downloads not to be produced for that new-to-Go-1.22 port; this isn't relevant to Go 1.23 release notes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top