Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for Shardz (0.14 sec)

  1. src/os/file_unix.go

    	dir := Getenv("TMPDIR")
    	if dir == "" {
    		if runtime.GOOS == "android" {
    			dir = "/data/local/tmp"
    		} else {
    			dir = "/tmp"
    		}
    	}
    	return dir
    }
    
    // Link creates newname as a hard link to the oldname file.
    // If there is an error, it will be of type *LinkError.
    func Link(oldname, newname string) error {
    	e := ignoringEINTR(func() error {
    		return syscall.Link(oldname, newname)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api.go

    	"strings"
    )
    
    // An Error describes a type-checking error; it implements the error interface.
    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Pos  syntax.Pos // error position
    	Msg  string     // default error message, user-friendly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/os/file_plan9.go

    		return nil, nil, NewSyscallError("pipe", e)
    	}
    
    	return NewFile(uintptr(p[0]), "|0"), NewFile(uintptr(p[1]), "|1"), nil
    }
    
    // not supported on Plan 9
    
    // Link creates newname as a hard link to the oldname file.
    // If there is an error, it will be of type *LinkError.
    func Link(oldname, newname string) error {
    	return &LinkError{"link", oldname, newname, syscall.EPLAN9}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. pkg/volume/fc/fc.go

    	//   globalPDPath : plugins/kubernetes.io/fc/50060e801049cfd1-lun-0
    	var globalPDPath string
    
    	mounter := plugin.host.GetMounter(plugin.GetPluginName())
    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/go/types/api.go

    )
    
    // An Error describes a type-checking error; it implements the error interface.
    // A "soft" error is an error that still permits a valid interpretation of a
    // package (such as "unused variable"); "hard" errors may lead to unpredictable
    // behavior if ignored.
    type Error struct {
    	Fset *token.FileSet // file set for interpretation of Pos
    	Pos  token.Pos      // error position
    	Msg  string         // error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/slices/slices.go

    		copy(s[i:], v)
    
    		// Now we have
    		// s: aaaaaaaavvvvbbbbcccccccc
    		//            ^   ^       ^   ^
    		//            i  i+m      n  n+m
    		// That's the result we want.
    		return s
    	}
    
    	// The hard case - v overlaps c or d. We can't just shift up
    	// the data because we'd move or clobber the values we're trying
    	// to insert.
    	// So instead, write v on top of d, then rotate.
    	copy(s[n:], v)
    
    	// Now we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    	// three passes could transmit the 6 most significant bits, followed
    	// by the second-least significant bit, followed by the least
    	// significant bit.
    	//
    	// For sequential JPEGs, these parameters are hard-coded to 0/63/0/0, as
    	// per table B.3.
    	zigStart, zigEnd, ah, al := int32(0), int32(blockSize-1), uint32(0), uint32(0)
    	if d.progressive {
    		zigStart = int32(d.tmp[1+2*nComp])
    		zigEnd = int32(d.tmp[2+2*nComp])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    
    ## Abstract
    
    This README describes the current state of bytecode interception infrastructure, used for configuration cache instrumentation and bytecode upgrades for property migration.
    
    
    ## Naming
    
    The naming is hard.
    That is the case also for this infrastructure.
    In next section we will use next terms:
    1. We will use `bytecode instrumentation` when we talk about configuration cache bytecode instrumentation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    	// Find globalPDPath from pod volume directory(mountPath)
    	var globalPDPath string
    	mounter := plugin.host.GetMounter(plugin.GetPluginName())
    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/BUILD

            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "ir/tf_ops.td",
        deps = [
            ":tensorflow_ops_td_files",
        ],
    )
    
    # We only shard tf_op on name for build performance reasons.
    tf_ops_category_list = [
        {
            "name": "ops_a_m",
            "include": "tf.[A-M].*$",
        },
        {
            "name": "ops_n_z",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top