Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for configPath (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            String configPath = form.crawlingConfigPath.trim();
            if (StringUtil.isBlank(configName)) {
                configName = StringUtils.abbreviate(configPath, 30);
            }
    
            // normalize
            final StringBuilder buf = new StringBuilder(1000);
            for (int i = 0; i < configPath.length(); i++) {
                final char c = configPath.charAt(i);
                if (c == '\\') {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh_test.go

    	}
    }
    
    func TestApplyMeshConfigDefaults(t *testing.T) {
    	configPath := "/test/config/patch"
    	yaml := fmt.Sprintf(`
    defaultConfig:
      configPath: %s
    `, configPath)
    
    	want := mesh.DefaultMeshConfig()
    	want.DefaultConfig.ConfigPath = configPath
    
    	got, err := mesh.ApplyMeshConfigDefaults(yaml)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/kube/inject/template.go

    	if !ok || originalProxyConfig == nil {
    		return msg
    	}
    	pc := proto.Clone(originalProxyConfig).(*meshconfig.ProxyConfig)
    	defaults := mesh.DefaultProxyConfig()
    	if pc.ConfigPath == defaults.ConfigPath {
    		pc.ConfigPath = ""
    	}
    	if pc.BinaryPath == defaults.BinaryPath {
    		pc.BinaryPath = ""
    	}
    	if pc.ControlPlaneAuthPolicy == defaults.ControlPlaneAuthPolicy {
    		pc.ControlPlaneAuthPolicy = 0
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    				rt.cc.caCert,
    				rt.ccWithToken.token,
    			)
    			configPath := fmt.Sprintf("%s/etc/kubernetes/%s.conf", tmpdir, rt.name)
    			err := WriteToDisk(configPath, c)
    			if err != rt.expected {
    				t.Errorf(
    					"failed WriteToDisk with an error:\n\texpected: %s\n\t  actual: %s",
    					rt.expected,
    					err,
    				)
    			}
    			newFile, _ := os.ReadFile(configPath)
    			if !bytes.Equal(newFile, rt.file) {
    				t.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. istioctl/cmd/root.go

    	defaultIstioctlConfig = "$HOME/.istioctl/config.yaml"
    )
    
    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_none_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.285885Z	info	Obtained private IP [10.36.1.5]
    2020-06-29T23:37:27.286034Z	info	Apply mesh config from file accessLogEncoding: TEXT
    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
      proxyAdminPort: 15000
      proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

    _IPS":"10.3.3.3,10.4.4.4,10.5.5.5,10.6.6.6","ISTIO_VERSION":"binary-1.0","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/tracing_opencensusagent","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"istio-pilot:15010","drainDuration":"2s","proxyAdminPort":15000,"serviceCluster":"istio-proxy","statusPort":15020,"tracing":{"openCensusAgent...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/auth_golden.json

      },...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/lrs_golden.json

      },
      "layered_runtime": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top