Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for conf1 (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

      FunctionLibraryDefinition flib_def(OpRegistry::Global(),
                                         FunctionDefLibrary());
      GraphExportConfig confs;
      auto graph = std::make_unique<Graph>(flib_def);
      absl::flat_hash_set<Node*> control_ret_nodes;
      Status status = tensorflow::tf2xla::v2::ConvertMlirToGraph(
          module_in, confs, &graph, &flib_def, &control_ret_nodes);
      if (!status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx)) << status.message();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    		return errors.New("control-plane-join phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil {
    		return nil
    	}
    
    	// gets access to the cluster using the identity defined in admin.conf
    	client, err := data.Client()
    	if err != nil {
    		return errors.Wrap(err, "couldn't create Kubernetes client")
    	}
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/dryrun/dryrun.go

    			errs = append(errs, err)
    			continue
    		}
    
    		// Make it possible to fake the path of the file; i.e. you may want to tell the user
    		// "Here is what would be written to /etc/kubernetes/admin.conf", although you wrote it to /tmp/kubeadm-dryrun/admin.conf and are loading it from there
    		// Fall back to the "real" path if PrintPath is not set
    		outputFilePath := file.PrintPath
    		if len(outputFilePath) == 0 {
    			outputFilePath = file.RealPath
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	return runKubeletFinalizeEnableClientCertRotation(c)
    }
    
    // runKubeletFinalizeEnableClientCertRotation detects if the kubelet certificate rotation is enabled
    // and updates the kubelet.conf file to point to a rotatable certificate and key for the
    // Node user.
    func runKubeletFinalizeEnableClientCertRotation(c workflow.RunData) error {
    	// Set 'enableClientCertRotationRun' to make sure that if 'all' is called,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. cni/pkg/constants/constants.go

    // limitations under the License.
    
    package constants
    
    // Command line arguments
    const (
    	// Install
    	MountedCNINetDir     = "mounted-cni-net-dir"
    	CNINetDir            = "cni-net-dir"
    	CNIConfName          = "cni-conf-name"
    	ChainedCNIPlugin     = "chained-cni-plugin"
    	CNINetworkConfigFile = "cni-network-config-file"
    	CNINetworkConfig     = "cni-network-config"
    	LogLevel             = "log-level"
    	KubeconfigFilename   = "kubecfg-file-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. cluster/gce/manifests/cloud-controller-manager.manifest

          "--tls-cert-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.crt",
          "--tls-key-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.key",
          "--cloud-provider=gce",
          "--cloud-config=/etc/gce.conf"
        ],
        "volumeMounts": [
            {{cloud_config_mount}}
            {{additional_cloud_config_mount}}
            {{pv_recycler_mount}}
            { "name": "srvkube",
            "mountPath": "/etc/srv/kubernetes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/version.go

    // module version (Config.GoVersion) is used. If that version is invalid,
    // allowVersion returns true.
    func (check *Checker) allowVersion(at poser, v goVersion) bool {
    	fileVersion := check.conf.GoVersion
    	if pos := at.Pos(); pos.IsKnown() {
    		fileVersion = check.versions[pos.FileBase()]
    	}
    
    	// We need asGoVersion (which calls version.Lang) below
    	// because fileVersion may be the (unaltered) Config.GoVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         * This method does <strong>NOT</strong> warn.  This method does <strong>NOT</strong> modify deprecation status.  It
         * is only meant to be called by the container.
         *
         * @param role the role specifying the usage the conf should possess
         */
         void setAllowedUsageFromRole(ConfigurationRole role);
    
        /**
         * Test if the given configuration can either be declared against or extends another
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/godefs.go

    	for name, id := range goIdent {
    		if id.Name == name && strings.Contains(name, "_Ctype_union") {
    			if def := typedef[name]; def != nil {
    				id.Name = gofmt(def)
    			}
    		}
    	}
    
    	conf.Fprint(&buf, fset, f.AST)
    
    	return buf.String()
    }
    
    var gofmtBuf strings.Builder
    
    // gofmt returns the gofmt-formatted string for an AST node.
    func gofmt(n interface{}) string {
    	gofmtBuf.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/kubelet.go

    	kubeletHealthzBindAddress = "127.0.0.1"
    
    	// kubeletSystemdResolverConfig specifies the default resolver config when systemd service is active
    	kubeletSystemdResolverConfig = "/run/systemd/resolve/resolv.conf"
    )
    
    // kubeletHandler is the handler instance for the kubelet component config
    var kubeletHandler = handler{
    	GroupVersion: kubeletconfig.SchemeGroupVersion,
    	AddToScheme:  kubeletconfig.AddToScheme,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top