Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/em/docs/tutorial/testing.md

    ```console
    $ pytest
    
    ================ test session starts ================
    platform linux -- Python 3.6.9, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
    rootdir: /home/user/code/superawesome-cli/app
    plugins: forked-1.1.3, xdist-1.31.0, cov-2.8.1
    collected 6 items
    
    ---> 100%
    
    test_main.py <span style="color: green; white-space: pre;">......                            [100%]</span>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	storageapi "k8s.io/kubernetes/pkg/apis/storage"
    	"k8s.io/kubernetes/pkg/auth/nodeidentifier"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph/traverse"
    )
    
    // NodeAuthorizer authorizes requests from kubelets, with the following logic:
    //  1. If a request is not from a node (NodeIdentity() returns isNode=false), reject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/util.go

    	metaLabels := metadata.GetLabels()
    	val := metaLabels[label]
    	if val != "" {
    		return val
    	}
    
    	return metaLabels[fallBackLabel]
    }
    
    // Forked from Kubernetes k8s.io/kubernetes/pkg/api/v1/pod
    // FindPort locates the container port for the given pod and portName.  If the
    // targetPort is a number, use that.  If the targetPort is a string, look that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

         */
        void addRepository(org.apache.maven.model.Repository repository, boolean replace) throws InvalidRepositoryException;
    
        /**
         * Clones this resolver for usage in a forked resolution process. In general, implementors need not provide a deep
         * clone. The only requirement is that invocations of {@link #addRepository(Repository)} on the clone do not affect
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top