Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,266 for maxs (0.04 sec)

  1. docs/pt/docs/tutorial/query-params-str-validations.md

        Por exemplo, um `List[int]` iria validar (e documentar) que os contéudos da lista são números inteiros. Mas apenas `list` não.
    
    ## Declarando mais metadados
    
    Você pode adicionar mais informações sobre o parâmetro.
    
    Essa informações serão inclusas no esquema do OpenAPI e utilizado pela documentação interativa e ferramentas externas.
    
    !!! note "Observação"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. docs/fr/docs/deployment/manually.md

    Gardez cela à l'esprit lorsque vous lisez "serveur" en général, cela pourrait faire référence à l'une de ces deux choses.
    
    Lorsqu'on se réfère à la machine distante, il est courant de l'appeler **serveur**, mais aussi **machine**, **VM** (machine virtuelle), **nœud**. Tout cela fait référence à un type de machine distante, exécutant  Linux, en règle générale, sur laquelle vous exécutez des programmes.
    
    
    ## Installer le programme serveur
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/CollectionMapperTest.groovy

    import org.gradle.tooling.model.DomainObjectSet
    import spock.lang.Specification
    
    class CollectionMapperTest extends Specification {
        final def mapper = new CollectionMapper()
    
        def "maps collection types"() {
            expect:
            def collection = mapper.createEmptyCollection(sourceType)
            collection.class == collectionType
    
            where:
            sourceType      | collectionType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/unique/handle_test.go

    // license that can be found in the LICENSE file.
    
    package unique
    
    import (
    	"fmt"
    	"internal/abi"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    // Set up special types. Because the internal maps are sharded by type,
    // this will ensure that we're not overlapping with other tests.
    type testString string
    type testIntArray [4]int
    type testEface any
    type testStringArray [3]string
    type testStringStruct struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/versions.md

    Após a criação dos testes, você pode atualizar a sua versão do **FastAPI** para uma mais recente, execute os testes para se certificar de que todo o seu código está funcionando corretamente.
    
    Se tudo estiver funcionando, ou após você realizar as alterações necessárias e todos os testes estiverem passando, então você pode fixar sua versão de `FastAPI` para essa mais nova.
    
    ## Sobre Starlette
    
    Não é recomendado fixar a versão de `starlette`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 20:14:40 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/template.go

    			continue
    		}
    		dict[key] = v[i+1]
    	}
    	return dict
    }
    
    // Merge maps merges multiple maps. Latter maps take precedence over previous maps on overlapping fields
    func mergeMaps(maps ...map[string]string) map[string]string {
    	if len(maps) == 0 {
    		return nil
    	}
    	res := make(map[string]string, len(maps[0]))
    	for _, m := range maps {
    		for k, v := range m {
    			res[k] = v
    		}
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/GroupsJavadocOptionFileOptionTest.groovy

    import com.google.common.collect.Maps
    import spock.lang.Specification
    
    class GroupsJavadocOptionFileOptionTest extends Specification {
        private JavadocOptionFileWriterContext writerContextMock = Mock()
        private final String optionName = "testOption"
    
        private GroupsJavadocOptionFileOption groupsFile = new GroupsJavadocOptionFileOption(optionName, Maps.<String, List<String>>newLinkedHashMap())
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/lang/pt.js

    crédito digitado não é válido",badCVV:"O código de segurança do cartão de crédito não é válido",wrongFileDim:"As dimensões da imagem não são válidas",imageTooTall:"a imagem não pode ser mais alta que ",imageTooWide:"a imagem não pode ser mais larga que ",imageTooSmall:"a imagem é muito pequena",min:"min",max:"max",imageRatioNotAccepted:"A proporção da imagem (largura x altura) não é válida",badBrazilTelephoneAnswer:"O número de telefone digitado é inválido",badBrazilCEPAnswer:"O CEP digitado é i...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/FilteredMultimapValues.java

                multimap.entryPredicate(), Maps.<V>valuePredicateOnEntries(Predicates.in(c))));
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
        return Iterables.removeIf(
            multimap.unfiltered().entries(),
            // explicit <Entry<K, V>> is required to build with JDK6
            Predicates.<Entry<K, V>>and(
                multimap.entryPredicate(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue21687.go

    		x = two
    		return 0
    	}()
    
    	return one[0], two[0]
    }
    
    func maps() (int, int) {
    	one := map[int]int{0: 1}
    	two := map[int]int{0: 2}
    
    	x := one
    	x[0] += func() int {
    		x = two
    		return 0
    	}()
    
    	return one[0], two[0]
    }
    
    var tests = [...]func() (int, int){
    	ptrs,
    	slices,
    	maps,
    }
    
    func main() {
    	bad := 0
    	for i, f := range tests {
    		if a, b := f(); a+b != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 18:10:17 UTC 2017
    - 940 bytes
    - Viewed (0)
Back to top