Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 635 for earlib (0.17 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/root/DefaultRootLocator.java

    @Named
    public class DefaultRootLocator implements RootLocator {
    
        public boolean isRootDirectory(Path dir) {
            if (Files.isDirectory(dir.resolve(".mvn"))) {
                return true;
            }
            // we're too early to use the modelProcessor ...
            Path pom = dir.resolve("pom.xml");
            try (InputStream is = Files.newInputStream(pom)) {
                XMLStreamReader parser = new WstxInputFactory().createXMLStreamReader(is);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 29 10:03:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaCrossCompilationIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            if (["1.6", "1.7"].contains(version)) {
                executer.expectDeprecationWarning("Running tests on Java versions earlier than 8 has been deprecated. This will fail with an error in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_8.html#minimum_test_jvm_version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:59:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/flag_test.go

    	{
    		args: []string{"-S"},
    		pkgs: []ppfTestPackage{
    			{cmdline: true, flags: []string{"-S"}},
    			{cmdline: false, flags: []string{}},
    		},
    	},
    
    	// -gcflags=-S -gcflags= overrides the earlier -S.
    	{
    		args: []string{"-S", ""},
    		pkgs: []ppfTestPackage{
    			{cmdline: true, flags: []string{}},
    		},
    	},
    
    	// -gcflags=net=-S applies only to package net
    	{
    		args: []string{"net=-S"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:04:04 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         * However, not all Zip readers support the Zip64 extensions.
         * Notably, the {@link java.util.zip.ZipInputStream} JDK class does not support Zip64 for versions earlier than Java 7.
         * This means you should not enable this property if you are building JARs to be used with Java 6 and earlier runtimes.
         */
        @Input
        public boolean isZip64() {
            return allowZip64;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_output.py

        return tf.constant(1.0, shape=[1]), tf.constant(1.0, shape=[2])
    
      # Check index paths for results written explicitly with parentheses.
      # This is semantically equivalent to the earlier test without parentheses,
      # but this test serves as documentation of this behavior for the purposes
      # of tf_saved_model users.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}() -> (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  6. src/runtime/tls_arm64.s

    	AND	$0xfffffffffffffff8, R0
    #endif
    	MOVD	runtime·tls_g(SB), R27
    	MOVD	g, (R0)(R27)
    
    nocgo:
    	RET
    
    #ifdef TLSG_IS_VARIABLE
    #ifdef GOOS_android
    // Use the free TLS_SLOT_APP slot #2 on Android Q.
    // Earlier androids are set up in gcc_android.c.
    DATA runtime·tls_g+0(SB)/8, $16
    #endif
    GLOBL runtime·tls_g+0(SB), NOPTR, $8
    #else
    GLOBL runtime·tls_g+0(SB), TLSBSS, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue6977.go

    type U9 interface { M32; M64 /* ERROR "duplicate method" */ }
    
    // Verify that repeated embedding of the same interface(s)
    // eliminates duplicate methods early (rather than at the
    // end) to prevent exponential memory and time use.
    // Without early elimination, computing T29 may take dozens
    // of minutes.
    type (
            T0 interface { m() }
            T1 interface { T0; T0 }
            T2 interface { T1; T1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       *
       * Note that response failures do not necessarily fail the entire call.
       *
       * Starting with OkHttp 4.3 this may be invoked without a prior call to [responseHeadersStart]
       * or [responseBodyStart]. In earlier releases this method was documented to only be invoked after
       * one of those methods.
       */
      open fun responseFailed(
        call: Call,
        ioe: IOException,
      ) {
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. releasenotes/notes/skip-graceful-termination.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue: [36686]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 03:38:52 UTC 2023
    - 180 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    # Regression test for https://golang.org/issue/45127:
    # Goroutines for completed parallel subtests should exit immediately,
    # not block until earlier subtests have finished.
    
    [short] skip
    
    ! go test .
    stdout 'panic: slow failure'
    ! stdout '\[chan send'
    
    -- go.mod --
    module golang.org/issue45127
    
    go 1.16
    -- issue45127_test.go --
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"runtime/debug"
    	"sync"
    	"testing"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top