Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 243 for depois (0.15 sec)

  1. cmd/site-replication-utils_gen.go

    				return
    			}
    		case "ss":
    			err = z.Status.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Status")
    				return
    			}
    		case "did":
    			z.DeplID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DeplID")
    				return
    			}
    		case "bkts":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "BucketStatuses")
    				return
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Nov 14 15:16:40 GMT 2022
    - 7.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

            List<org.apache.maven.api.model.Repository> repos = modelProfile.getRepositories();
            if (repos != null) {
                List<Repository> repositories = new ArrayList<>();
                for (org.apache.maven.api.model.Repository repo : repos) {
                    repositories.add(convertToSettingsRepository(repo));
                }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	depIDs := make([]string, 0, len(c.state.Peers))
    	for d := range c.state.Peers {
    		depIDs = append(depIDs, d)
    	}
    	errs := make([]error, len(c.state.Peers))
    	var wg sync.WaitGroup
    	wg.Add(len(depIDs))
    	for i := range depIDs {
    		go func(i int) {
    			defer wg.Done()
    			if depIDs[i] == globalDeploymentID() {
    				if selfActionFn != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

            }
    
            List<ArtifactRepository> artifactRepositories = new ArrayList<>();
            Collection<String> repoIds = new HashSet<>();
    
            if (dominantRepositories != null) {
                for (ArtifactRepository repository : dominantRepositories) {
                    repoIds.add(repository.getId());
                    artifactRepositories.add(repository);
                }
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  5. bin/update_deps.sh

    sed -i '/PROXY_REPO_SHA/,/lastStableSHA/ { s/"lastStableSHA":.*/"lastStableSHA": "'"$(getSha proxy)"'"/  }; /ZTUNNEL_REPO_SHA/,/lastStableSHA/ { s/"lastStableSHA":.*/"lastStableSHA": "'"$(getSha ztunnel)"'"/  }' istio.deps
    
    # shellcheck disable=SC1001
    LATEST_DEB11_DISTROLESS_SHA256=$(crane digest gcr.io/distroless/static-debian11 | awk -F\: '{print $2}')
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Sep 12 14:07:30 GMT 2023
    - 2K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/background-tasks.md

    Elle est importée/incluse directement dans **FastAPI** pour que vous puissiez l'importer depuis `fastapi` et éviter d'importer accidentellement `BackgroundTask` (sans `s` à la fin) depuis `starlette.background`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 5.7K bytes
    - Viewed (0)
  7. docs/fr/docs/python-types.md

    * **du support de l'éditeur**
    * **de la vérification de types**
    
    ...et **FastAPI** utilise ces mêmes déclarations pour :
    
    * **Définir les prérequis** : depuis les paramètres de chemins des requêtes, les entêtes, les corps, les dépendances, etc.
    * **Convertir des données** : depuis la requête vers les types requis.
    * **Valider des données** : venant de chaque requête :
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/files/profile-stable.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 423 bytes
    - Viewed (0)
  9. docs/fr/docs/deployment/versions.md

    target="_blank">versionnage sémantique</a>.
    
    Vous pouvez créer des applications de production avec **FastAPI** dès maintenant (et vous le faites probablement depuis un certain temps), vous devez juste vous assurer que vous utilisez une version qui fonctionne correctement avec le reste de votre code.
    
    ## Épinglez votre version de `fastapi`
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Oct 31 17:39:54 GMT 2022
    - 4K bytes
    - Viewed (0)
  10. manifests/charts/default/files/profile-stable.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 423 bytes
    - Viewed (0)
Back to top