Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for RUNTIME (0.13 sec)

  1. pkg/kubelet/container/runtime.go

    	TotalStorageBytes uint64
    }
    
    // Runtime interface defines the interfaces that should be implemented
    // by a container runtime.
    // Thread safety is required from implementations of this interface.
    type Runtime interface {
    	// Type returns the type of the container runtime.
    	Type() string
    
    	// Version returns the version information of the container runtime.
    	Version(ctx context.Context) (Version, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Runtime.exec() overloads
                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromGroovyString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Runtime.exec() overloads
                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/registry.go

    		volumezone.Name:                      volumezone.New,
    		nodevolumelimits.CSIName:             runtime.FactoryAdapter(fts, nodevolumelimits.NewCSI),
    		nodevolumelimits.EBSName:             runtime.FactoryAdapter(fts, nodevolumelimits.NewEBS),
    		nodevolumelimits.GCEPDName:           runtime.FactoryAdapter(fts, nodevolumelimits.NewGCEPD),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/runtime/gc_test.go

    func TestUserForcedGC(t *testing.T) {
    	// Test that runtime.GC() triggers a GC even if GOGC=off.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    	var ms1, ms2 runtime.MemStats
    	runtime.ReadMemStats(&ms1)
    	runtime.GC()
    	runtime.ReadMemStats(&ms2)
    	if ms1.NumGC == ms2.NumGC {
    		t.Fatalf("runtime.GC() did not trigger GC")
    	}
    	if ms1.NumForcedGC == ms2.NumForcedGC {
    		t.Fatalf("runtime.GC() was not accounted in NumForcedGC")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

            // Runtime.exec() overloads
            fromString()      | "Runtime.getRuntime().exec(command)"                                                              | ""                | ""
            fromStringArray() | "Runtime.getRuntime().exec(command)"                                                              | ""                | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

            // Runtime.exec() overloads
            fromString()      | "Runtime.getRuntime().exec(command)"                                                | ""                | ""
            fromStringArray() | "Runtime.getRuntime().exec(command)"                                                | ""                | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. .teamcity/subprojects.json

        "path": "platforms/core-runtime/build-process-services",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-profile",
        "path": "platforms/core-runtime/build-profile",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "build-state",
        "path": "platforms/core-runtime/build-state",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/AbstractFunctionalTypeTest.kt

            Runtime.value = "before"
            val value = configurationCacheRoundtripOf(deferred)
    
            Runtime.value = "after"
            assertThat(
                force(value),
                equalTo("after")
            )
        }
    
        protected
        fun <T : Any> assertEagerEvaluationOf(eager: T, extract: T.() -> Any?) {
            Runtime.value = "before"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top