Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 699 for Configs (0.14 sec)

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

    		})
    	}
    }
    
    func buildPatchStruct(config string) *structpb.Struct {
    	val := &structpb.Struct{}
    	_ = protomarshal.UnmarshalString(config, val)
    	return val
    }
    
    func getEnvoyFilterConfigs(configPatches []*networking.EnvoyFilter_EnvoyConfigObjectPatch) []config.Config {
    	res := []config.Config{}
    	for i, cp := range configPatches {
    		res = append(res, config.Config{
    			Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	xds "istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvk"
    	kubeclient "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    	istiotest "istio.io/istio/pkg/test"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. cmd/format-erasure.go

    }
    
    // loadFormatErasureAll - load all format config from all input disks in parallel.
    func loadFormatErasureAll(storageDisks []StorageAPI, heal bool) ([]*formatErasureV3, []error) {
    	// Initialize list of errors.
    	g := errgroup.WithNErrs(len(storageDisks))
    
    	// Initialize format configs.
    	formats := make([]*formatErasureV3, len(storageDisks))
    
    	// Load format from each disk in parallel
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/networking/util/util.go

    // name.namespace of the config, the type, etc.
    func BuildConfigInfoMetadata(config config.Meta) *core.Metadata {
    	return AddConfigInfoMetadata(nil, config)
    }
    
    // AddConfigInfoMetadata adds name.namespace of the config, the type, etc
    // to the given core.Metadata struct, if metadata is not initialized, build a new metadata.
    func AddConfigInfoMetadata(metadata *core.Metadata, config config.Meta) *core.Metadata {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    	probes := make([]ready.Prober, 0)
    	if !config.NoEnvoy {
    		probes = append(probes, &ready.Probe{
    			LocalHostAddr: localhost,
    			AdminPort:     config.AdminPort,
    			Context:       config.Context,
    			NoEnvoy:       config.NoEnvoy,
    		})
    	}
    
    	if config.GRPCBootstrap != "" {
    		probes = append(probes, grpcready.NewProbe(config.GRPCBootstrap))
    	}
    
    	probes = append(probes, config.Probes...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  7. tensorflow/BUILD

        ],
    )
    
    # Config setting that is satisfied when TensorFlow is being built with CUDA
    # support through e.g. `--config=cuda` (or `--config=cuda_clang` in OSS).
    alias(
        name = "is_cuda_enabled",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_clang",
        ),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/BUILD

            "@local_tsl//tsl/platform:statusor",
        ],
    )
    
    cc_library(
        name = "empty_passes",
        hdrs = ["transforms/passes.h"],
        visibility = [
            "//configs/devtools/hawkeye/tflite:__subpackages__",
            "//learning/brain/models/app_benchmarks:__subpackages__",
        ],
        deps = [
            ":tensorflow_lite_passes_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // deltaConfigTypes are used to detect changes and trigger delta calculations. When config updates has ONLY entries
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            assertSuggestsViewingDocs("Creating consumable variants is explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:resolvable-consumable-configs.")
        }
    
        // region Configuration requested by name
        def "demonstrate configuration not found selection failure"() {
            configurationNotFound.prepare()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top