Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,322 for Issue (0.04 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiBuildableEclipseModelFixesCrossVersionSpec.groovy

    import org.gradle.tooling.model.GradleProject
    import org.gradle.tooling.model.eclipse.EclipseProject
    import spock.lang.Issue
    
    class ToolingApiBuildableEclipseModelFixesCrossVersionSpec extends ToolingApiSpecification {
        @Issue("GRADLE-1529")
        //this is just one of the ways of fixing the problem. See the issue for details
        def "should not show not executable tasks"() {
            file('build.gradle') << '''
    task a
    task b
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            If you need help with Gradle or have a usage question, please reach [our community](http://help.gradle.org/) instead of creating an issue.
    
            Please open Android-related issues on [the Android Issue Tracker](https://source.android.com/source/report-bugs)
            Please open IntelliJ-related issues on [the JetBrains Issue Tracker](https://youtrack.jetbrains.com/newIssue?project=IDEA)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments2.golden

    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	// comment
    	_ = yyyyyyyyyyyyyyyy			// comment - should be aligned
    
    	// test case from issue
    label:
    	mask := uint64(1)<<c - 1		// Allocation mask
    	used := atomic.LoadUint64(&h.used)	// Current allocations
    }
    
    // Test cases for issue 18782
    var _ = [][]int{
    	/*       a, b, c, d, e */
    	/* a */ {0, 0, 0, 0, 0},
    	/* b */ {0, 5, 4, 4, 4},
    	/* c */ {0, 4, 5, 4, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments2.input

       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx // comment
       _ = yyyyyyyyyyyyyyyy // comment - should be aligned
    
    // test case from issue
    label:
       mask := uint64(1)<<c - 1 // Allocation mask
       used := atomic.LoadUint64(&h.used) // Current allocations
    }
    
    // Test cases for issue 18782
    var _ = [][]int{
       /*       a, b, c, d, e */
       /* a */ {0, 0, 0, 0, 0},
       /* b */ {0, 5, 4, 4, 4},
       /* c */ {0, 4, 5, 4, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 00:06:54 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

    import org.gradle.util.internal.TextUtil
    import org.junit.Rule
    import spock.lang.Issue
    
    import java.nio.file.Paths
    
    class JavadocIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        TestResources testResources = new TestResources(temporaryFolder)
    
        @Issue("GRADLE-1563")
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/dirent.go

    	case 2:
    		_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    		return uint64(b[1]) | uint64(b[0])<<8
    	case 4:
    		_ = b[3] // bounds check hint to compiler; see golang.org/issue/14808
    		return uint64(b[3]) | uint64(b[2])<<8 | uint64(b[1])<<16 | uint64(b[0])<<24
    	case 8:
    		_ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
    		return uint64(b[7]) | uint64(b[6])<<8 | uint64(b[5])<<16 | uint64(b[4])<<24 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/go/printer/testdata/alignment.golden

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package alignment
    
    // ----------------------------------------------------------------------------
    // Examples from issue #7335.
    
    func main() {
    	z := MyStruct{
    		Foo:		"foo",
    		Bar:		"bar",
    		Name:		"name",
    		LongName:	"longname",
    		Baz:		"baz",
    	}
    	y := MyStruct{
    		Foo:			"foo",
    		Bar:			"bar",
    		NameXX:			"name",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  8. src/go/printer/testdata/alignment.input

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package alignment
    
    // ----------------------------------------------------------------------------
    // Examples from issue #7335.
    
    func main() {
        z := MyStruct{
            Foo:      "foo",
            Bar:      "bar",
            Name:     "name",
            LongName: "longname",
            Baz:      "baz",
        }
        y := MyStruct{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue47747.go

            x.m /* ERROR "type *T2 is pointer to interface, not interface" */()
    }
    
    // Test case 1 from issue
    
    type Fooer1[t any] interface {
    	Foo(Barer[t])
    }
    type Barer[t any] interface {
    	Bar(t)
    }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // type Foo1[t any] t
    // type Bar[t any] t
    // 
    // func (l Foo1[t]) Foo(v Barer[t]) { v.Bar(t(l)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. README.md

    component of Ambient mesh.
    
    ## Issue management
    
    We use GitHub to track all of our bugs and feature requests. Each issue we track has a variety of metadata:
    
    - **Epic**. An epic represents a feature area for Istio as a whole. Epics are fairly broad in scope and are basically product-level things.
    Each issue is ultimately part of an epic.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top