Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 199 for Shardz (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                    module("org:d:1.0") {
                        module("org:a:2.0")
                    }
                }
            }
        }
    
        def "evicted hard dependency shouldn't add constraint on range"() {
            given:
            4.times { mavenRepo.module("org", "e", "${it + 1}").publish() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. src/os/file_windows.go

    			// Do nothing for path, like C:\.
    		} else if n > 0 && b[n-1] == '\\' {
    			// Otherwise remove terminating \.
    			n--
    		}
    		return syscall.UTF16ToString(b[:n])
    	}
    }
    
    // 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 {
    	n, err := syscall.UTF16PtrFromString(fixLongPath(newname))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
       */
    
      /** Creates an empty {@code CompactHashMap} instance. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

       * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
       * *Map variants. This class is particularly hard to benchmark, because the benefit is not only in
       * less allocation, but also having the GC do less work to scan the heap because of fewer
       * references, which is particularly hard to quantify.
       */
    
      /** Creates an empty {@code CompactHashMap} instance. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    			disks := er.getDisks()
    			distribution := hashOrder(pathJoin(bucket, object), nDisks)
    			shuffledDisks := shuffleDisks(disks, distribution)
    
    			// remove last data shard
    			err = removeAll(pathJoin(shuffledDisks[11].String(), bucket, object))
    			if err != nil {
    				t.Fatalf("Failed to delete a file - %v", err)
    			}
    			_, err = obj.HealObject(ctx, bucket, object, "", madmin.HealOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. src/runtime/alg.go

    		initAlgAES()
    		return
    	}
    	for i := range hashkey {
    		hashkey[i] = uintptr(bootstrapRand())
    	}
    }
    
    func initAlgAES() {
    	useAeshash = true
    	// Initialize with random data so hash collisions will be hard to engineer.
    	key := (*[hashRandomBytes / 8]uint64)(unsafe.Pointer(&aeskeysched))
    	for i := range key {
    		key[i] = bootstrapRand()
    	}
    }
    
    // Note: These routines perform the read with a native endianness.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/net/netip/netip.go

    		}
    	}
    	return Addr{}, parseAddrError{in: s, msg: "unable to parse IP"}
    }
    
    // MustParseAddr calls [ParseAddr](s) and panics on error.
    // It is intended for use in tests with hard-coded strings.
    func MustParseAddr(s string) Addr {
    	ip, err := ParseAddr(s)
    	if err != nil {
    		panic(err)
    	}
    	return ip
    }
    
    type parseAddrError struct {
    	in  string // the string given to ParseAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. src/internal/testenv/testenv.go

    	}
    }
    
    // HasLink reports whether the current system can use os.Link.
    func HasLink() bool {
    	// From Android release M (Marshmallow), hard linking files is blocked
    	// and an attempt to call link() on a file will return EACCES.
    	// - https://code.google.com/p/android-developer-preview/issues/detail?id=3150
    	return runtime.GOOS != "plan9" && runtime.GOOS != "android"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top