Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,311 for doens (0.04 sec)

  1. test/fixedbugs/issue31573.go

    	go f()
    	go f(new(int))           // ERROR "... argument does not escape$" "new\(int\) does not escape$"
    	go f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
    
    	go f(nil...)
    	go f([]*int{}...)                   // ERROR "\[\]\*int{} does not escape$"
    	go f([]*int{new(int)}...)           // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:37:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/lookup2.go

    	_ = x.foo3 // OK
    	_ = x.foo4 // ERROR "x.foo4 undefined (type S has no field or method foo4, but does have field foO4)"
    }
    
    func _() {
    	_ = S{Foo1: 0} // OK
    	_ = S{Foo2 /* ERROR "unknown field Foo2 in struct literal of type S, but does have FoO2" */ : 0}
    	_ = S{Foo3 /* ERROR "unknown field Foo3 in struct literal of type S, but does have foo3" */ : 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.plugins.antlr.AntlrTask.getAntlrClasspath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (AntlrTask.java:0)
    Method <org.gradle.api.plugins.antlr.AntlrTask.getSource()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (AntlrTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. test/escape_iface.go

    		j := 0
    		var v int
    		var ok bool
    		var x interface{} = i // ERROR "i does not escape"
    		var y interface{} = j // ERROR "j does not escape"
    
    		*(&v) = x.(int)
    		*(&v), *(&ok) = y.(int)
    	}
    	{ // #13805, #15796
    		i := 0
    		j := 0
    		var ok bool
    		var x interface{} = i // ERROR "i does not escape"
    		var y interface{} = j // ERROR "j does not escape"
    
    		sink = x.(int)         // ERROR "x.\(int\) escapes to heap"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 17:16:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

                    assembler.executable = 'does-not-exist'
                    cCompiler.executable = 'does-not-exist'
                    cppCompiler.executable = 'does-not-exist'
                    linker.executable = 'does-not-exist'
                    staticLibArchiver.executable = 'does-not-exist'
                    objcCompiler.executable = 'does-not-exist'
                    objcppCompiler.executable = 'does-not-exist'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. test/escape_closure.go

    	x := 0
    	func(p *int) { // ERROR "p does not escape" "func literal does not escape"
    		*p = 1
    	}(&x)
    }
    
    func ClosureCallArgs1() {
    	x := 0
    	for {
    		func(p *int) { // ERROR "p does not escape" "func literal does not escape"
    			*p = 1
    		}(&x)
    	}
    }
    
    func ClosureCallArgs2() {
    	for {
    		x := 0
    		func(p *int) { // ERROR "p does not escape" "func literal does not escape"
    			*p = 1
    		}(&x)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:36:09 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/lookup1.go

    	_ = s.X /* ERROR "s.X undefined (type struct{x int; aBc int} has no field or method X, but does have field x)" */ ()
    
    	_ = s.aBc
    	_ = s.abc // ERROR "s.abc undefined (type struct{x int; aBc int} has no field or method abc, but does have field aBc)"
    	_ = s.ABC // ERROR "s.ABC undefined (type struct{x int; aBc int} has no field or method ABC, but does have field aBc)"
    }
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/AbstractExecutionListener.java

            // default does nothing
        }
    
        public void projectSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
        public void projectFailed(ExecutionEvent event) {
            // default does nothing
        }
    
        public void forkStarted(ExecutionEvent event) {
            // default does nothing
        }
    
        public void forkSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue60946.go

    	// these are not ok (interface and non-interface types)
    	g(t, t1 /* ERROR "does not match" */)
    	g(t1, t /* ERROR "does not match" */)
    	g(tn, t1 /* ERROR "does not match" */)
    	g(t1, tn /* ERROR "does not match" */)
    
    	g(t, t1 /* ERROR "does not match" */, t2)
    	g(t1, t2 /* ERROR "does not match" */, t)
    	g(tn, t1 /* ERROR "does not match" */, t2)
    	g(t1, t2 /* ERROR "does not match" */, tn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 26 18:33:36 UTC 2023
    - 836 bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.plugins.quality.PmdExtension.getRuleSetFiles()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (PmdExtension.java:0)
    Method <org.gradle.api.tasks.SourceSet.getAnnotationProcessorPath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top