Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,759 for Forked (0.09 sec)

  1. 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)
  2. cmd/prune-junit-xml/prunexml.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"encoding/xml"
    	"flag"
    	"fmt"
    	"io"
    	"os"
    	"regexp"
    
    	"k8s.io/kubernetes/third_party/forked/gotestsum/junitxml"
    )
    
    func main() {
    	maxTextSize := flag.Int("max-text-size", 1, "maximum size of attribute or text (in MB)")
    	pruneTests := flag.Bool("prune-tests", true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

    name: Java CI
    
    on: [push, pull_request, workflow_dispatch]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push, workflow_dispatch  or pull request from forked repo
        if: >
          github.event_name == 'push' ||
          github.event_name == 'workflow_dispatch' ||
          ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_testing.adoc

    We cover a number of them in the rest of the chapter.
    
    [[sec:cpp_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.tasks.RunTestExecutable.html[RunTestExecutable] task, including the following:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

         */
        private String lifecyclePhase;
    
        /**
         * The executions to fork before this execution, indexed by the groupId:artifactId:version of the project on which
         * the forked execution are to be run and in reactor build order.
         */
        private Map<String, List<MojoExecution>> forkedExecutions = new LinkedHashMap<>();
    
        public MojoExecution(Plugin plugin, String goal, String executionId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                            String[] splitCliClasspath = splitClasspath(System.getProperty("java.class.path"));
    
                            // The worker jar is first on the classpath.
                            String workerJar = splitCliClasspath[0];
                            assertTrue(workerJar.contains("gradle-worker.jar"));
    
                            // After, we expect the test runtime classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/lockedfile/internal/filelock/filelock_test.go

    	f, remove := mustTempFile(t)
    	defer remove()
    
    	lock(t, f)
    
    	other := mustOpen(t, f.Name())
    	defer other.Close()
    
    	// Some kinds of file locks are dropped when a duplicated or forked file
    	// descriptor is unlocked. Double-check that the approach used by os/exec does
    	// not accidentally drop locks.
    	cmd := testenv.Command(t, os.Args[0], "-test.run=^$")
    	if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

        }
    
        @Override
        public Optional<Project> getExecutionProject(Project project) {
            // Session keep tracks of the Project per project id,
            // so we cannot use session.getProject(p) for forked projects
            // which are temporary clones
            return Optional.ofNullable(getMavenProject(project).getExecutionProject())
                    .map(p -> new DefaultProject(session, p));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    Default value is `[__projectDir__/src/__name__/antlr]`.
    
    [[sec:controlling_the_antlr_generator_process]]
    == Controlling the ANTLR generator process
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. internal/handlers/proxy.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // Originally from https://github.com/gorilla/handlers with following license
    // https://raw.githubusercontent.com/gorilla/handlers/master/LICENSE, forked
    // and heavily modified for MinIO's internal needs.
    
    package handlers
    
    import (
    	"net"
    	"net/http"
    	"regexp"
    	"strings"
    )
    
    var (
    	// De-facto standard header keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top