Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for _config (0.15 sec)

  1. pilot/pkg/model/telemetry_test.go

    }
    
    func newTelemetry(ns string, spec config.Spec) config.Config {
    	return config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.Telemetry,
    			Name:             "default",
    			Namespace:        ns,
    		},
    		Spec: spec,
    	}
    }
    
    type telemetryStore struct {
    	ConfigStore
    
    	data []struct {
    		typ config.GroupVersionKind
    		ns  string
    		cfg config.Config
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    func sortConfigByCreationTime(configs []config.Config) {
    	sort.Slice(configs, func(i, j int) bool {
    		if configs[i].CreationTimestamp.Equal(configs[j].CreationTimestamp) {
    			in := configs[i].Namespace + "/" + configs[i].Name
    			jn := configs[j].Namespace + "/" + configs[j].Name
    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    	return ch, ok
    }
    
    func TranslateObject(r runtime.Object, gvk config.GroupVersionKind, domainSuffix string) config.Config {
    	translateFunc, f := translationMap[gvk]
    	if !f {
    		scope.Errorf("unknown type %v", gvk)
    		return config.Config{}
    	}
    	c := translateFunc(r)
    	c.Domain = domainSuffix
    	return c
    }
    
    func getObjectMetadata(config config.Config) metav1.ObjectMeta {
    	return metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - gateway defined by targetRef",
    			[]config.Config{newTelemetry("default", targetRefClient)},
    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - outbound",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    package destinationrule
    
    import (
    	"fmt"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // CaCertificateAnalyzer checks if CaCertificate is set in case mode is SIMPLE/MUTUAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    // limitations under the License.
    
    package core
    
    import (
    	"testing"
    
    	accesslog "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	fileaccesslog "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/file/v3"
    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/gateway.go

    	"strings"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/gateway"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // ServerPort defines port for the gateway server.
    type ServerPort struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/analyzers_test.go

    	"istio.io/istio/pkg/config/analysis/analyzers/sidecar"
    	"istio.io/istio/pkg/config/analysis/analyzers/telemetry"
    	"istio.io/istio/pkg/config/analysis/analyzers/virtualservice"
    	"istio.io/istio/pkg/config/analysis/analyzers/webhook"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/analysis/local"
    	"istio.io/istio/pkg/config/analysis/msg"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor.cc

      stream_executor::StreamExecutorConfig config;
      config.ordinal = ordinal;
      return GetExecutor(config);
    }
    absl::StatusOr<StreamExecutor*> CPlatform::GetExecutor(
        const StreamExecutorConfig& config) {
      return executor_cache_.GetOrCreate(
          config, [&]() { return GetUncachedExecutor(config); });
    }
    absl::StatusOr<std::unique_ptr<StreamExecutor>> CPlatform::GetUncachedExecutor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_waypoint.go

    	xds "github.com/cncf/xds/go/xds/core/v3"
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top