Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 182 for cmconfig (0.29 sec)

  1. cmd/cloud-controller-manager/nodeipamcontroller.go

    	if cloud == nil && ccmConfig.ComponentConfig.KubeCloudShared.CIDRAllocatorType == string(ipam.CloudAllocatorType) {
    		return nil, false, errors.New("--cidr-allocator-type is set to 'CloudAllocator' but cloud provider is not configured")
    	}
    
    	// failure: bad cidrs in config
    	clusterCIDRs, dualStack, err := processCIDRs(ccmConfig.ComponentConfig.KubeCloudShared.ClusterCIDR)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    struct CppConfig {
      string category;
      string unit;
      std::vector<string> namespaces;
    
      explicit CppConfig() = default;
      explicit CppConfig(const string &category,
                         const string &name_space = "tensorflow::ops");
    };
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postinst

            echo " sudo systemctl start fess.service"
    
        elif command -v chkconfig >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig"
            echo " sudo chkconfig --add fess"
            echo "### You can start fess service by executing"
            echo " sudo service fess start"
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/generate_cpp_main.cc

      string source_dir_;
      string api_dirs_;
      std::vector<string> op_names_;
    };
    
    }  // namespace
    
    int main(int argc, char* argv[]) {
      MainConfig config;
      config.InitMain(&argc, &argv);
      generator::CppGenerator generator(config.CppConfig(), config.PathConfig());
      generator.WriteHeaderFile();
      generator.WriteSourceFile();
      return 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  5. src/crypto/tls/ech.go

    // if the list is malformed.
    func parseECHConfigList(data []byte) ([]echConfig, error) {
    	s := cryptobyte.String(data)
    	// Skip the length prefix
    	var length uint16
    	if !s.ReadUint16(&length) {
    		return nil, errMalformedECHConfig
    	}
    	if length != uint16(len(data)-2) {
    		return nil, errMalformedECHConfig
    	}
    	var configs []echConfig
    	for len(s) > 0 {
    		var ec echConfig
    		ec.raw = []byte(s)
    		if !s.ReadUint16(&ec.Version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/cluster/topology.go

    		PrimaryClusterName:      config.PrimaryClusterName,
    		ConfigClusterName:       config.ConfigClusterName,
    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/cpp_generator.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    
    namespace tensorflow {
    namespace generator {
    
    class CppGenerator {
     public:
      explicit CppGenerator(cpp::CppConfig cpp_config, PathConfig path_config);
      SourceCode HeaderFileContents() const;
      SourceCode SourceFileContents() const;
      string HeaderFileName() const;
      string SourceFileName() const;
      void WriteHeaderFile() const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. pkg/test/csrctrl/signer/ca_provider.go

    	if err != nil {
    		return nil, fmt.Errorf("error reading CA cert file %s: %v", strRoot, err)
    	}
    	// Create the new extensions config for the CA
    	caConfig, err := ca.NewIstioConfig("istio-system")
    	if err != nil {
    		return nil, err
    	}
    	intermediateCA, err := ca.NewIntermediate(strRoot, caConfig, caLoader)
    	if err != nil {
    		return nil, err
    	}
    	ret := &caProvider{
    		caLoader:       caLoader,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.cc

    #include "absl/strings/str_split.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    CppConfig::CppConfig(const string &category, const string &name_space)
        : category(category),
          unit(str_util::Lowercase(category)),
          namespaces(absl::StrSplit(name_space, "::")) {}
    
    }  // namespace cpp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/BadWordService.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.pager.BadWordPager;
    import org.codelibs.fess.es.client.SearchEngineClient;
    import org.codelibs.fess.es.config.cbean.BadWordCB;
    import org.codelibs.fess.es.config.exbhv.BadWordBhv;
    import org.codelibs.fess.es.config.exentity.BadWord;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.bhv.readable.EntityRowHandler;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top