Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 711 for recurse (0.22 sec)

  1. docs/pt/docs/features.md

    ---
    hide:
      - navigation
    ---
    
    # Recursos
    
    ## Recursos do FastAPI
    
    **FastAPI** te oferece o seguinte:
    
    ### Baseado em padrões abertos
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. docs/pt/docs/help-fastapi.md

        * Também é possivel revisar as traduções já existentes.
    * Para propor novas seções na documentação.
    * Para corrigir um bug/questão.
    * Para adicionar um novo recurso.
    
    ## Entre no chat
    
    Entre no 👥 <a href="https://discord.gg/VQjSZaeJmf" class="external-link" target="_blank">server de conversa do Discord</a> 👥 e conheça novas pessoas da comunidade
    do FastAPI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (parentBuilder.getFeatures().contains(SERIALIZABLE)) {
          derivedSuites.add(createReserializedSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMULTISET)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        // Update the input indices on `input_axis`.
        current_input_index[input_axis] = i;
        // Write the value from `input_tensor` if it is the last axis or
        // recurse into the next axis.
        if (is_last_axis) {
          int64_t input_flat_index = ElementsAttr::getFlattenedIndex(
              input_shape_type, current_input_index);
          // Address of input element to write raw data.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/events.md

    ### `startup` e `shutdown` juntos
    
    Há uma grande chance que a lógica para sua *inicialização* e *encerramento* esteja conectada, você pode querer iniciar alguma coisa e então finalizá-la, adquirir um recurso e então liberá-lo, etc.
    
    Fazendo isso em funções separadas que não compartilham lógica ou variáveis entre elas é mais difícil já que você precisa armazenar os valores em variáveis globais ou truques parecidos.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    					p1.Internal.ForMain = pmain.ImportPath
    					visited[p] = p1
    					p = p1
    				} else {
    					visited[p] = p
    				}
    				p.Internal.PGOProfile = file
    				updateBuildInfo(p, file)
    				// Recurse to dependencies.
    				for i, pp := range p.Internal.Imports {
    					p.Internal.Imports[i] = split(pp)
    				}
    				return p
    			}
    
    			// Replace the package and imports with the PGO version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. test/fixedbugs/issue41575.go

    package p
    
    type T1 struct { // ERROR "invalid recursive type T1\n\tLINE: T1 refers to\n\tLINE+4: T2 refers to\n\tLINE: T1$|invalid recursive type"
    	f2 T2
    }
    
    type T2 struct { // GCCGO_ERROR "invalid recursive type"
    	f1 T1
    }
    
    type a b // GCCGO_ERROR "invalid recursive type"
    type b c // ERROR "invalid recursive type b\n\tLINE: b refers to\n\tLINE+1: c refers to\n\tLINE: b$|invalid recursive type"
    type c b // GCCGO_ERROR "invalid recursive type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/filename_flags.go

    	Filenames *[]string
    	Kustomize *string
    	Recursive *bool
    }
    
    // ToOptions creates a new FileNameOptions struct and sets FilenameOptions based on FileNameflags
    func (o *FileNameFlags) ToOptions() resource.FilenameOptions {
    	options := resource.FilenameOptions{}
    
    	if o == nil {
    		return options
    	}
    
    	if o.Recursive != nil {
    		options.Recursive = *o.Recursive
    	}
    	if o.Filenames != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/JarDirectory.java

            this.path = path;
        }
    
        public boolean isRecursive() {
            return recursive;
        }
    
        public void setRecursive(boolean recursive) {
            this.recursive = recursive;
        }
    
        @Override
        public String toString() {
            return "JarDirectory{" + "path=" + path + ", recursive=" + recursive + "}";
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/visitor_test.go

    	tests := []struct {
    		name            string
    		path            string
    		recursive       bool
    		fileExtensions  []string
    		expectedPaths   []string
    		expectPathError bool
    	}{
    		{
    			name:           "Recursive with default file extensions",
    			path:           testDir,
    			recursive:      true,
    			fileExtensions: FileExtensions,
    			expectedPaths: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top