Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,071 for config1 (0.19 sec)

  1. pilot/pkg/model/config.go

    		if configs[i].CreationTimestamp == configs[j].CreationTimestamp {
    			in := configs[i].Name + "." + configs[i].Namespace
    			jn := configs[j].Name + "." + configs[j].Namespace
    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // (`absl::string_view`) so its lifetime is bound to the input `config`.
    inline std::optional<absl::string_view> GetReportFilePath(
        const QuantizationConfig& config ABSL_ATTRIBUTE_LIFETIME_BOUND) {
      return config.has_report_file_path()
                 ? std::make_optional<absl::string_view>(config.report_file_path())
                 : std::nullopt;
    }
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/config.go

    				}
    			}
    			return nil
    		},
    		Args: cobra.NoArgs,
    	}
    	cmd.Flags().StringVar(&oldCfgPath, "old-config", "", "Path to the kubeadm config file that is using an old API version and should be converted. This flag is mandatory.")
    	cmd.Flags().StringVar(&newCfgPath, "new-config", "", "Path to the resulting equivalent kubeadm config file using the new API version. Optional, if not specified output will be sent to STDOUT.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

                                    QuantizationConfig& config) {
      // Populate with preset's representative dataset configs if the user didn't
      // explicitly specify other representative dataset configs to the top-level
      // `CalibrationOptions`.
      if (config.calibration_options().representative_datasets().empty()) {
        auto preset_datasets = preset.representative_datasets();
        config.mutable_calibration_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    # any service (host) in the mesh.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: default
      namespace: istio-config
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---
    # Services and configs in ns1 namespace
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http1
      namespace: ns1
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            configB2 project(path:':a', configuration:'configA2')
        }
    }
    """
            resolve.prepare {
                config("configB1")
                config("configB2")
            }
    
            when:
            run ":b:checkConfigB1"
    
            then:
            executedAndNotSkipped ":a:A1jar"
            resolve.expectGraph {
                root(":b", "test:b:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. tests/testdata/networking/envoyfilter-without-service/configs.yaml

    kind: PeerAuthentication
    metadata:
      name: default
      namespace: istio-config
    spec:
      mtls:
        mode: STRICT
    ---
    # Corresponding destination rule to configure client side to use mutual TLS when talking to
    # any service (host) in the mesh.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: default
      namespace: istio-config
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. internal/config/config.go

    	APISubSys: {apiReplicationWorkers, apiReplicationFailedWorkers},
    	// Add future sub-system deleted keys
    }
    
    // Merge - merges a new config with all the
    // missing values for default configs,
    // returns a config.
    func (c Config) Merge() Config {
    	cp := New()
    	for subSys, tgtKV := range c {
    		for tgt := range tgtKV {
    			ckvs := c[subSys][tgt]
    			for _, kv := range cp[subSys][Default] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue59709.dir/aconfig.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package aconfig
    
    type Config struct {
    	name string
    	blah int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 21:04:28 UTC 2023
    - 223 bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/config/config.go

    limitations under the License.
    */
    
    package config
    
    import (
    	apiserver "k8s.io/apiserver/pkg/server"
    	clientset "k8s.io/client-go/kubernetes"
    	restclient "k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/record"
    	kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
    )
    
    // Config is the main context object for the controller manager.
    type Config struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top