Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for Potato (0.15 sec)

  1. pkg/kubelet/certificate/kubelet.go

    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    // client that can be used to sign new certificates (or rotate). If a CSR
    // client is set later, it may begin rotating/renewing the client cert.
    func NewKubeletClientCertificateManager(
    	certDirectory string,
    	nodeName types.NodeName,
    	bootstrapCertData []byte,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return err
    	}
    
    	h.lastResponse = &kmsPluginHealthzResponse{err: nil, received: time.Now()}
    	h.ttl = kmsPluginHealthzPositiveTTL
    	return nil
    }
    
    // rotateDEKOnKeyIDChange tries to rotate to a new DEK/seed if the key ID returned by Status does not match the
    // current state.  If a successful rotation is performed, the new DEK/seed and keyID overwrite the existing state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.TLSPrivateKeyFile, "tls-private-key-file", c.TLSPrivateKeyFile, "File containing x509 private key matching --tls-cert-file.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/op.go

    	// architecture specific aux types
    	auxARM64BitField     // aux is an arm64 bitfield lsb and width packed into auxInt
    	auxS390XRotateParams // aux is a s390x rotate parameters object encoding start bit, end bit and rotate amount
    	auxS390XCCMask       // aux is a s390x 4-bit condition code mask
    	auxS390XCCMaskInt8   // aux is a s390x 4-bit condition code mask, auxInt is an int8 immediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    	//
    	// s.ticket compared with zero in couple of places, therefore set lowest bit.
    	// It will not affect treap's quality noticeably.
    	s.ticket = cheaprand() | 1
    	s.parent = last
    	*pt = s
    
    	// Rotate up into tree according to ticket (priority).
    	for s.parent != nil && s.parent.ticket > s.ticket {
    		if s.parent.prev == s {
    			root.rotateRight(s.parent)
    		} else {
    			if s.parent.next != s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. docs/it/docs/index.md

    **Typer** è il fratello minore di FastAPI. Ed è stato ideato per essere la **FastAPI delle CLI**. ⌨️ 🚀
    
    ## Requisiti
    
    Python 3.6+
    
    FastAPI è basata su importanti librerie:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/compile.go

    	{name: "flagalloc", fn: flagalloc, required: true}, // allocate flags register
    	{name: "regalloc", fn: regalloc, required: true},   // allocate int & float registers + stack slots
    	{name: "loop rotate", fn: loopRotate},
    	{name: "trim", fn: trim}, // remove empty blocks
    }
    
    // Double-check phase ordering constraints.
    // This code is intended to document the ordering requirements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. docs/pt/docs/index.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Clique no botão "Try it out", ele permitirá que você preencha os parâmetros e interaja diretamente com a API:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    * Então clique no botão "Execute", a interface do usuário irá se comunicar com a API, enviar os parâmetros, pegar os resultados e mostrá-los na tela:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/log/options.go

    	// RotateOutputPath is the path to a rotating log file. This file should
    	// be automatically rotated over time, based on the rotation parameters such
    	// as RotationMaxSize and RotationMaxAge. The default is to not rotate.
    	//
    	// This path is used as a foundational path. This is where log output is normally
    	// saved. When a rotation needs to take place because the file got too big,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	if err := nodebootstraptoken.AutoApproveNodeBootstrapTokens(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeCertificateRotation(client); err != nil {
    		errs = append(errs, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top