Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for cmconfig (0.3 sec)

  1. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.pager.CrawlingInfoPager;
    import org.codelibs.fess.es.config.cbean.CrawlingInfoCB;
    import org.codelibs.fess.es.config.exbhv.CrawlingInfoBhv;
    import org.codelibs.fess.es.config.exbhv.CrawlingInfoParamBhv;
    import org.codelibs.fess.es.config.exentity.CrawlingInfo;
    import org.codelibs.fess.es.config.exentity.CrawlingInfoParam;
    import org.codelibs.fess.exception.FessSystemException;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/config.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // A Config holds readonly compilation information.
    // It is created once, early during compilation,
    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.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. src/main/java/jcifs/smb1/Config.java

            Config.prp = new Properties( prp );
            try {
                Config.prp.putAll( System.getProperties() );
            } catch( SecurityException se ) {
                if( log.level > 1 )
                    log.println( "SecurityException: jcifs.smb1 will ignore System properties" );
            }
        }
    
        /**
         * Load the <code>Config</code> with properties from the stream
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  5. pkg/bootstrap/config.go

    	} else if config.EnvoyMetricsServiceAddress != "" { // nolint: staticcheck
    		opts = append(opts, option.EnvoyMetricsServiceAddress(config.EnvoyMetricsService.Address))
    	}
    
    	// Add options for Envoy access log.
    	if config.EnvoyAccessLogService != nil && config.EnvoyAccessLogService.Address != "" {
    		opts = append(opts, option.EnvoyAccessLogServiceAddress(config.EnvoyAccessLogService.Address),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/hns.go

    	if err != nil {
    		return nil, err
    	}
    	var flags hcn.EndpointFlags
    	if !ep.isLocal {
    		flags |= hcn.EndpointFlagsRemoteEndpoint
    	}
    	ipConfig := &hcn.IpConfig{
    		IpAddress: ep.ip,
    	}
    	hnsEndpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipConfig},
    		MacAddress:       ep.macAddress,
    		Flags:            flags,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    							err:        nil,
    						},
    					},
    					// hash of initial "testdata/ec_config.yaml" config file before reloading
    					EncryptionFileContentHash: "k8s:enc:unstable:1:6bc9f4aa2e5587afbb96074e1809550cbc4de3cc3a35717dac8ff2800a147fd3",
    				}, nil
    			},
    		},
    		{
    			name:                    "when transformer's health check fails previous config shouldn't be changed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/config.go

    		EgressGatewayServiceName:      DefaultEgressGatewayServiceName,
    		EgressGatewayIstioLabel:       DefaultEgressGatewayIstioLabel,
    	}
    )
    
    // Config provide kube-specific Config from flags.
    type Config struct {
    	// The namespace where the Istio components (<=1.1) reside in a typical deployment (default: "istio-system").
    	SystemNamespace string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pilot/test/mock/config.go

    	authz "istio.io/api/security/v1beta1"
    	api "istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/model"
    	config2 "istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/config"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var (
    	// ExampleVirtualService is an example V2 route rule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. pkg/log/config.go

    John Howard <******@****.***> 1711485490 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top