Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for lincoln (1.09 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    	// show the migration changes
    	klog.V(2).Infof("the CoreDNS configuration has been migrated and applied: %v.", updatedCorefile)
    	klog.V(2).Infoln("the old migration has been saved in the CoreDNS ConfigMap under the name [Corefile-backup]")
    	klog.V(2).Infoln("The changes in the new CoreDNS Configuration are as follows:")
    	for _, change := range changes {
    		klog.V(2).Infof("%v", change.ToString())
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    // case the upstream upgrade fails, we delegate communication to the passed
    // in "w" ResponseWriter.
    func (h *TunnelingHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	klog.V(4).Infoln("TunnelingHandler ServeHTTP")
    
    	spdyProtocols := spdyProtocolsFromWebsocketProtocols(req)
    	if len(spdyProtocols) == 0 {
    		http.Error(w, "unable to upgrade: no tunneling spdy protocols provided", http.StatusBadRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("download-certs phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil || len(data.CertificateKey()) == 0 {
    		klog.V(1).Infoln("[download-certs] Skipping certs download")
    		return nil
    	}
    
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certs.go

    // If the PKI assets already exists in the target folder, they are used only if evaluated equal; otherwise an error is returned.
    func CreatePKIAssets(cfg *kubeadmapi.InitConfiguration) error {
    	klog.V(1).Infoln("creating PKI assets")
    
    	// This structure cannot handle multilevel CA hierarchies.
    	// This isn't a problem right now, but may become one in the future.
    
    	var certList Certificates
    
    	if cfg.Etcd.Local == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. docs/it/docs/index.md

    **Spoiler alert**: il tutorial - Guida Utente include:
    
    * Dichiarazione di **parameters** da altri posti diversi come: **headers**, **cookies**, **form fields** e **files**.
    * Come stabilire **vincoli di validazione** come `maximum_length` o `regex`.
    * Un sistema di **<abbr title="detto anche components, resources, providers, services, injectables">Dependency Injection</abbr>** facile da usare e molto potente.
    e potente.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/link/link_test.go

    	"regexp"
    	"runtime"
    	"strings"
    	"testing"
    
    	"cmd/internal/sys"
    )
    
    var AuthorPaidByTheColumnInch struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. test/fixedbugs/bug257.go

    	"birth of freedom — and that government of the people, by the\n" +
    	"people, for the people, shall not perish from this earth.\n" +
    	"\n" +
    	"Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania\n"
    
    func main() {
    	m := md5.New()
    	io.WriteString(m, data)
    	hash := fmt.Sprintf("%x", m.Sum(nil))
    	if hash != "525f06bc62a65017cd2217d7584e5920" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9M bytes
    - Viewed (0)
Back to top