Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 635 for earlib (0.11 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/OtoolBinaryInfo.groovy

            def lines = process.inputStream.readLines()
            def symbols = []
    
            lines.each { line ->
                // The output changed on Apple toolchain (Xcode):
                //   10.1 and earlier: `    AT_name( "<...>" )`
                //   10.2 (and maybe later): `    DW_AT_NAME    ("<...>")`
                def findSymbol = (line =~ /.*(DW_)?AT_name\s*\(\s*"(.*)"\s*\)/)
                if (findSymbol.matches()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/PluginBinaryCompatibilityCrossVersionSpec.groovy

     */
    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.CrossVersionIntegrationSpec
    import org.gradle.util.GradleVersion
    
    /**
     * Tests that task classes compiled against earlier versions of Gradle are still compatible.
     */
    class PluginBinaryCompatibilityCrossVersionSpec extends CrossVersionIntegrationSpec {
        def "plugin implemented in Groovy can use types converted from Groovy to Java"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http/CallServerInterceptor.kt

          // actual response status.
          code == 100 -> true
    
          // Handle Processing (102) & Early Hints (103) and any new codes without failing
          // 100 and 101 are the exceptions with different meanings
          // But Early Hints not currently exposed
          code in (102 until 200) -> true
    
          else -> false
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/UnsupportedJavaVersionCrossCompilationIntegrationTest.groovy

            assertTrue(System.getProperty("java.version").startsWith("${version}."));
        }
    }
    """
    
            expect:
            fails 'test'
            failure.assertHasCause("Support for test execution using Java 5 or earlier was removed in Gradle 3.0.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    	)
    
    	// Forcefully shutdown workqueue. Drop any enqueued items.
    	// Important to do this in a `defer` at the start of `Run`.
    	// Otherwise, if there are any early returns without calling this, we
    	// would never shut down the workqueue
    	defer c.queue.ShutDown()
    
    	enqueue := func(obj interface{}, isInInitialList bool) {
    		var key string
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpecTest.groovy

            !spec.isSatisfiedBy(GradleVersion.version("0.9.2"))
            !spec.isSatisfiedBy(GradleVersion.version("0.5"))
        }
    
        def "less-than-or-equal version constraint matches all versions with specified base version and earlier"() {
            def spec = new GradleVersionSpec().toSpec("<=1.4")
    
            expect:
            spec.isSatisfiedBy(GradleVersion.version("1.4"))
            spec.isSatisfiedBy(GradleVersion.version("1.4-rc-1"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/internal/testlog/exit.go

    // This is in the testlog package because, like other definitions in
    // package testlog, it is a hook between the testing package and the
    // os package. This is used to ensure that an early call to os.Exit(0)
    // does not cause a test to pass.
    func PanicOnExit0() bool {
    	panicOnExit0.mu.Lock()
    	defer panicOnExit0.mu.Unlock()
    	return panicOnExit0.val
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    	if i == -1 {
    		return errors.New("no CPU features found")
    	}
    	in = in[i+len(features):]
    	if i := strings.Index(in, "\n"); i != -1 {
    		in = in[:i]
    	}
    	m := map[string]*bool{}
    
    	initOptions() // need it early here; it's harmless to call twice
    	for _, o := range options {
    		m[o.Name] = o.Feature
    	}
    	// The EVTSTRM field has alias "evstrm" in Go, but Linux calls it "evtstrm".
    	m["evtstrm"] = &ARM64.HasEVTSTRM
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/python/mlir.h

    // Simple wrapper to support tf.mlir.experimental.convert_graph_def.
    // Load a GraphDef (binary or textual proto format), convert to MLIR, and
    // (optionally) optimize the module before returning it as a string.
    // This is an early experimental API, ideally we should return a wrapper object
    // around a Python binding to the MLIR module.
    std::string ImportGraphDef(const std::string &proto,
                               const std::string &pass_pipeline,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

    import org.gradle.integtests.fixtures.TargetVersions
    import org.gradle.util.GradleVersion
    import spock.lang.Issue
    
    /**
     * Tests that task classes compiled against earlier versions of Gradle using the static Groovy compiler are still compatible.
     *
     * <p>Note: Groovy introduced static compilation ({@link groovy.transform.CompileStatic}) in Groovy 2.0.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top