Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 496 for Forked (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

     * be used together with {@link spock.lang.Timeout}. It should be annotated on
     * {@link org.gradle.integtests.fixtures.AbstractIntegrationSpec}. Upon timeout,
     * all threads' stack traces of current JVM (embedded executer) or forked JVM (forking executer)
     * are printed to help us debug deadlock issues.
     */
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @ExtensionAnnotation(IntegrationTestTimeoutExtension.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. hack/verify-netparse-cve.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks if the "net" stdlib IP and CIDR parsers are used
    # instead of the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/verify-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/test/cmd/util.go

    limitations under the License.
    */
    
    package kubeadm
    
    import (
    	"bytes"
    	"io"
    	"os"
    	"os/exec"
    	"testing"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    )
    
    // Forked from test/e2e/framework because the e2e framework is quite bloated
    // for our purposes here, and modified to remove undesired logging.
    
    func runCmdNoWrap(command string, args ...string) (string, string, int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/process/JavaDebugOptions.java

     *
     * @since 5.6
     */
    public interface JavaDebugOptions {
    
        /**
         * Should the debug agent start in the forked process? By default, this is false.
         */
        @Input
        Property<Boolean> getEnabled();
    
        /**
         * Host address to listen on or connect to when debug is enabled. By default, no host is set.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 14:16:38 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. src/os/exec/lp_linux_test.go

    			// 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 {
    			t.Fatalf("exec: got %v, want nil", err)
    		}
    	}
    
    	// Remount with noexec flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:02:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. hack/update-vendor-licenses.sh

      mkdir -p "${dest_dir}"
      mv "${TMP_LICENSE_FILE}" "${dest_dir}/LICENSE"
    done
    
    # copy licenses for forked code from vendor and third_party directories
    (cd "${KUBE_ROOT}" && \
      find vendor third_party -iname 'licen[sc]e*' -o -iname 'notice*' -o -iname 'copying*' | \
      grep -E 'third_party|forked' | \
      xargs tar -czf - | tar -C "${TMP_LICENSES_DIR}" -xzf -)
    
    # Leave things like OWNERS alone.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DefaultDaemonServerConfiguration.java

            // Using the available agent is correct for the forked daemon processes, because the forking
            // code takes the desired agent status into account when configuring the daemon command line.
            // The daemon that shouldn't use the agent won't have the agent applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     * control the lifecycle of the mojo itself, and to inject other beans.
     * </p>
     * <p>
     * The mojo class can also be injected with an {@link Execute} annotation to specify a
     * forked lifecycle.
     * </p>
     * <p>
     * The {@link Parameter} annotation can be added on fields to inject data
     * from the plugin configuration or from other components.
     * </p>
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

            }
    
            @Override
            protected void before(IMethodInvocation invocation) {
                featureValues.each { sysProp, value ->
                    // Ensure that the system property is propagated to forked Gradle executions
                    AbstractGradleExecuter.propagateSystemProperty(sysProp)
                    System.setProperty(sysProp, value)
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    	"k8s.io/klog/v2"
    )
    
    // DialURL will dial the specified URL using the underlying dialer held by the passed
    // RoundTripper. The primary use of this method is to support proxying upgradable connections.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top