Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 431 - 440 of 470 for stages (0.06 seconds)

  1. CHANGELOG/CHANGELOG-1.16.md

      - ip-mask-agent addon starts to use the label `node.kubernetes.io/masq-agent-ds-ready` instead of `beta.kubernetes.io/masq-agent-ds-ready` as its node selector.
      - kube-proxy addon starts to use the label `node.kubernetes.io/kube-proxy-ds-ready` instead of `beta.kubernetes.io/kube-proxy-ds-ready` as its node selector.
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Oct 23 20:13:20 GMT 2024
    - 345.2K bytes
    - Click Count (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64validation.s

    // license that can be found in the LICENSE file.
    
    // This file is for validation errors only, i.e., errors reported by the validate function.
    // Negative test cases for errors generated earlier in the assembler's preprocess stage
    // should be added to riscv64error.s.  If they are added to this file, they will prevent
    // the validate function from being run and TestRISCVValidation will report missing
    // errors.
    
    TEXT validation(SB),$0
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Nov 13 12:17:37 GMT 2025
    - 42.1K bytes
    - Click Count (0)
  3. docs/fr/docs/alternatives.md

    * [Swagger UI](https://github.com/swagger-api/swagger-ui)
    * [ReDoc](https://github.com/Rebilly/ReDoc)
    
    Ces deux-là ont été choisis parce qu'ils sont populaires et stables, mais en faisant une recherche rapide, vous pourriez trouver des dizaines d'alternatives supplémentaires pour OpenAPI (que vous pouvez utiliser avec **FastAPI**).
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 26.6K bytes
    - Click Count (0)
  4. cmd/erasure-multipart.go

    	}
    
    	var checksumCombined []byte
    
    	// However, in case of encryption, the persisted part ETags don't match
    	// what we have sent to the client during PutObjectPart. The reason is
    	// that ETags are encrypted. Hence, the client will send a list of complete
    	// part ETags of which may not match the ETag of any part. For example
    	//   ETag (client):          30902184f4e62dd8f98f0aaff810c626
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 47.1K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/docker.md

    ## Container Image'lar { #container-images }
    
    Docker, **container image** ve **container** oluşturup yönetmek için kullanılan başlıca araçlardan biri olmuştur.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 29.6K bytes
    - Click Count (0)
  6. docs/es/docs/deployment/docker.md

    ## Imágenes de Contenedor { #container-images }
    
    Docker ha sido una de las herramientas principales para crear y gestionar **imágenes de contenedor** y **contenedores**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  7. docs/uk/docs/deployment/docker.md

    ## Образи контейнерів { #container-images }
    
    Docker був одним з основних інструментів для створення та керування образами контейнерів і контейнерами.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 44.2K bytes
    - Click Count (0)
  8. docs/pt/docs/deployment/docker.md

    ## Imagens de contêiner { #container-images }
    
    Docker tem sido uma das principais ferramentas para criar e gerenciar **imagens de contêiner** e **contêineres**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  9. doc/go_spec.html

    var s1 = []int{1, 2, 3}
    var s2 = s1                    // s2 stores the slice descriptor of s1
    s1 = s1[:1]                    // s1's length is 1 but it still shares its underlying array with s2
    s2[0] = 42                     // setting s2[0] changes s1[0] as well
    fmt.Println(s1, s2)            // prints [42] [42 2 3]
    
    var m1 = make(map[string]int)
    var m2 = m1                    // m2 stores the map descriptor of m1
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 23:39:18 GMT 2026
    - 287.8K bytes
    - Click Count (1)
  10. docs/zh/docs/deployment/docker.md

    容器镜像可类比为**程序**文件及其内容,例如 `python` 和某个文件 `main.py`。
    
    而**容器**本身(相对**容器镜像**)就是该镜像的实际运行实例,可类比为**进程**。事实上,容器只有在有**进程在运行**时才处于运行状态(通常只有一个进程)。当容器中没有任何进程在运行时,容器就会停止。
    
    ## 容器镜像 { #container-images }
    
    Docker 一直是创建和管理**容器镜像**与**容器**的主要工具之一。
    
    还有一个公共的 [Docker Hub](https://hub.docker.com/),其中为许多工具、环境、数据库和应用提供了预制的**官方容器镜像**。
    
    例如,有官方的 [Python 镜像](https://hub.docker.com/_/python)。
    
    还有许多用于不同目的(如数据库)的镜像,例如:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 24.8K bytes
    - Click Count (0)
Back to Top