Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 711 for recurse (0.5 sec)

  1. 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)
  2. test/fixedbugs/issue21273.go

    package main
    
    type T0 T0 // ERROR "invalid recursive type"
    type _ map[T0]int
    
    type T1 struct{ T1 } // ERROR "invalid recursive type"
    type _ map[T1]int
    
    func f() {
    	type T2 T2 // ERROR "invalid recursive type"
    	type _ map[T2]int
    }
    
    func g() {
    	type T3 struct{ T3 } // ERROR "invalid recursive type"
    	type _ map[T3]int
    }
    
    func h() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 629 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test/fixedbugs/issue22904.go

    // license that can be found in the LICENSE file.
    
    // Issue 22904: Make sure the compiler emits a proper error message about
    // invalid recursive types rather than crashing.
    
    package p
    
    type a struct{ b } // ERROR "invalid recursive type"
    type b struct{ a } // GCCGO_ERROR "invalid recursive type"
    
    var x interface{}
    
    func f() {
    	x = a{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 464 bytes
    - Viewed (0)
Back to top