Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for complain (0.32 sec)

  1. src/runtime/debug/debug.s

    // license that can be found in the LICENSE file.
    
    // Nothing to see here.
    // This file exists so that the go command knows that parts of the
    // package are implemented in C, so that it does not instruct the
    // Go compiler to complain about extern declarations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 425 bytes
    - Viewed (0)
  2. src/os/signal/sig.s

    // The runtime package uses //go:linkname to push a few functions into this
    // package but we still need a .s file so the Go tool does not pass -complete
    // to the go tool compile so the latter does not complain about Go functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 410 bytes
    - Viewed (0)
  3. test/fixedbugs/issue9608.go

    // Issue 9608: dead code elimination in switch statements.
    
    // This has to be done as a package rather than as a file,
    // because run.go runs files with 'go run', which passes the
    // -complete flag to compiler, causing it to complain about
    // the intentionally unimplemented function fail.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 06 19:05:47 UTC 2015
    - 478 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_asm.txt

    -- go.mod --
    module coverasm
    
    go 1.16
    -- p.go --
    package p
    
    func f()
    
    func g() {
    	println("g")
    }
    -- p.s --
    // empty asm file,
    // so go test doesn't complain about declaration of f in p.go.
    -- p_test.go --
    package p
    
    import "testing"
    
    func Test(t *testing.T) {
    	g()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 604 bytes
    - Viewed (0)
  5. test/fixedbugs/issue33275_run.go

    // license that can be found in the LICENSE file.
    
    // Make sure we don't get an index out of bounds error
    // while trying to print a map that is concurrently modified.
    // The runtime might complain (throw) if it detects the modification,
    // so we have to run the test as a subprocess.
    
    package main
    
    import (
    	"os/exec"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 717 bytes
    - Viewed (0)
  6. src/go/parser/testdata/typeset.go2

    // with a (type parameter) name are considered array sizes.
    // The term must be a valid expression (it could be a type incl. a
    // tilde term) but the type-checker will complain.
    type (
            _[t] t
            _[t|t] t
    
            // These are invalid and the type-checker will complain.
            _[~t] t
            _[~t|t] t
            _[t|~t] t
            _[~t|~t] t
    )
    
    type _[_ t, t] /* ERROR "missing type constraint" */ t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/vet/testdata/buildtag/buildtag7.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // +build ignore
    
    #include "go_asm.h"
    
    // ok because we cannot parse assembly files
    // the assembler would complain if we did assemble this file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 320 bytes
    - Viewed (0)
  8. test/fixedbugs/issue4748.go

    // run
    
    // Copyright 2013 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 4748.
    // This program used to complain because inlining created two exit labels.
    
    package main
    
    func jump() {
            goto exit
    exit:
            return
    }
    func main() {
            jump()
            jump()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 374 bytes
    - Viewed (0)
  9. pkg/security/apparmor/testdata/profiles

    /usr/lib/cups/backend/cups-pdf (enforce)
    /usr/sbin/ntpd (enforce)
    /usr/lib/connman/scripts/dhclient-script (enforce)
    /usr/lib/NetworkManager/nm-dhcp-client.action (enforce)
    /sbin/dhclient (enforce)
    foo-container (complain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 17:31:25 UTC 2016
    - 978 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/testdata/typeset.go

    // with a (type parameter) name are considered array sizes.
    // The term must be a valid expression (it could be a type incl. a
    // tilde term) but the type-checker will complain.
    type (
            _[t] t
            _[t|t] t
    
            // These are invalid and the type-checker will complain.
            _[~t] t
            _[~t|t] t
            _[t|~t] t
            _[~t|~t] t
    )
    
    type (
            _[_ t, t /* ERROR missing type constraint */ ] t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 17:49:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top