Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for recursion (0.19 sec)

  1. test/typeparam/issue48962.dir/b.go

    	Si  a.S[Si]             // ERROR "invalid recursive type"
    	Pi  a.P[Pi]             // ok (indirection through a.P)
    	M1i a.M[int, M1i]       // ok (indirection through a.M)
    	M2i a.M[a.A[byte], M2i] // ok (indirection through a.M)
    
    	A2i a.A[a.S[a.P[A2i]]] // ok (indirection through a.P)
    	A3i a.A[a.S[a.S[A3i]]] // ERROR "invalid recursive type"
    
    	T2 a.S[T0[T2]] // ERROR "invalid recursive type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue48951.go

    package p
    
    type (
            A1[P any] [10]A1 /* ERROR "invalid recursive type" */ [P]
            A2[P any] [10]A2 /* ERROR "invalid recursive type" */ [*P]
            A3[P any] [10]*A3[P]
    
            L1[P any] []L1[P]
    
            S1[P any] struct{ f S1 /* ERROR "invalid recursive type" */ [P] }
            S2[P any] struct{ f S2 /* ERROR "invalid recursive type" */ [*P] } // like example in issue
            S3[P any] struct{ f *S3[P] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 822 bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/events.md

    **começar** a receber requisições, e logo após **terminar** de lidar com as requisições, ele cobre toda a **vida útil** (_lifespan_) da aplicação (o termo "vida útil" será importante em um segundo 😉).
    
    Pode ser muito útil para configurar **recursos** que você precisa usar por toda aplicação, e que são **compartilhados** entre as requisições, e/ou que você precisa **limpar** depois. Por exemplo, o pool de uma conexão com o banco de dados ou carregamento de um modelo compartilhado de aprendizado...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. test/fixedbugs/bug195.go

    type I2 int
    
    type I3 interface{ int } // ERROR "interface"
    
    type S struct { // GC_ERROR "invalid recursive type"
    	x interface{ S } // GCCGO_ERROR "interface"
    }
    type I4 interface { // GC_ERROR "invalid recursive type: I4 refers to itself"
    	I4 // GCCGO_ERROR "interface"
    }
    
    type I5 interface { // GC_ERROR "invalid recursive type I5\n\tLINE:.* I5 refers to\n\tLINE+4:.* I6 refers to\n\tLINE:.* I5$"
    	I6
    }
    
    type I6 interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 14:21:33 UTC 2022
    - 704 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue49439.go

    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    type T0 /* ERROR "invalid recursive type" */ [P T0[P]] struct{}
    
    type T1 /* ERROR "invalid recursive type" */ [P T2[P]] struct{}
    type T2[P T1[P]] struct{}
    
    type T3 /* ERROR "invalid recursive type" */ [P interface{ ~struct{ f T3[int] } }] struct{}
    
    // valid cycle in M
    type N[P M[P]] struct{}
    type M[Q any] struct { F *M[Q] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 739 bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

                        boolean allowStubModel,
                        boolean recursive,
                        boolean processPlugins) {
                    super(session);
                    this.path = path;
                    this.source = source;
                    this.allowStubModel = allowStubModel;
                    this.recursive = recursive;
                    this.processPlugins = processPlugins;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/index.md

    # Guia de Usuário Avançado
    
    ## Recursos Adicionais
    
    O [Tutorial - Guia de Usuário](../tutorial/index.md){.internal-link target=_blank} deve ser o suficiente para dar a você um tour por todos os principais recursos do **FastAPI**.
    
    Na próxima seção você verá outras opções, configurações, e recursos adicionais.
    
    !!! tip "Dica"
        As próximas seções **não são necessáriamente "avançadas"**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. cmd/metacache_test.go

    		lastHandout:  metaCacheTestsetTimestamp,
    		dataVersion:  metacacheStreamVersion,
    	},
    	1: {
    		id:           "case-2-recursive",
    		bucket:       "bucket",
    		root:         "folder/prefix",
    		recursive:    true,
    		status:       scanStateSuccess,
    		fileNotFound: false,
    		error:        "",
    		started:      metaCacheTestsetTimestamp,
    		ended:        metaCacheTestsetTimestamp.Add(time.Minute),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/spec/ResolvableConfigurationsSpec.java

        private final boolean recursive;
    
        public ResolvableConfigurationsSpec(@Nullable String searchTarget, boolean showLegacy, boolean recursive, boolean showAttributePrecedence) {
            super(searchTarget, showLegacy, showAttributePrecedence);
            this.recursive = recursive;
        }
    
        @Override
        public String getReportedTypeAlias() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. test/fixedbugs/bug398.go

    // (This test used to have problems - see #15596.)
    
    package p
    
    // exported interfaces
    
    type I1 interface { // ERROR "invalid recursive type: anonymous interface refers to itself"
          F() interface{I1}
    }
    
    type I2 interface { // ERROR "invalid recursive type: anonymous interface refers to itself"
          F() interface{I2}
    }
    
    var V1 I1
    var V2 I2
    
    func F() bool {
           return V1 == V2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 951 bytes
    - Viewed (0)
Back to top