Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 187 for Shardz (0.22 sec)

  1. src/cmd/go/testdata/script/mod_find.txt

    go mod init
    rm go.mod
    cd $WORK/gopath/src/empty
    go mod init
    rm go.mod
    
    # GOPATH/src/link where GOPATH and link are both symlinks
    cd $GOPATH/src/link
    go mod init
    stderr link
    rm go.mod
    
    # Too hard: doesn't match unevaluated nor completely evaluated. (Only partially evaluated.)
    # Whether this works depends on which OS we are running on.
    # cd $WORK/gopath/src/link
    # ! go mod init
    
    -- $WORK/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. samples/kind-lb/README.md

    public IP v4 addresses when a load balancer is created. The default value is 255.
    The first two octets are determined by the docker network created by `KinD`, the 4th octet
    is hard coded as 200-240. As you might have guessed, for each k8s cluster one can
    create at most 40 public IP v4 addresses.
    
    The `ip-space` parameter is not required when you create just one cluster, however, when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_update_uuid.go

    // content of the object files being linked but also on things like
    // the timestamps/paths of the objects; this makes it
    // difficult/impossible to support reproducible builds. Since we try
    // hard to maintain build reproducibility for Go, the APIs here
    // compute a new UUID (based on the Go build ID) and write it to the
    // final executable generated by the external linker.
    
    import (
    	"cmd/internal/notsha256"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

                apply plugin: 'xctest'
            """
        }
    
        @Override
        protected boolean capturesTestOutput() {
            // The driver application for XCTest behave very differently on macOS and Linux.
            // It was hard to get the desired outcome on macOS and impossible for Linux. It
            // all seems to be related to https://bugs.swift.org/browse/SR-1127. On Linux,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/go/internal/srcimporter/srcimporter.go

    	}
    
    	pkg, err = conf.Check(bp.ImportPath, p.fset, files, nil)
    	if err != nil {
    		// If there was a hard error it is possibly unsafe
    		// to use the package as it may not be fully populated.
    		// Do not return it (see also #20837, #20855).
    		if firstHardErr != nil {
    			pkg = nil
    			err = firstHardErr // give preference to first hard error over any soft error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

     * at the end of the file, ...). Because they are different doesn't mean that
     * they are compromised, so this is a facility for the user to declare "I know
     * I should use a single source of truth but the infrastructure is hard or
     * impossible to fix so let's trust this source".
     *
     * In addition to the list of alternatives, a checksum also provides a source,
     * which is documentation to explain where a checksum was found.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         */
        @Nullable
        Charset getCharset();
    
        /**
         * Returns true when the content of this resource is cached in-heap or uses a hard-coded value. Returns false when the content requires IO on each query.
         *
         * <p>When this method returns false, the caller should avoid querying the content more than once.</p>
         */
        boolean isContentCached();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_build_simple.txt

    # This test checks basic "go build -cover" functionality.
    
    [short] skip
    
    # Hard-wire new coverage for this test.
    env GOEXPERIMENT=coverageredesign
    
    # Build for coverage.
    go build -gcflags=-m -o example.exe -cover example/main &
    [race] go build -o examplewithrace.exe -race -cover example/main &
    wait
    
    # First execute without GOCOVERDIR set...
    env GOCOVERDIR=
    exec ./example.exe normal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/jdk7/Jdk7SymlinkTest.groovy

            then:
            symlink.isSymlink(new File(testDirectory, 'testDir'))
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def 'does not detect Windows hard links as symbolic links'() {
            def symlink = new WindowsJdk7Symlink()
            def testDirectory = temporaryFolder.getTestDirectory().createDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/volume/metrics_du_test.go

    	previousInodes := actual.InodesUsed.Value()
    	err = os.Link(filepath.Join(tmpDir, "f1"), filepath.Join(tmpDir, "f2"))
    	if err != nil {
    		t.Errorf("Unexpected error when creating hard link %v", err)
    	}
    	actual, err = metrics.GetMetrics()
    	if err != nil {
    		t.Errorf("Unexpected error when calling GetMetrics %v", err)
    	}
    	if e, a := previousInodes, actual.InodesUsed.Value(); e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top