Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 210 for Cfg (0.03 sec)

  1. pilot/pkg/networking/core/fake.go

    	go f.Registry.Run(f.stop)
    	go f.store.Run(f.stop)
    	// Setup configuration. This should be done after registries are added so they can process events.
    	for _, cfg := range f.initialConfigs {
    		if _, err := f.store.Create(cfg); err != nil {
    			f.t.Fatalf("failed to create config %v: %v", cfg.Name, err)
    		}
    	}
    
    	// TODO allow passing event handlers for controller
    
    	retry.UntilOrFail(f.t, f.store.HasSynced, retry.Delay(time.Millisecond))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/go/types/issues_test.go

    		`struct { P }`,
    		`struct { *I }`,
    		`struct { a int; b Missing; *Missing }`,
    	} {
    		f := mustParse(fset, prefix+src)
    
    		cfg := Config{Importer: importer.Default(), Error: func(err error) {}}
    		info := &Info{Types: make(map[ast.Expr]TypeAndValue)}
    		_, err := cfg.Check(f.Name.Name, fset, []*ast.File{f}, info)
    		if err != nil {
    			if _, ok := err.(Error); !ok {
    				t.Fatal(err)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modload/load.go

    		if err := ld.AllowPackage(ctx, pkg.path, pkg.mod); err != nil {
    			pkg.err = err
    		}
    	}
    
    	pkg.inStd = (search.IsStandardImportPath(pkg.path) && search.InDir(pkg.dir, cfg.GOROOTsrc) != "")
    
    	var imports, testImports []string
    
    	if cfg.BuildContext.Compiler == "gccgo" && pkg.inStd {
    		// We can't scan standard packages for gccgo.
    	} else {
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	MTLSUnlabelled
    	PlainText
    )
    
    // nolint: unparam
    func makeInstanceWithServiceAccount(cfg *config.Config, address string, port int,
    	svcPort *networking.ServicePort, svcLabels map[string]string, serviceAccount string,
    ) *model.ServiceInstance {
    	i := makeInstance(cfg, address, port, svcPort, svcLabels, MTLSUnlabelled)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    				}
    			}
    		})
    	}
    }
    
    func verify(t *testing.T, encoding meshconfig.MeshConfig_AccessLogEncoding, got *accesslog.AccessLog, wantFormat string) {
    	cfg, _ := conversion.MessageToStruct(got.GetTypedConfig())
    	if encoding == meshconfig.MeshConfig_JSON {
    		jsonFormat := cfg.GetFields()["log_format"].GetStructValue().GetFields()["json_format"]
    		jsonFormatString, _ := protomarshal.ToJSON(jsonFormat)
    		if jsonFormatString != wantFormat {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    				}
    				sc := convertToSidecarScope(ps, &item.cfg, item.cfg.Namespace)
    				sidecarScopes[item.idx] = sc
    			}
    		}()
    	}
    
    	// note: sidecarScopes order matters and needs to be kept in the same order as sidecarConfigs.
    	// The order indicates priority, see getSidecarScope.
    	for idx, cfg := range sidecarConfigs {
    		taskItems <- taskItem{idx: idx, cfg: cfg}
    	}
    
    	close(taskItems)
    	wg.Wait()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller_test.go

    		expectedBurst = 200
    	)
    	fakeRestConfig := &rest.Config{}
    	client := kube.NewFakeClient()
    	stopCh := test.NewStop(t)
    	c := NewController(client, secretNamespace, "", mesh.NewFixedWatcher(nil), func(cfg *rest.Config) {
    		cfg.QPS = expectedQPS
    		cfg.Burst = expectedBurst
    	})
    	c.ClientBuilder = func(kubeConfig []byte, c cluster.ID, configOverrides ...func(*rest.Config)) (kube.Client, error) {
    		for _, override := range configOverrides {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/dashboard_test.go

    				ApplyOrFail(t)
    
    			// Apply just the grafana dashboards
    			cfg, err := os.ReadFile(filepath.Join(env.IstioSrc, "samples/addons/grafana.yaml"))
    			if err != nil {
    				t.Fatal(err)
    			}
    			t.ConfigKube().YAML("istio-system", yml.SplitYamlByKind(string(cfg))["ConfigMap"]).ApplyOrFail(t)
    
    			// We will send a bunch of requests until the test exits. This ensures we are continuously
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    func writeTestKubeconfig(t *testing.T, dir, name string, caCert *x509.Certificate, caKey crypto.Signer, notBefore, notAfter time.Time) *x509.Certificate {
    
    	cfg := &pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName:   "test-common-name",
    			Organization: testCertOrganization,
    			Usages:       []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top