Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for unmix (0.08 sec)

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

    // go run mksyscall_solaris.go -tags solaris,amd64 syscall_solaris.go syscall_solaris_amd64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build solaris && amd64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_pipe pipe "libc.so"
    //go:cgo_import_dynamic libc_pipe2 pipe2 "libc.so"
    //go:cgo_import_dynamic libc_getsockname getsockname "libsocket.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	now := nanotime()
    	sec, nsec, _ := time_now()
    	unixNow := sec*1e9 + int64(nsec)
    	work.pauseNS += now - stw.startedStopping
    	work.tEnd = now
    	atomic.Store64(&memstats.last_gc_unix, uint64(unixNow)) // must be Unix time to make sense to user
    	atomic.Store64(&memstats.last_gc_nanotime, uint64(now)) // monotonic time for us
    	memstats.pause_ns[memstats.numgc%uint32(len(memstats.pause_ns))] = uint64(work.pauseNS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    		PTime:     new(time.Time),
    		PBigInt:   new(big.Int),
    		PText:     new(MustNotUnmarshalText),
    		PStruct:   new(struct{}),
    		PBuffer:   new(bytes.Buffer),
    		Raw:       RawMessage("123"),
    		Time:      time.Unix(123456789, 0),
    		BigInt:    *big.NewInt(123),
    	}
    
    	before := nulls.Time.String()
    
    	err := Unmarshal(jsonData, &nulls)
    	if err != nil {
    		t.Errorf("Unmarshal of null values failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    					Spec: &networking.Sidecar{Ingress: []*networking.IstioIngressListener{{
    						Port: &networking.SidecarPort{
    							Number:   80,
    							Protocol: "HTTP",
    							Name:     "http",
    						},
    						DefaultEndpoint: "unix:///socket",
    					}}},
    				},
    			},
    			clusters: map[string][]string{
    				"inbound|80||": {"/socket"},
    			},
    		},
    		{
    			name: "multiple ingress",
    			configs: []config.Config{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    // go run mksyscall.go -tags darwin,amd64 syscall_bsd.go syscall_darwin.go syscall_darwin_amd64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build darwin && 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: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    // Code generated by mkmerge; DO NOT EDIT.
    
    //go:build linux
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) {
    	r0, _, e1 := Syscall(SYS_FANOTIFY_INIT, uintptr(flags), uintptr(event_f_flags), 0)
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Smart pointers:
    //   scoped_ptr     - as in TR2.
    //
    // Regular expressions:
    //   RE             - a simple regular expression class using the POSIX
    //                    Extended Regular Expression syntax on UNIX-like
    //                    platforms, or a reduced regular exception syntax on
    //                    other platforms, including Windows.
    //
    // Logging:
    //   GTEST_LOG_()   - logs messages at the specified severity level.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    // go run mksyscall.go -tags darwin,arm64 syscall_bsd.go syscall_darwin.go syscall_darwin_arm64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build darwin && 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: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    // result, if possible, the first time this is called for a specific
    // context value.
    //
    // If the traceback function is called from a signal handler on a Unix
    // system, SigContext will be the signal context argument passed to
    // the signal handler (a C ucontext_t* cast to uintptr_t). This may be
    // used to start tracing at the point where the signal occurred. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	}
    
    	// FIXME: Remove following portion of code after fixing a bug in minio-go preSignV2.
    
    	d := UTCNow()
    	// Find epoch expires when the request will expire.
    	epochExpires := d.Unix() + expires
    
    	// Add expires header if not present.
    	expiresStr := req.Header.Get("Expires")
    	if expiresStr == "" {
    		expiresStr = strconv.FormatInt(epochExpires, 10)
    		req.Header.Set("Expires", expiresStr)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top