Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for 0B1110 (0.1 sec)

  1. fastapi/__init__.py

    """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
    
    __version__ = "0.111.0"
    
    from starlette import status as status
    
    from .applications import FastAPI as FastAPI
    from .background import BackgroundTasks as BackgroundTasks
    from .datastructures import UploadFile as UploadFile
    from .exceptions import HTTPException as HTTPException
    from .exceptions import WebSocketException as WebSocketException
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:50:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning.mlir

        %11:2 = tf_executor.island wraps "tf.Add"(%9#0, %10#0) {T = "tfdtype$DT_INT32"} : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
        tf_executor.NextIteration.Sink [%0#1] %11#0 : tensor<*xi32> {T = "tfdtype$DT_INT32"}
        tf_executor.fetch %arg0 : i32
      }
      func.return
    }
    
    // Check that NextIteration.sink and associated ops are not deleted when
    // associated loop is reachable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/ref-while-loop.mlir

        %11:2 = tf_executor.island wraps "tf.AssignAdd"(%7#0, %10#0) {device = "", T = "tfdtype$DT_INT32"} : (tensor<*x!tf_type.int32ref>, tensor<i32>) -> tensor<*x!tf_type.int32ref> loc("while/Add")
        tf_executor.NextIteration.Sink [%0#1] %11#0 : tensor<*x!tf_type.int32ref> {device = "", T = "tfdtype$DT_INT32"} loc("while/NextIteration")
        tf_executor.fetch
      }
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. internal/logger/target/types/targettype_string.go

    	var x [1]struct{}
    	_ = x[TargetConsole-1]
    	_ = x[TargetHTTP-2]
    	_ = x[TargetKafka-3]
    }
    
    const _TargetType_name = "ConsoleHTTPKafka"
    
    var _TargetType_index = [...]uint8{0, 7, 11, 16}
    
    func (i TargetType) String() string {
    	i -= 1
    	if i >= TargetType(len(_TargetType_index)-1) {
    		return "TargetType(" + strconv.FormatInt(int64(i+1), 10) + ")"
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 10 18:20:21 UTC 2022
    - 703 bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/path_unix.go

    	// In both cases, fall back to checking the permission bits.
    	err := unix.Eaccess(filepath.Join(dir, de.Name()), unix.X_OK)
    	if (err == syscall.ENOSYS || err == syscall.EPERM) && info.Mode()&0111 != 0 {
    		err = nil
    	}
    	if err != nil {
    		return "", false
    	}
    
    	return v, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/array_test.go

    		// -1 means the value is not used.
    		{testSliceLenCap12_ssa, 0, 0, 0, 10},
    		{testSliceLenCap12_ssa, 0, 1, 1, 10},
    		{testSliceLenCap12_ssa, 0, 10, 10, 10},
    		{testSliceLenCap12_ssa, 10, 10, 0, 0},
    		{testSliceLenCap12_ssa, 0, 5, 5, 10},
    		{testSliceLenCap12_ssa, 5, 5, 0, 5},
    		{testSliceLenCap12_ssa, 5, 10, 5, 5},
    		{testSliceLenCap1_ssa, 0, -1, 0, 10},
    		{testSliceLenCap1_ssa, 5, -1, 5, 5},
    		{testSliceLenCap1_ssa, 10, -1, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/while-loop.mlir

        %11:2 = tf_executor.island wraps "tf.AssignAdd"(%7#0, %10#0) {device = "", T = "tfdtype$DT_INT32"} : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32> loc("while/Add")
        tf_executor.NextIteration.Sink [%0#1] %11#0 : tensor<*xi32> {device = "", T = "tfdtype$DT_INT32"} loc("while/NextIteration")
        tf_executor.fetch
      }
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. src/go/version/version_test.go

    	"reflect"
    	"testing"
    )
    
    func TestCompare(t *testing.T) { test2(t, compareTests, "Compare", Compare) }
    
    var compareTests = []testCase2[string, string, int]{
    	{"", "", 0},
    	{"x", "x", 0},
    	{"", "x", 0},
    	{"1", "1.1", 0},
    	{"go1", "go1.1", -1},
    	{"go1.5", "go1.6", -1},
    	{"go1.5", "go1.10", -1},
    	{"go1.6", "go1.6.1", -1},
    	{"go1.19", "go1.19.0", 0},
    	{"go1.19rc1", "go1.19", -1},
    	{"go1.20", "go1.20.0", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/os/executable_path.go

    func isExecutable(path string) error {
    	stat, err := Stat(path)
    	if err != nil {
    		return err
    	}
    	mode := stat.Mode()
    	if !mode.IsRegular() {
    		return ErrPermission
    	}
    	if (mode & 0111) == 0 {
    		return ErrPermission
    	}
    	return nil
    }
    
    // splitPathList splits a path list.
    // This is based on genSplit from strings/strings.go
    func splitPathList(pathList string) []string {
    	if pathList == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. src/os/exec/lp_unix.go

    	// EPERM can be returned by Linux containers employing seccomp.
    	// In both cases, fall back to checking the permission bits.
    	if err == nil || (err != syscall.ENOSYS && err != syscall.EPERM) {
    		return err
    	}
    	if m&0111 != 0 {
    		return nil
    	}
    	return fs.ErrPermission
    }
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top