Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,416 for Onot (0.09 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

        }
    }
    
    @RequiresOptIn("Analysis should not be allowed to be run from the EDT, as otherwise it may cause IDE freezes.")
    public annotation class KaAllowAnalysisOnEdt
    
    /**
     * Allows [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called on the EDT in the given [action], which is normally not allowed.
     *
     * Analysis is not supposed to be invoked from the EDT, as it may cause freezes. Use at your own risk!
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && arm64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && riscv64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    go mod init m
    go mod edit -go=1.14 -toolchain=go1.22
    ! go version
    stderr 'go: invalid toolchain: go1.22 is a language version but not a toolchain version \(go1.22.x\)'
    
    rm go.mod
    go mod init m
    go mod edit -go=1.14 -toolchain=go1.21
    ! go version
    stderr 'go: invalid toolchain: go1.21 is a language version but not a toolchain version \(go1.21.x\)'
    
    rm go.mod
    go mod init m
    go mod edit -go=1.14 -toolchain=go1.20
    ! go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{98, "EPROTOTYPE", "protocol wrong type for socket"},
    	{99, "ENOPROTOOPT", "protocol not available"},
    	{120, "EPROTONOSUPPORT", "protocol not supported"},
    	{121, "ESOCKTNOSUPPORT", "socket type not supported"},
    	{122, "ENOTSUP", "operation not supported"},
    	{123, "EPFNOSUPPORT", "protocol family not supported"},
    	{124, "EAFNOSUPPORT", "address family not supported by protocol"},
    	{125, "EADDRINUSE", "address already in use"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

            assertThat(ArrayUtil.equalsIgnoreSequence(new Object[] { "1" }, new Object[] {}), is(not(true)));
            assertThat(ArrayUtil.equalsIgnoreSequence(new Object[] { new Integer("1") }, new Object[] { "1" }), is(not(true)));
            assertThat(ArrayUtil.equalsIgnoreSequence(new Object[] { "1", "1" }, new Object[] { "1", "2" }), is(not(true)));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && amd64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/alias.go

    // SetTypeParams sets the type parameters of the alias type a.
    // The alias a must not have type arguments.
    func (a *Alias) SetTypeParams(tparams []*TypeParam) {
    	assert(a.targs == nil)
    	a.tparams = bindTParams(tparams)
    }
    
    // TypeArgs returns the type arguments used to instantiate the Alias type.
    // If a is not an instance of a generic alias, the result is nil.
    func (a *Alias) TypeArgs() *TypeList { return a.targs }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/notboring.go

    func SHA1([]byte) [20]byte   { panic("boringcrypto: not available") }
    func SHA224([]byte) [28]byte { panic("boringcrypto: not available") }
    func SHA256([]byte) [32]byte { panic("boringcrypto: not available") }
    func SHA384([]byte) [48]byte { panic("boringcrypto: not available") }
    func SHA512([]byte) [64]byte { panic("boringcrypto: not available") }
    
    func NewHMAC(h func() hash.Hash, key []byte) hash.Hash { panic("boringcrypto: not available") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    //go:build zos && s390x
    #include "textflag.h"
    
    //  provide the address of function variable to be fixed up.
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_FlistxattrAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Flistxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top