Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,322 for Issue (0.08 sec)

  1. .github/workflows/stale-pr.yml

              days-before-issue-stale: -1
              stale-issue-label: stale
              stale-issue-message: >
                **BUG!** This issue should not be marked stale by the "stale" workflow.
                Please report it to @gradle/bt-support team
              days-before-issue-close: -1
              close-issue-message: >
                **BUG!** This issue should not be closed by the "stale" workflow.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromAnotherModule.kt

    // MODULE: dep
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // MODULE: main(dep)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 316 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/get_insecure.txt

    env GOINSECURE=insecure.go-get-issue-15410.appspot.com
    env GONOSUMDB=insecure.go-get-issue-15410.appspot.com
    go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try updating without GOINSECURE (should fail).
    env GOINSECURE=''
    env GONOSUMDB=''
    ! go get -d -u -f insecure.go-get-issue-15410.appspot.com/pkg/p
    
    go list -m ...
    stdout 'insecure.go-get-issue'
    
    -- ssh.go --
    // stub out uses of ssh by go get
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 937 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClass.kt

    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 280 bytes
    - Viewed (0)
  5. doc/next/3-tools.md

    ### Go command {#go-command}
    
    Setting the `GOROOT_FINAL` environment variable no longer has an effect
    ([#62047](/issue/62047)).
    Distributions that install the `go` command to a location other than
    `$GOROOT/bin/go` should install a symlink instead of relocating
    or copying the `go` binary.
    
    <!-- go.dev/issue/34208, CL 563137, CL 586095 -->
    The new `go` `env` `-changed` flag causes the command to print only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/cycles5.go

    type T10 /* ERROR "invalid recursive type" */ = *T10                 // issue #25141
    type T11 /* ERROR "invalid recursive type" */ = interface{ f(T11) }  // issue #23139
    
    // issue #18640
    type (
    	aa = bb
    	bb struct {
    		*aa
    	}
    )
    
    type (
    	a struct{ *b }
    	b = c
    	c struct{ *b /* ERROR "invalid use of type alias" */ }
    )
    
    // issue #24939
    type (
    	_ interface {
    		M(P)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClassFromAnotherModule.kt

    // MODULE: dep
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public static class RClass {}
    }
    
    // MODULE: main(dep)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon.RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 321 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromLibrary.kt

    // IGNORE_FE10
    // MODULE: lib
    // MODULE_KIND: LibraryBinary
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // MODULE: main(lib)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 361 bytes
    - Viewed (0)
  9. src/go/format/format_test.go

    	"i := 5 /* Comment */",         // issue #5551
    	"\ta()\n//line :1",             // issue #11276
    	"\t//xxx\n\ta()\n//line :2",    // issue #11276
    	"\ta() //line :1\n\tb()\n",     // issue #11276
    	"x := 0\n//line :1\n//line :2", // issue #11276
    
    	// whitespace
    	"",     // issue #11275
    	" ",    // issue #11275
    	"\t",   // issue #11275
    	"\t\t", // issue #11275
    	"\n",   // issue #11275
    	"\n\n", // issue #11275
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:46 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testerrors/testdata/err2.go

    	x := (*C.bar_t)(nil)
    	C.foop = x // ERROR HERE
    
    	// issue 13129: used to output error about C.unsignedshort with CC=clang
    	var x1 C.ushort
    	x1 = int(0) // ERROR HERE: C\.ushort
    
    	// issue 13423
    	_ = C.fopen() // ERROR HERE
    
    	// issue 13467
    	var x2 rune = '✈'
    	var _ rune = C.transform(x2) // ERROR HERE: C\.int
    
    	// issue 13635: used to output error about C.unsignedchar.
    	// This test tests all such types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top