Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 209 for recursion (0.21 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

     *
     * Given that, introduces the following features in the schema:
     * * Type discovery ensuring that the types of the extensions get discovered and included in the schema (but just those types, not recursing)
     * * Function extractors which introduce configuring functions for the extensions
     *
     * If object conversion is enabled ([ifConversionSupported]):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. docs/pt/docs/help-fastapi.md

    Você pode se inscrever (pouco frequente) [**FastAPI e amigos** newsletter](newsletter.md){.internal-link target=_blank} para receber atualizações:
    
    * Notícias sobre FastAPI e amigos 🚀
    * Tutoriais 📝
    * Recursos ✨
    * Mudanças de última hora 🚨
    * Truques e dicas ✅
    
    ## Siga o FastAPI no twitter
    
    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. src/internal/types/testdata/check/cycles0.go

    	P3 *T13
    	T13 /* ERROR "invalid recursive type" */ T13
    )
    
    // test cases for issue 18643
    // (type cycle detection when non-type expressions are involved)
    type (
    	T14 [len(T14 /* ERROR "invalid recursive type" */ {})]int
    	T15 [][len(T15 /* ERROR "invalid recursive type" */ {})]int
    	T16 map[[len(T16 /* ERROR "invalid recursive type" */ {1:2})]int]int
    	T17 map[int][len(T17 /* ERROR "invalid recursive type" */ {1:2})]int
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/internal/types/testdata/fixedbugs/issue47796.go

    package p
    
    // parameterized types with self-recursive constraints
    type (
    	T1 /* ERROR "invalid recursive type" */ [P T1[P]]                            interface{}
    	T2 /* ERROR "invalid recursive type" */ [P, Q T2[P, Q]]                      interface{}
    	T3[P T2[P, Q], Q interface{ ~string }] interface{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue46461a.go

    package p
    
    // test case 1
    type T /* ERROR "invalid recursive type" */ [U interface{ M() T[U] }] int
    
    type X int
    
    func (X) M() T[X] { return 0 }
    
    // test case 2
    type A /* ERROR "invalid recursive type" */ [T interface{ A[T] }] interface{}
    
    // test case 3
    // TODO(gri) should report error only once
    type A2 /* ERROR "invalid recursive type" */ /* ERROR "invalid recursive type" */ [U interface{ A2[U] }] interface{ M() A2[U] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 20:18:45 UTC 2023
    - 643 bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/cycles5a.go

    type Error interface{ error }
    
    var err Error
    var _ = err.Error()
    
    
    // more esoteric cases
    
    type (
    	T1 interface { T2 }
    	T2 /* ERROR "invalid recursive type" */ T2
    )
    
    type (
    	T3 interface { T4 }
    	T4 /* ERROR "invalid recursive type" */ T5
    	T5 = T6
    	T6 = T7
    	T7 = T4
    )
    
    
    // arbitrary code may appear inside an interface
    
    const n = unsafe.Sizeof(func(){})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue49276.go

    	}
    
    	B1 struct {
    		_ [unsafe.Sizeof(A1 /* ERROR "invalid recursive type" */ {})]int
    	}
    )
    
    // a mutually recursive case using len
    type (
    	A2 struct {
    		f [len(B2{}.f)]int
    	}
    
    	B2 struct {
    		f [len(A2 /* ERROR "invalid recursive type" */ {}.f)]int
    	}
    )
    
    // test case from issue
    type a struct {
    	_ [42 - unsafe.Sizeof(a /* ERROR "invalid recursive type" */ {})]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 932 bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/DefaultResourceFilter.java

            }
            this.type = type;
        }
    
        @Override
        public boolean isRecursive() {
            return recursive;
        }
    
        @Override
        public void setRecursive(boolean recursive) {
            this.recursive = recursive;
        }
    
        @Override
        public ResourceFilterMatcher getMatcher() {
            return matcher;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top