Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for French (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/wasm/imagefetcher.go

    	// TODO(mathetake): have "Anonymous" option?
    	if opt.useDefaultKeyChain() {
    		// Note that default key chain reads the docker config from DOCKER_CONFIG
    		// so must set the envvar when reaching this branch is expected.
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(authn.DefaultKeychain))
    	} else {
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(&wasmKeyChain{data: opt.PullSecret}))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      oneof destination {
        // TODO: add support for hostname lookup
        NamespacedHostname hostname = 1;
        NetworkAddress address = 2;
      }
      // port to reach the gateway at for mTLS HBONE connections
      uint32 hbone_mtls_port = 3;
      reserved "hbone_single_tls_port";
      reserved 4;
    }
    
    // NetworkAddress represents an address bound to a specific network.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top