Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,673 for Runtimes (0.2 sec)

  1. src/internal/testenv/testenv_notwin.go

    package testenv
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"runtime"
    )
    
    func hasSymlink() (ok bool, reason string) {
    	switch runtime.GOOS {
    	case "plan9":
    		return false, ""
    	case "android", "wasip1":
    		// For wasip1, some runtimes forbid absolute symlinks,
    		// or symlinks that escape the current working directory.
    		// Perform a simple test to see whether the runtime
    		// supports symlinks or not. If we get a permission
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. architecture/standards/0004-use-a-platform-architecture.md

    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms. 
    
    It is made up of 3 architecture modules:
    
    - **Runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/fds.go

    package app
    
    // RaiseFileLimits sets the file limit to the maximum allowed, to avoid exhaustion of file descriptors.
    // This is done by setting soft limit == hard limit.
    // Typical container runtimes already do this, but on VMs, etc this is generally not the case, and a limit of 1024 is common -- this is quite low!
    //
    // Go already sets this (https://github.com/golang/go/issues/46279).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCodeQualityIntegrationTest.groovy

        @Requires([UnitTestPreconditions.StableGroovy, UnitTestPreconditions.Jdk11OrLater, UnitTestPreconditions.Jdk21OrEarlier]) // FIXME KM temporarily disabling while CodeNarc runs in Worker API with multiple Groovy runtimes
        def "can generate reports with #dsl dsl"() {
            TestFile projectDir = sample.dir.file(dsl)
            TestFile buildDir = projectDir.file('build')
    
            when:
            executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/internal/wasitest/tcpecho_test.go

    	// Although the WASM runtime accepts port 0, and the WASM module listens
    	// successfully, there's no way for this test to query the selected port
    	// so that it can connect to the WASM module. The WASM module itself
    	// cannot access any information about the socket due to limitations
    	// with WASI preview 1 networking, and the WASM runtimes do not log the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/tests/saved_model_api_test.cc

      }
    
      builder.SetUseTFRT(use_tfrt);
      std::unique_ptr<Runtime> runtime = builder.Build(&status);
      ASSERT_TRUE(status.ok()) << status.message();
    
      std::string model_dir = SavedModelPath("VarsAndArithmeticObjectGraph");
      std::unordered_set<std::string> tags = {"serve"};
      std::unique_ptr<SavedModelAPI> model =
          SavedModelAPI::Load(model_dir, *runtime, &status, &tags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 14 23:59:14 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

        }
    
        @Override
        public Map<PerformanceExperimentOnOs, Long> getEstimatedExperimentDurationsInMillis() {
            return this.<Map<PerformanceExperimentOnOs, Long>>withConnection("load estimated runtimes") { connection ->
                Timestamp since = Timestamp.valueOf(LocalDateTime.now().minusDays(LATEST_EXECUTION_TIMES_DAYS))
                ImmutableMap.Builder<PerformanceExperimentOnOs, Long> builder = ImmutableMap.builder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = ":buildDashboard")
        @Requires(UnitTestPreconditions.StableGroovy) // FIXME KM temporarily disabling while CodeNarc runs in Worker API with multiple Groovy runtimes
        void 'enabling an additional report renders buildDashboard out-of-date'() {
            given:
            goodCode()
            withCodenarc()
    
            when:
            run('check')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/net/file_wasip1_test.go

    // support this approach for UDP sockets. Instead, we test the internals that
    // make it possible for WASI host runtimes and guest programs to integrate
    // socket extensions with the net package using net.FileConn/net.FileListener.
    //
    // Note that the creation of net.Conn and net.Listener values for TCP sockets
    // has an end-to-end test in src/runtime/internal/wasitest, here we are only
    // verifying the code paths specific to UDP, and error handling for invalid use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:06:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

         * 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;
        }
    
        /**
         * The character set used to encode ZIP metadata like file names.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top