Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for unhelpful (0.39 sec)

  1. test/fixedbugs/bug464.go

    // errorcheck
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3937: unhelpful typechecking loop message
    // for identifiers wrongly used as types.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 338 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/testdata/err1.go

    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    #cgo LDFLAGS: -L/nonexist
    
    void test() {
    	xxx;		// ERROR HERE
    }
    
    // Issue 8442.  Cgo output unhelpful error messages for
    // invalid C preambles.
    void issue8442foo(UNDEF*); // ERROR HERE
    */
    import "C"
    
    func main() {
    	C.test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 404 bytes
    - Viewed (0)
  3. test/fixedbugs/bug463.go

    // errorcheck
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3757: unhelpful typechecking loop message
    // for constants that refer to themselves.
    
    package main
    
    const a = a // ERROR "refers to itself|definition loop|initialization cycle"
    
    const (
    	X    = A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 497 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        private static String simpleClassName(Class<?> detailsType) {
            if (!detailsType) {
                return null
            } else {
                // Class.simpleName returns "" for certain anonymous classes and unhelpful things like "Details" for our op interfaces
                String clsName = detailsType.interfaces.length == 0 ? detailsType.name : detailsType.interfaces.first().name
                clsName.substring(clsName.lastIndexOf('.') + 1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

        }
    
        /**
         * Indirect usage means that stack trace at the time the deprecation is logged does not indicate the call site.
         * This directs GE to not display unhelpful stacktraces with the deprecation.
         * <p>
         * Output: ${feature} has been deprecated.
         */
        @CheckReturnValue
        public static DeprecationMessageBuilder<?> deprecateIndirectUsage(String feature) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/doc/pkg.go

    	return string(p)
    }
    
    // prettyPath returns a version of the package path that is suitable for an
    // error message. It obeys the import comment if present. Also, since
    // pkg.build.ImportPath is sometimes the unhelpful "" or ".", it looks for a
    // directory name in GOROOT or GOPATH if that happens.
    func (pkg *Package) prettyPath() string {
    	path := pkg.build.ImportComment
    	if path == "" {
    		path = pkg.build.ImportPath
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/carchive_test.go

    // checkLineComments checks that the export header generated by
    // -buildmode=c-archive doesn't have any absolute paths in the #line
    // comments. We don't want those paths because they are unhelpful for
    // the user and make the files change based on details of the location
    // of GOPATH.
    func checkLineComments(t *testing.T, hdrname string) {
    	hdr, err := os.ReadFile(hdrname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/containers-scope/kotlin/build.gradle.kts

        }
        val myCheck by registering {
            doLast { /* assert on something meaningful */ }
        }
        check {
            dependsOn(myCheck)
        }
        register("myHelp") {
            doLast { /* do something helpful */ }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 351 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

              - Value: 'round' selects variant: 'blueRoundElements'
              - Value: 'square' selects variant: 'blueSquareElements'
              - Value: 'triangle' selects variant: 'blueTriangleElements'""")
            and: "Helpful resolutions are provided"
            assertSuggestsReviewingAlgorithm()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    start by opening a new issue describing the bug or feature you're intending to
    fix. Even if you think it's relatively minor, it's helpful to know what people
    are working on. And as mentioned above, API changes should be discussed
    thoroughly before moving to code.
    
    Some examples of types of pull requests that are immediately helpful:
    
      - Fixing a bug without changing a public API.
      - Fixing or improving documentation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top