Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for errorspkg (0.49 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // 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.
    
    // Fork, exec, wait, etc.
    
    package windows
    
    import (
    	errorspkg "errors"
    	"unsafe"
    )
    
    // EscapeArg rewrites command line argument s as prescribed
    // in http://msdn.microsoft.com/en-us/library/ms880421.
    // This function returns "" (2 double quotes) if s is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/syscall/exec_unix.go

    	// Both Setctty and Foreground use the Ctty field,
    	// but they give it slightly different meanings.
    	if sys.Setctty && sys.Foreground {
    		return 0, errorspkg.New("both Setctty and Foreground set in SysProcAttr")
    	}
    	if sys.Setctty && sys.Ctty >= len(attr.Files) {
    		return 0, errorspkg.New("Setctty set but Ctty not valid in child")
    	}
    
    	acquireForkLock()
    
    	// Allocate child status pipe close on exec.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/syscall/syscall_js.go

    // Copyright 2018 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 js && wasm
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/itoa"
    	"internal/oserror"
    	"sync"
    	"unsafe"
    )
    
    const direntSize = 8 + 8 + 2 + 256
    
    type Dirent struct {
    	Reclen uint16
    	Name   [256]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/syscall/syscall_unix.go

    // 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.
    
    //go:build unix
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/asan"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/msan"
    	"internal/oserror"
    	"internal/race"
    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    var (
    	Stdin  = 0
    	Stdout = 1
    	Stderr = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    // 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.
    
    // Windows system calls.
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/asan"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/msan"
    	"internal/oserror"
    	"internal/race"
    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    type Handle uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // 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.
    
    // Windows system calls.
    
    package windows
    
    import (
    	errorspkg "errors"
    	"fmt"
    	"runtime"
    	"sync"
    	"syscall"
    	"time"
    	"unicode/utf16"
    	"unsafe"
    )
    
    type Handle uintptr
    type HWND uintptr
    
    const (
    	InvalidHandle = ^Handle(0)
    	InvalidHWND   = ^HWND(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        TF_ASSERT_OK_AND_ASSIGN(auto result_double, result->Convert(xla::F64))
        EXPECT_TRUE(xla::LiteralTestUtil::Near(expected_double, result_double,
                                               xla::ErrorSpec(error_tolerance)));
      }
    
      absl::StatusOr<xla::Literal> CreateRandomF32Literal(
          absl::Span<const int64_t> dims, float min = -100, float max = 100) {
        TF_ASSIGN_OR_RETURN(auto shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top