Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for French (0.08 sec)

  1. pkg/ledger/smt_test.go

    		runtime.ReadMemStats(&m)
    		fmt.Println(index, " : update time : ", elapsed, "commit time : ", elapsed2,
    			"\n1000 Get time : ", elapsed3,
    			"\nRAM : ", m.Sys/1024/1024, " MiB")
    	}
    }
    
    // go test -run=xxx -bench=. -benchmem -test.benchtime=20s
    func BenchmarkCacheHeightLimit(b *testing.B) {
    	smt := newSMT(hasher, cache.NewTTL(forever, time.Minute), time.Minute)
    	benchmark10MAccounts10Ktps(smt, b)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/mesh_network_test.go

    							pod.Expect(vm, "10.10.10.30:9090")
    							labeledPod.Expect(vm, "10.10.10.30:9090")
    
    							vm.Expect(vm, "10.10.10.30:9090")
    
    							if cfg.allowCrossNetwork {
    								// pod in network-1 uses gateway to reach pod labeled with network-2
    								pod.Expect(labeledPod, net2gw)
    								pod.Expect(emptyAddress, net2gw)
    
    								// pod labeled as network-2 should use gateway for network-1
    								labeledPod.Expect(pod, net1gw)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. pkg/wasm/cache_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	img2, err := mutate.Append(empty.Image, mutate.Addendum{Layer: l})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Set manifest type so it will pass the docker parsing branch.
    	img2 = mutate.MediaType(img2, types.OCIManifestSchema1)
    
    	d, _ = img2.Digest()
    	invalidOCIImageDigest = d.Hex
    
    	// Push image to the registry.
    	err = crane.Push(img2, ref, fetchOpt)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    		hosts = fmt.Sprintf("%s %s\n", ingressIP, IstiodHost(istioNamespace, revision))
    	} else {
    		log.Warnf("Could not auto-detect IP for %s/%s. Use --ingressIP to manually specify the Gateway address to reach istiod from the VM.",
    			IstiodHost(istioNamespace, revision), istioNamespace)
    	}
    	return os.WriteFile(filepath.Join(dir, "hosts"), []byte(hosts), filePerms)
    }
    
    func isRevisioned(revision string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    			}
    		case *networking.HTTPFaultInjection_Abort_GrpcStatus:
    			// We wouldn't have an unknown gRPC code here. This is because
    			// the validation webhook would have already caught the invalid
    			// code and we wouldn't reach here.
    			out.Abort.ErrorType = &xdshttpfault.FaultAbort_GrpcStatus{
    				GrpcStatus: uint32(grpc.SupportedGRPCStatus[a.GrpcStatus]),
    			}
    		default:
    			log.Warnf("Only HTTP and gRPC type abort faults are supported")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_bench_test.go

    func BenchmarkAnalyzers(b *testing.B) {
    	for _, tc := range testGrid {
    		tc := tc // Capture range variable so subtests work correctly
    		b.Run(tc.name+"-bench", func(b *testing.B) {
    			sa, err := setupAnalyzerForCase(tc, nil)
    			if err != nil {
    				b.Fatalf("Error setting up analysis for benchmark on testcase %s: %v", tc.name, err)
    			}
    
    			b.ResetTimer()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/multiplecontrolplanes/main_test.go

    				statusCode int
    				from       echo.Instances
    			}{
    				{
    					name:       "workloads in SE configured namespace can reach external service",
    					statusCode: http.StatusOK,
    					from:       apps.NS[1].A,
    				},
    				{
    					name:       "workloads in non-SE configured namespace, but same usergroup can reach external service",
    					statusCode: http.StatusOK,
    					from:       apps.NS[2].A,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/workloadentry_test.go

    // resources inside each config cluster rather than doing cross-cluster discovery via remote secret.
    // Each case tests a different way of using local resources to reach remote destination(s).
    func TestWorkloadEntryGateway(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresMinClusters(2).
    		Run(func(t framework.TestContext) {
    			crd.DeployGatewayAPIOrSkip(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pkg/bootstrap/platform/gcp.go

    	// If needed, the remaining pieces of metadata can be added to the static env var (missing is the gce_* ones).
    	if len(GCPStaticMetadata) != 0 {
    		return GCPStaticMetadata
    	}
    	// If we cannot reach the metadata server, bail out with only statically defined metadata
    	fillMetadata := e.shouldFillMetadata()
    	if !fillMetadata {
    		return nil
    	}
    
    	e.Lock()
    	defer e.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/cds.go

    	// TODO for now, we leave mTLS *off* by default:
    	// 1. We don't know if the client uses xds.NewClientCredentials; these settings will be ignored if not
    	// 2. We cannot reach servers in PERMISSIVE mode; gRPC doesn't allow us to override the alpn to one of Istio's
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top