Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 884 for Forked (0.31 sec)

  1. plugin/pkg/auth/authorizer/node/graph.go

    	"k8s.io/dynamic-resource-allocation/resourceclaim"
    	pvutil "k8s.io/kubernetes/pkg/api/v1/persistentvolume"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph/simple"
    )
    
    // namedVertex implements graph.Node and remembers the type, namespace, and name of its related API object
    type namedVertex struct {
    	name       string
    	namespace  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

    import static org.gradle.testing.fixture.JUnitCoverage.LATEST_PLATFORM_VERSION
    import static org.hamcrest.CoreMatchers.containsString
    
    /**
     * Tests the state of the application classpath in the forked test process to ensure the correct
     * test framework dependencies are exposed to the user's test code. Additionally tests environmental
     * state like system properties, and environment variables.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

            return traceTreeWalker;
        }
    
        public void setTraceTreeWalker(boolean traceTreeWalker) {
            this.traceTreeWalker = traceTreeWalker;
        }
    
        /**
         * The maximum heap size for the forked antlr process (ex: '1g').
         */
        @Internal
        public String getMaxHeapSize() {
            return maxHeapSize;
        }
    
        public void setMaxHeapSize(String maxHeapSize) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. licenses/sigs.k8s.io/yaml/LICENSE

    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

    @Issue("GRADLE-1933")
    @Retry(condition = { onWindowsSocketDisappearance(instance, failure) }, mode = SETUP_FEATURE_CLEANUP, count = 2)
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "concurrent tooling api is only supported for forked mode")
    class ConcurrentToolingApiIntegrationSpec extends AbstractIntegrationSpec {
    
        @Rule
        final ConcurrentTestUtil concurrent = new ConcurrentTestUtil()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    We cover a significant number of them in the rest of the chapter.
    
    [sec:swift_test_execution]]
    == Test execution
    
    Gradle executes tests in a separate (‘forked’) process.
    
    You can control how the test process is launched via several properties on the link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html[XCTest] task, including the following:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            !output.contains("Appending input value fingerprint for")
            !output.contains("Appending input file fingerprints for 'classpath'")
        }
    
        def "compileJava is not cached if forked executable is used"() {
            buildFile << """
                compileJava.options.fork = true
                compileJava.options.forkOptions.executable = "${TextUtil.escapeString(Jvm.current().getExecutable("javac"))}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    	var forReturnType bool
    	boolType := reflect.TypeOf(forReturnType)
    	if ft.Out(0) != boolType {
    		return fmt.Errorf("expected bool return, got: %v", ft)
    	}
    	e[ft.In(0)] = fv
    	return nil
    }
    
    // Below here is forked from go's reflect/deepequal.go
    
    // During deepValueEqual, must keep track of checks that are
    // in progress.  The comparison algorithm assumes that all
    // checks in progress are true when it reencounters them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // distribution loading is deprecated in Gradle 8.2.
            return getClasspathWithAdditionalModules(classpath, modulepath, unfiltered, isModule);
        }
    
        /**
         * Creates a classpath for the forked process which injects the additional modules from
         * {@code additional} into the classpath provided by {@code classpath} and {@code modulepath}.
         */
        private ForkedTestClasspath getClasspathWithAdditionalModules(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top