Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 462 for open64 (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int mkfifo(uintptr_t, unsigned int);
    int mknod(uintptr_t, unsigned int, int);
    int mknodat(int, uintptr_t, unsigned int, int);
    int nanosleep(uintptr_t, uintptr_t);
    int open64(uintptr_t, int, unsigned int);
    int openat(int, uintptr_t, int, unsigned int);
    int read(int, uintptr_t, size_t);
    int readlink(uintptr_t, uintptr_t, size_t);
    int renameat(int, uintptr_t, int, uintptr_t);
    int setdomainname(uintptr_t, size_t);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    //sys	Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error) = open64
    //sys	Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error)
    //sys	read(fd int, p []byte) (n int, err error)
    //sys	Readlink(path string, buf []byte) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	_p0 := uintptr(unsafe.Pointer(C.CString(path)))
    	r0, er := C.open64(C.uintptr_t(_p0), C.int(mode), C.uint(perm))
    	fd = int(r0)
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    //go:cgo_import_dynamic libc_mknodat mknodat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_nanosleep nanosleep "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_open64 open64 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_openat openat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_read read "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_readlink readlink "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  5. internal/config/identity/openid/openid.go

    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/identity/openid/provider"
    	"github.com/minio/minio/internal/hash/sha256"
    	"github.com/minio/pkg/v3/env"
    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // OpenID keys and envs.
    const (
    	ClientID      = "client_id"
    	ClientSecret  = "client_secret"
    	ConfigURL     = "config_url"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp_test.go

    			Valu("t7", OpAnd64, c.config.Types.Int64, 0, nil, "t6", "v2"),
    			Valu("t8", OpOr64, c.config.Types.Int64, 0, nil, "t7", "v2"),
    			Valu("t9", OpXor64, c.config.Types.Int64, 0, nil, "t8", "v2"),
    			Valu("t10", OpNeg64, c.config.Types.Int64, 0, nil, "t9"),
    			Valu("t11", OpCom64, c.config.Types.Int64, 0, nil, "t10"),
    			Valu("t12", OpNeg64, c.config.Types.Int64, 0, nil, "t11"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/debug/dwarf/open.go

    cui fliter <******@****.***> 1697179713 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/sccp.go

    		OpMod8, OpMod16, OpMod32, OpMod64,
    		OpMod8u, OpMod16u, OpMod32u, OpMod64u,
    		// compare
    		OpEq64, OpEq32, OpEq16, OpEq8,
    		OpEq32F, OpEq64F,
    		OpLess64, OpLess32, OpLess16, OpLess8,
    		OpLess64U, OpLess32U, OpLess16U, OpLess8U,
    		OpLess32F, OpLess64F,
    		OpLeq64, OpLeq32, OpLeq16, OpLeq8,
    		OpLeq64U, OpLeq32U, OpLeq16U, OpLeq8U,
    		OpLeq32F, OpLeq64F,
    		OpEqB, OpNeqB,
    		// shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. .github/workflows/iam-integrations.yaml

                etcd: ""
                openid: ""
              # exclude combos where both ldap and openid IDPs are specified.
              - ldap: "localhost:389"
                openid: "http://127.0.0.1:5556/dex"
    
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Test LDAP/OpenID/Etcd combo
            env:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. docs/sts/casdoor.md

    KEY:
    identity_openid  enable OpenID SSO support
    
    ARGS:
    config_url*   (url)       openid discovery document e.g. "https://accounts.google.com/.well-known/openid-configuration"
    client_id     (string)    unique public identifier for apps e.g. "292085223830.apps.googleusercontent.com"
    claim_name    (string)    JWT canned policy claim name, defaults to "policy"
    claim_prefix  (string)    JWT claim namespace prefix e.g. "customer1/"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top