Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for syscall6 (0.13 sec)

  1. internal/kms/config.go

    package kms
    
    import (
    	"bytes"
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"os"
    	"strings"
    	"sync/atomic"
    	"syscall"
    	"time"
    
    	"github.com/minio/kms-go/kes"
    	"github.com/minio/kms-go/kms"
    	"github.com/minio/pkg/v3/certs"
    	"github.com/minio/pkg/v3/ellipses"
    	"github.com/minio/pkg/v3/env"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/trace/regions.go

    		<td> <a href="/regionblock?{{$p}}">graph</a> <a href="/regionblock?{{$p}}&raw=1" download="block.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Syscall profile:</td>
    		<td> <a href="/regionsyscall?{{$p}}">graph</a> <a href="/regionsyscall?{{$p}}&raw=1" download="syscall.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Scheduler wait profile:</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/go/doc/example.go

    	}
    
    	for _, s := range file.Imports {
    		p, err := strconv.Unquote(s.Path.Value)
    		if err != nil {
    			continue
    		}
    		if p == "syscall/js" {
    			// We don't support examples that import syscall/js,
    			// because the package syscall/js is not available in the playground.
    			return nil
    		}
    		n := path.Base(p)
    		if s.Name != nil {
    			n = s.Name.Name
    			switch n {
    			case "_":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/syscall/fs_wasip1.go

    // Copyright 2023 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.
    
    //go:build wasip1
    
    package syscall
    
    import (
    	"internal/stringslite"
    	"runtime"
    	"unsafe"
    )
    
    func init() {
    	// Try to set stdio to non-blocking mode before the os package
    	// calls NewFile for each fd. NewFile queries the non-blocking flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. src/net/conf.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"errors"
    	"internal/bytealg"
    	"internal/godebug"
    	"internal/stringslite"
    	"io/fs"
    	"os"
    	"runtime"
    	"sync"
    	"syscall"
    )
    
    // The net package's name resolution is rather complicated.
    // There are two main approaches, go and cgo.
    // The cgo resolver uses C functions like getaddrinfo.
    // The go resolver reads system files directly and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication_test.go

    						"jwt":[{"issuer":{"url": "https://test-issuer"}}]}`,
    		},
    		{
    			name:           "missing file",
    			file:           func() string { return "bogus-missing-file" },
    			expectErr:      syscall.Errno(syscall.ENOENT).Error(),
    			expectedConfig: nil,
    		},
    		{
    			name: "invalid content file",
    			file: func() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    	if runtime.GOOS == "windows" {
    		t.Skip("skipping on windows")
    	}
    
    	_, e := C.g()
    	if e != syscall.E2BIG {
    		t.Errorf("got %q, expect %q", e, syscall.E2BIG)
    	}
    	_, e = C.g2(C.EINVAL, C._expA, C._expB, C._expC, C._expD)
    	if e != syscall.EINVAL {
    		t.Errorf("got %q, expect %q", e, syscall.EINVAL)
    	}
    }
    
    // issue 3945
    
    func testPrintf(t *testing.T) {
    	C.say()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/syscall/js/js_test.go

    //   "go_js_wasm_exec").
    // - GOOS=js GOARCH=wasm go test
    //
    // See -exec in "go help test", and "go help run" for details.
    
    package js_test
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    	"syscall/js"
    	"testing"
    )
    
    var dummys = js.Global().Call("eval", `({
    	someBool: true,
    	someString: "abc\u1234",
    	someInt: 42,
    	someFloat: 42.123,
    	someArray: [41, 42, 43],
    	someDate: new Date(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    */
    
    package server
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"net/http"
    	"net/http/httptrace"
    	"os"
    	"reflect"
    	"sync"
    	"syscall"
    	"testing"
    	"time"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/wait"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  10. docs/metrics/v3.md

    | `minio_system_process_syscall_read_total`          | `counter` | Total read SysCalls to the kernel. /proc/[pid]/io syscr                                                        | `server` |
    | `minio_system_process_syscall_write_total`         | `counter` | Total write SysCalls to the kernel. /proc/[pid]/io syscw                                                       | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
Back to top