Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 711 for recurse (0.15 sec)

  1. src/go/parser/testdata/resolution/resolution.src

    var cycle /* =@cycle */ = cycle /* @cycle */ + 1
    
    type chain /* =@chain */ struct {
    	next /* =@next */ *chain /* @chain */
    }
    
    func recursive /* =@recursive */() {
    	recursive /* @recursive */ ()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 21:19:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. src/os/types_windows.go

    	// Per https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-points-and-file-operations,
    	// “Applications that use the CreateFile function should specify the
    	// FILE_FLAG_OPEN_REPARSE_POINT flag when opening the file if it is a reparse
    	// point.”
    	//
    	// And per https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew,
    	// “If the file is not a reparse point, then this flag is ignored.”
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K 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. src/encoding/xml/marshal_test.go

    		Value: &AnySliceTest{
    			Nested: "b",
    		},
    	},
    
    	// Test recursive types.
    	{
    		Value: &RecurseA{
    			A: "a1",
    			B: &RecurseB{
    				A: &RecurseA{"a2", nil},
    				B: "b1",
    			},
    		},
    		ExpectXML: `<RecurseA><A>a1</A><B><A><A>a2</A></A><B>b1</B></B></RecurseA>`,
    	},
    
    	// Test ignoring fields via "-" tag
    	{
    		ExpectXML: `<IgnoreTest></IgnoreTest>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. 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)
  8. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Join combined with collect" suppressId="join_with_collect" problemDescriptor="Use a `join` method overload" text="$callJoin$($sep$, $callCollect$($src$, $transform$))" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="org.gradle.util.internal.CollectionUtils.join($sep$, $src$, $transform$)">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. 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)
  10. test/fixedbugs/bug418.go

    package p
    
    func Two() (a, b int)
    
    // F used to compile.
    func F() (x interface{}, y int) {
    	return Two(), 0 // ERROR "single-value context|2\-valued"
    }
    
    // Recursive used to trigger an internal compiler error.
    func Recursive() (x interface{}, y int) {
    	return Recursive(), 0 // ERROR "single-value context|2\-valued"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 557 bytes
    - Viewed (0)
Back to top