Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 511 for RES (0.03 sec)

  1. pilot/pkg/security/model/authentication.go

    	return pm.ConstructSdsSecretConfig(name)
    }
    
    func AppendURIPrefixToTrustDomain(trustDomainAliases []string) []string {
    	res := make([]string, 0, len(trustDomainAliases))
    	for _, td := range trustDomainAliases {
    		res = append(res, spiffe.URIPrefix+td+"/")
    	}
    	return res
    }
    
    // ApplyToCommonTLSContext completes the commonTlsContext
    func ApplyToCommonTLSContext(tlsContext *tls.CommonTlsContext, proxy *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry.go

    		}
    		m = append(m, cfg)
    	}
    
    	var res any
    	// Finally, compute the actual filters based on the protoc
    	switch protocol {
    	case networking.ListenerProtocolHTTP:
    		res = buildHTTPTelemetryFilter(class, m)
    	default:
    		res = buildTCPTelemetryFilter(class, m)
    	}
    
    	// Update cache
    	t.computedMetricsFilters[key] = res
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/decompose_resource_op.mlir

    // CHECK-NEXT: [[res:%.*]] = tfrt_fallback_async.executeop key(1) cost({{.*}}) device("/job:localhost/replica:0/task:0/device:CPU:0") "tf.GatherV2"([[value]], {{.*}}, [[const]])
    // CHECK-NEXT: tfrt.return [[out_chain]], [[res]] : !tfrt.chain, !tfrt_fallback.tf_tensor
    func.func @gather(%indices: tensor<?xi32>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ads_test.go

    	nonce := ""
    	sendEDSReqAndVerify := func(clusterName string) {
    		res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			ResourceNames: []string{clusterName},
    			VersionInfo:   version,
    			ResponseNonce: nonce,
    		})
    		version = res.VersionInfo
    		nonce = res.Nonce
    		got := xdstest.MapKeys(xdstest.ExtractLoadAssignments(xdstest.UnmarshalClusterLoadAssignment(t, res.Resources)))
    		if len(got) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/waypoint.go

    			if !f || ws.MeshExternal {
    				outboundServices.Insert(ref)
    			}
    		}
    	}
    	res := make([]*model.Service, 0, len(outboundServices))
    	for _, s := range services {
    		if outboundServices.Contains(s.Hostname.String()) || extraServices.Contains(s.Hostname.String()) {
    			res = append(res, s)
    		}
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/plugin/authn/authentication.go

    			return []*hcm.HttpFilter{filter}
    		}
    		return nil
    	}
    	res := []*hcm.HttpFilter{}
    	if filter := b.applier.JwtFilter(false, false); filter != nil {
    		res = append(res, filter)
    	}
    	forSidecar := b.proxy.Type == model.SidecarProxy
    	if filter := b.applier.AuthNFilter(forSidecar); filter != nil {
    		res = append(res, filter)
    	}
    
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/healthServer_test.go

    }
    
    func makeReq(t *testing.T, url, endpoint string, expectedStatusCode int) {
    	t.Helper()
    	res, err := http.Get(url + endpoint)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    	if res.StatusCode != expectedStatusCode {
    		t.Fatalf("expected status code from %s: %d, got: %d", endpoint, expectedStatusCode, res.StatusCode)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. pkg/bootstrap/option/convert.go

    				ValidationContextSdsSecretConfig: model.ConstructSdsSecretConfig(res.GetRootResourceName()),
    			},
    		}
    		tlsContext.CommonTlsContext.AlpnProtocols = model.ALPNH2Only
    		tlsContext.Sni = tls.Sni
    	case networkingAPI.ClientTLSSettings_MUTUAL:
    		res := security.SdsCertificateConfig{
    			CertificatePath:   model.GetOrDefault(metadata.TLSClientCertChain, tls.ClientCertificate),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_delta_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	res, err := downstream.Recv()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if res == nil || res.TypeUrl != v3.ClusterType {
    		t.Fatalf("Expected to get cluster response but got %v", res)
    	}
    	err = downstream.Send(&discovery.DeltaDiscoveryRequest{TypeUrl: v3.ListenerType, Node: node})
    	if err != nil {
    		t.Fatal(err)
    	}
    	res, err = downstream.Recv()
    	if err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        llvm::SmallVector<Value, 4> new_results;
        for (auto res : llvm::enumerate(compose_func_type.getResults())) {
          if (mlir::dyn_cast<TFRTensorType>(res.value())) {
            new_results.push_back(new_op.getResult(res.index()));
          } else if (auto list_type =
                         mlir::dyn_cast<TFRTensorListType>(res.value())) {
            for (int i = res.index(), j = 0; i < op->getNumResults(); i++, j++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top