Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 419 for opldrr (0.14 sec)

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

    [!net:github.com] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

            }
        }
    
        /**
         * {@link ZipFile} is more efficient, but causes memory leaks on older Java versions, so we only use it on more recent ones.
         */
        private static boolean isZipFileSafeToUse() {
            String versionString = System.getProperty("java.specification.version");
            // Java versions 8 and older had 1.8 versioning scheme, later ones have single number 9, 10, ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    		// trap into the kernel and then return back to userspace.
    		//
    		// But on older kernels, such as Linux 4.4.180 as used on many Synology
    		// devices, calling readARM64Registers (specifically getisar0) will
    		// cause a SIGILL and we'll die. So for older kernels, parse /proc/cpuinfo
    		// instead.
    		//
    		// See golang/go#57336.
    		if linuxKernelCanEmulateCPUID() {
    			readARM64Registers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_git_bareRepository.txt

    [short] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPRIVATE=vcs-test.golang.org
    
    go mod download -x
    
    -- go.mod --
    module test
    
    go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 597 bytes
    - Viewed (0)
  5. src/net/mptcpsock_linux_test.go

    	mptcp, err := tcp.MultipathTCP()
    	if err != nil {
    		ch <- err
    		return
    	}
    
    	if !mptcp {
    		ch <- errors.New("incoming connection is not with MPTCP")
    		return
    	}
    
    	// Also check the method for the older kernels if not tested before
    	if hasSOLMPTCP && !isUsingMPTCPProto(tcp.fd) {
    		ch <- errors.New("incoming connection is not an MPTCP proto")
    		return
    	}
    }
    
    func dialerMPTCP(t *testing.T, addr string, envVar bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 00:36:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. cmd/bucket-quota.go

    	if err != nil && !errors.Is(err, context.DeadlineExceeded) && !errors.As(err, &timedout) {
    		if len(dui.BucketsUsage) > 0 {
    			internalLogOnceIf(GlobalContext, fmt.Errorf("unable to retrieve usage information for bucket: %s, relying on older value cached in-memory: err(%v)", bucket, err), "bucket-usage-cache-"+bucket)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/README.md

    More info on development workflow of these dashboards can be found [here](https://blog.howardjohn.info/posts/grafana-dashboard-dev/).
    This is the preferred method for any new dashboards.
    
    ## Legacy Dashboards
    
    Many of our older dashboards are manually created in the UI and exported as JSON and checked in.
    
    ## Generation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  8. src/net/net_test.go

    		}
    		return nil, nil
    	})
    	defer sw.Set(socktest.FilterAccept, nil)
    
    	operr := make(chan error, 1)
    	handler := func(ls *localServer, ln Listener) {
    		defer close(operr)
    		c, err := ln.Accept()
    		if err != nil {
    			if perr := parseAcceptError(err); perr != nil {
    				operr <- perr
    			}
    			operr <- err
    			return
    		}
    		c.Close()
    	}
    	ls := newLocalServer(t, "tcp")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                    .run()
            }
    
            then:
            !events.operations.any { it.download }
        }
    
        @TargetGradleVersion(">=3.5 <7.3")
        def "older versions do not generate typed events for downloads during dependency resolution"() {
            setupBuildWithArtifactDownloadDuringConfiguration()
    
            when:
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/IgnoreJRERequirement.java

    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.ElementType.TYPE;
    
    import java.lang.annotation.Target;
    
    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top