Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 187 for Shardz (0.25 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/jdk7/WindowsJdk7Symlink.java

                boolean isJunction = attrs.isDirectory() && attrs.isOther();
                // Handles both junctions and real symlinks (https://www.2brightsparks.com/resources/articles/NTFS-Hard-Links-Junctions-and-Symbolic-Links.pdf)
                return isJunction || super.isSymlink(suspect);
            } catch (IOException e) {
                return super.isSymlink(suspect);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/README.md

    Composable TensorFlow (TF) is the framework for defining portable TF ops with
    composition in the authoring language.
    
    The set of standard TF ops is currently open. New ops are defined for special
    purposes but it is hard to make them work end-to-end: The op
    needs to be handled separately by several backends (tf2xla bridge, tflite
    converter, CPU kernels, etc.). Writing shape functions and gradients for these
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/slice.go

    	//	#define A #define B(x) x
    	// and
    	//	#define A #define B (x) x
    	// The first definition of B has an argument, the second doesn't. Because we let
    	// text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it.
    	return s.pos
    }
    
    func (s *Slice) Close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_linux_arm64.c

    	   unfortunate that we always run it.  It should be possible
    	   to remove this when we no longer care about versions of
    	   clang before 3.8.  The test for this is
    	   misc/cgo/testsanitizers.
    
    	   GCC works hard to eliminate a seemingly unnecessary call to
    	   malloc, so we actually use the memory we allocate.  */
    
    	setg_gcc = setg;
    	pbounds = (uintptr*)malloc(2 * sizeof(uintptr));
    	if (pbounds == NULL) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/helpers.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/kubelet/cm/containermap"
    	evictionapi "k8s.io/kubernetes/pkg/kubelet/eviction/api"
    )
    
    // hardEvictionReservation returns a resourcelist that includes reservation of resources based on hard eviction thresholds.
    func hardEvictionReservation(thresholds []evictionapi.Threshold, capacity v1.ResourceList) v1.ResourceList {
    	if len(thresholds) == 0 {
    		return nil
    	}
    	ret := v1.ResourceList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. internal/ioutil/hardlimitreader.go

    // Package ioutil implements some I/O utility functions which are not covered
    // by the standard library.
    package ioutil
    
    import (
    	"errors"
    	"io"
    )
    
    // ErrOverread is returned to the reader when the hard limit of HardLimitReader is exceeded.
    var ErrOverread = errors.New("input provided more bytes than specified")
    
    // HardLimitReader returns a Reader that reads from r
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 06 02:53:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. api/api-rules/README.md

    Make rule returns an error when the newly generated violation report differs from this
    checked-in violation report.
    
    Our goal is that exceptions should never be added to this list, only fixed and removed.
    For new APIs, this is a hard requirement. For APIs that are e.g. being moved between
    versions or groups without other changes, it is OK for your API reviewer to make an
    exception.
    
    If you're removing violations from the exception list, or if you have good
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:50:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherRegistryFactory.java

            BlockingQueue<FileWatchEvent> fileEvents = new ArrayBlockingQueue<>(FILE_EVENT_QUEUE_SIZE);
            try {
                // TODO How can we avoid hard-coding ".gradle" here?
                FileWatcherProbeRegistry probeRegistry = new DefaultFileWatcherProbeRegistry(buildDir ->
                    new File(new File(buildDir, ".gradle"), "file-system.probe"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/runtime/start_line_test.go

    package runtime_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"runtime"
    	"testing"
    )
    
    // The tests in this file test the function start line metadata included in
    // _func and inlinedCall. TestStartLine hard-codes the start lines of functions
    // in this file. If code moves, the test will need to be updated.
    //
    // The "start line" of a function should be the line containing the func
    // keyword.
    
    func normalFunc() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            JvmOptions jvmOptions = new JvmOptions(fileCollectionFactory);
            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
            //  Currently it is hard to have a proper "-javaagent:/path/to/jar" in clients that start the daemon, so all code deals with a boolean flag shouldApplyAgent instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top