Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 398 for reactors (0.38 sec)

  1. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        //
        // 4) Create MavenSession.
        //
        // 5) Execute AbstractLifecycleParticipant.afterSessionStart(session)
        //
        // 6) Get reactor projects looking for general POM errors
        //
        // 7) Create ProjectDependencyGraph using trimming which takes into account --projects and reactor mode.
        // This ensures that the projects passed into the ReactorReader are only those specified.
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. src/compress/flate/inflate_test.go

    	f.Close()
    
    	for i, s := range ss {
    		if s != inflated[i].String() {
    			t.Errorf("inflated[%d]:\ngot  %q\nwant %q", i, inflated[i], s)
    		}
    	}
    }
    
    func TestReaderTruncated(t *testing.T) {
    	vectors := []struct{ input, output string }{
    		{"\x00", ""},
    		{"\x00\f", ""},
    		{"\x00\f\x00", ""},
    		{"\x00\f\x00\xf3\xff", ""},
    		{"\x00\f\x00\xf3\xffhello", "hello"},
    		{"\x00\f\x00\xf3\xffhello, world", "hello, world"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:23:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.List;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Describes the interdependencies between projects in the reactor.
     *
     * @since 3.0-alpha
     */
    public interface ProjectDependencyGraph {
    
        /**
         * Gets all collected projects.
         *
         * @return All collected projects.
         *
         * @since 3.5.0
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/project-builder/mng-3023/consumer/pom.xml

        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <artifactId>consumer</artifactId>
    
      <name>Maven Integration Test :: MNG-3023 :: Consumer</name>
      <description>Test that reactor projects are included in dependency resolution.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its.mng3023</groupId>
          <artifactId>dependency</artifactId>
          <version>1</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 2K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    	"bytes"
    	"compress/bzip2"
    	"crypto/md5"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"os"
    	"path"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestReader(t *testing.T) {
    	vectors := []struct {
    		file    string    // Test input file
    		headers []*Header // Expected output headers
    		chksums []string  // MD5 checksum of files, leave as nil if not checked
    		err     error     // Expected error to occur
    	}{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

            private final static int[] DELAYS = [2, 3, 5, 8, 13, 21, 34, 55]
    
            private final static boolean LOG = false
            private final static Map<String, Integer> FACTORS = [
                'jar': 10,
                'xml': 3,
                'pom': 3
            ].withDefault { 1 }
    
            private final AtomicInteger concurrency = new AtomicInteger()
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

            if (t instanceof Exception && !(t instanceof RuntimeException)) {
                eventCatapult.fire(ExecutionEvent.Type.ProjectFailed, currentSession, null, (Exception) t);
            }
    
            // reactor failure modes
            if (t instanceof RuntimeException || !(t instanceof Exception)) {
                // fail fast on RuntimeExceptions, Errors and "other" Throwables
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    					objs = append(objs, obj)
    					indexer.Add(obj)
    				}
    				fakeClient := fakeclient.NewSimpleClientset(objs...)
    
    				// The default reactor doesn't support apply, so we need our own (trivial) reactor
    				fakeClient.PrependReactor("patch", "clusterroles", func(action clienttesting.Action) (handled bool, ret runtime.Object, err error) {
    					if serverSideApplyEnabled == false {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/math/big/arith_mipsx.s

    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && (mips || mipsle)
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    TEXT ·addVV(SB),NOSPLIT,$0
    	JMP	·addVV_g(SB)
    
    TEXT ·subVV(SB),NOSPLIT,$0
    	JMP	·subVV_g(SB)
    
    TEXT ·addVW(SB),NOSPLIT,$0
    	JMP	·addVW_g(SB)
    
    TEXT ·subVW(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 759 bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/provision_test.go

    				// Create a volume before provisionClaimOperation starts.
    				// This similates a parallel controller provisioning the volume.
    				volume := newVolume("pvc-uid11-7", "1Gi", "uid11-7", "claim11-7", v1.VolumeBound, v1.PersistentVolumeReclaimDelete, classGold, volume.AnnBoundByController, volume.AnnDynamicallyProvisioned)
    				reactor.AddVolume(volume)
    			}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top