Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 201 for complain (0.17 sec)

  1. test/fixedbugs/issue20749.go

    // errorcheck
    
    // Copyright 2017 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.
    
    package p
    
    // Verify that the compiler complains even if the array
    // has length 0.
    var a [0]int
    var _ = a[2:] // ERROR "invalid slice index 2|array index out of bounds|index 2 out of bounds"
    
    var b [1]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 476 bytes
    - Viewed (0)
  2. test/fixedbugs/bug240.go

    package main
    
    import . "unsafe"	// ERROR "not used"
    
    func main() {
    	var x int
    	println(unsafe.Sizeof(x)) // ERROR "undefined"
    }
    
    /*
    After a '.' import, "unsafe" shouldn't be defined as
    an identifier. 6g complains correctly for imports other
    than "unsafe".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 434 bytes
    - Viewed (0)
  3. test/interface/receiver1.go

    // errorcheck
    
    // Copyright 2009 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.
    
    // Verify compiler complains about missing implicit methods.
    // Does not compile.
    
    package main
    
    type T int
    
    func (t T) V()
    func (t *T) P()
    
    type V interface {
    	V()
    }
    type P interface {
    	P()
    	V()
    }
    
    type S struct {
    	T
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 790 bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseProjectTest.groovy

            eclipseProject.linkedResource(name: 'bar', type: 'uri', locationUri: 'file:///stuff/bar')
    
            then:
            2 == eclipseProject.linkedResources.size()
        }
    
        def "complains when invalid link created"() {
            when:
            eclipseProject.linkedResource(name: 'foo', type: 'folder', wrongKey: '/stuff/foo')
    
            then:
            thrown(InvalidUserDataException.class)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.15.md

    - Fixed a spurious error where update requests to the status subresource of multi-version custom resources would complain about an incorrect API version. ([#78713](https://github.com/kubernetes/kubernetes/pull/78713), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  6. src/runtime/cgo/linux_syscall.c

    #ifndef _GNU_SOURCE // setres[ug]id() API.
    #define _GNU_SOURCE
    #endif
    
    #include <grp.h>
    #include <sys/types.h>
    #include <unistd.h>
    #include <errno.h>
    #include "libcgo.h"
    
    /*
     * Assumed POSIX compliant libc system call wrappers. For linux, the
     * glibc/nptl/setxid mechanism ensures that POSIX semantics are
     * honored for all pthreads (by default), and this in turn with cgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/README.md

    Package markdown is a Commonmark-compliant Markdown parser and
    HTML generator. It does not have many bells and whistles, but it does
    expose the parsed syntax in an easy-to-use form.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 201 bytes
    - Viewed (0)
  8. pkg/model/fips.go

    	out := make(map[string]struct{})
    	for _, cipher := range ciphers {
    		out[cipher] = struct{}{}
    	}
    	return out
    }
    
    var fipsCipherIndex = index(fipsCiphers)
    
    // EnforceGoCompliance limits the TLS settings to the compliant values.
    // This should be called as the last policy.
    func EnforceGoCompliance(ctx *gotls.Config) {
    	switch common_features.CompliancePolicy {
    	case "":
    		return
    	case common_features.FIPS_140_2:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. test/fixedbugs/bug384.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 2500
    
    package foo
    
    // Check that we only get root cause message, no further complaints about r undefined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 355 bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

    import org.gradle.internal.os.OperatingSystem
    
    
    val propagatedEnvironmentVariables = listOf(
        // Obviously necessary
        "HOME",
        "SHELL",
        "TERM",
    
        // Otherwise Windows complains "Unrecognized Windows Sockets error: 10106"
        "SystemRoot",
        "OS",
    
        // For Android tests
        "ANDROID_HOME",
        "ANDROID_SDK_ROOT",
        // legacy and new android user home
        "ANDROID_USER_HOME",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top