Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 719 for Forked (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	apiproxy "k8s.io/apimachinery/pkg/util/proxy"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    )
    
    // SpdyRoundTripper knows how to upgrade an HTTP request to one that supports
    // multiplexed streams. After RoundTrip() is invoked, Conn will be set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

         * by concurrently running mojo executions. To prevent race conditions, an aggregating execution will block
         * all other executions until finished.
         * We also lock on a given project to forbid a forked lifecycle to be executed concurrently with the project.
         * TODO: ideally, the builder should take care of the ordering in a smarter way
         * TODO: and concurrency issues fixed with MNG-7157
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	sc "k8s.io/kubernetes/pkg/securitycontext"
    	hashutil "k8s.io/kubernetes/pkg/util/hash"
    	"k8s.io/kubernetes/third_party/forked/golang/expansion"
    	utilsnet "k8s.io/utils/net"
    )
    
    // HandlerRunner runs a lifecycle handler for a container.
    type HandlerRunner interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

            buildDistLifecycleTask.configure {
                dependsOn(distributionZip)
            }
        }
    
        // A 'installation' variant providing a folder where the distribution is present in the final format for forked integration testing
        consumableVariant("${name}Installation", "gradle-$name-installation", Bundling.EMBEDDED, emptyList(), installation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

        String groovyDependency
    
        String getGroovyVersionNumber() {
            version.split(":", 2)[0]
        }
    
        def setup() {
            // necessary for picking up some of the output/errorOutput when forked executer is used
            executer.withArgument("-i")
            executer.withRepositoryMirrors()
            groovyDependency = groovyModuleDependency("groovy", versionNumber)
        }
    
        def "compileGoodCode"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package json is forked from the Go standard library to enable us to find the
    // field of a struct that a given JSON key maps to.
    package json
    
    import (
    	"bytes"
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/kubeinject.go

    	deserializer = codecs.UniversalDeserializer()
    )
    
    // GetFirstPod returns a pod matching the namespace and label selector
    // and the number of all pods that match the label selector.
    // This is forked from  polymorphichelpers.GetFirstPod to not watch and instead return an error if no pods are found
    func GetFirstPod(client v1.CoreV1Interface, namespace string, selector string) (*corev1.Pod, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    JVMs compiled against `musl` can sometimes override the `LD_LIBRARY_PATH` environment variable to control dynamic library resolution.
    This can influence forked java processes launched by Gradle, resulting in unexpected behavior.
    
    As a consequence, using multiple java toolchains is discouraged in environments with the `musl` library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/cmds.go

    			// that we used to write the executable (see https://go.dev/issue/22315).
    			// Since the descriptor should have CLOEXEC set, the problem should
    			// resolve as soon as the forked child reaches its exec call.
    			// Keep retrying until that happens.
    		} else {
    			return nil, err
    		}
    	}
    
    	wait := func(s *State) (stdout, stderr string, err error) {
    		err = cmd.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    If your tests do share resources, they could interfere with each other in random and unpredictable ways.
    
    ==== Fork tests into multiple processes
    
    By default, Gradle runs all tests in a single forked VM.
    If there are a lot of tests, or some tests that consume lots of memory,
    your tests may take longer than you expect to run. You can increase the
    heap size, but garbage collection may slow down your tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top