Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 201 for complain (0.26 sec)

  1. src/runtime/defs3_linux.go

    GOARCH=ppc64 cgo -cdefs defs_linux.go defs3_linux.go > defs_linux_ppc64.h
    */
    
    package runtime
    
    /*
    #define size_t __kernel_size_t
    #define sigset_t __sigset_t // rename the sigset_t here otherwise cgo will complain about "inconsistent definitions for C.sigset_t"
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    #include <asm/ucontext.h>
    #include <asm-generic/fcntl.h>
    */
    import "C"
    
    const (
    	O_RDONLY    = C.O_RDONLY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue23587.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _(x int) {
    	_ = ~x    // unary ~ permitted but the type-checker will complain
    }
    
    func _(x int) {
    	_ = x ~ x // ERROR "unexpected ~ at end of statement"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 02:19:42 UTC 2022
    - 345 bytes
    - Viewed (0)
  3. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        options.compilerArgs.add("-Aorg.gradle.annotation.processing.instrumented.project=${project.name}")
    }
    
    strictCompile {
        ignoreAnnotationProcessing() // Without this, javac will complain about unclaimed annotations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/go/parser/testdata/issue34946.src

    // Test case for go.dev/issue/34946: Better synchronization of
    // parser for function declarations that start their
    // body's opening { on a new line.
    
    package p
    
    // accept Allman/BSD-style declaration but complain
    // (implicit semicolon between signature and body)
    func _() int
    { /* ERROR "unexpected semicolon or newline before {" */
    	{ return 0 }
    }
    
    func _() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 608 bytes
    - Viewed (0)
  5. src/runtime/import_test.go

    // testing, test functions can't use testing.T, so instead we have the T
    // interface, which *testing.T satisfies. And we start names with "XTest"
    // because otherwise go test will complain about Test functions with the wrong
    // signature. To actually expose these as test functions, this file contains
    // trivial wrappers.
    //
    // 2. Runtime package tests can't directly import other std packages, so we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. test/fixedbugs/bug345.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bufio"
    	goio "io"
    
    	"./io"
    )
    
    func main() {
    	// The errors here complain that io.X != io.X
    	// for different values of io so they should be
    	// showing the full import path, which for the
    	// "./io" import is really ..../go/test/io.
    	// For example:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 978 bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    tasks.named<JavaCompile>("compileJava") {
        // Without this, javac will complain about unclaimed org.gradle.api.NonNullApi annotation
        options.compilerArgs.add("-Xlint:-processing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/net/tcpsock_plan9.go

    	}
    	return sd.doDialTCP(ctx, laddr, raddr)
    }
    
    func (sd *sysDialer) doDialTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
    	switch sd.network {
    	case "tcp4":
    		// Plan 9 doesn't complain about [::]:0->127.0.0.1, so it's up to us.
    		if laddr != nil && len(laddr.IP) != 0 && laddr.IP.To4() == nil {
    			return nil, &AddrError{Err: "non-IPv4 local address", Addr: laddr.String()}
    		}
    	case "tcp", "tcp6":
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_exit.txt

    # catches a zero exit with missing output.
    cd zero
    ! go test
    stdout 'panic'
    cd ../normal
    go test
    stdout ^ok
    cd ..
    
    # If a TestMain exits with a zero status code, 'go test' shouldn't
    # complain about that. It's a common way to skip testing a package
    # entirely.
    go test ./main_zero
    ! stdout 'skipping all tests'
    stdout ^ok
    
    # With -v, we'll see the warning from TestMain.
    go test -v ./main_zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 20:38:03 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/signing/src/testFixtures/groovy/org/gradle/test/fixtures/GpgCmdFixture.groovy

        }
    
        static cleanupGpgCmd(def gpgHomeSymlink) {
            Files.deleteIfExists(gpgHomeSymlink)
        }
    
        static prepareGnupgHomeSymlink(File gpgHomeInTest) {
            // We have to do this, otherwise gpg will complain: can't connect to the agent: File name too long
            // it's limited to 108 chars due to http://man7.org/linux/man-pages/man7/unix.7.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top