Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,540 for unsuccessful (0.25 sec)

  1. src/go/build/build.go

    			goto Found
    		} else if err != errNoModules {
    			return p, err
    		}
    
    		gopath := ctxt.gopath() // needed twice below; avoid computing many times
    
    		// tried records the location of unsuccessful package lookups
    		var tried struct {
    			vendor []string
    			goroot string
    			gopath []string
    		}
    
    		// Vendor directories get first chance to satisfy import.
    		if mode&IgnoreVendor == 0 && srcDir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	if buildID != toolBuildID {
    		t.Fatalf(".BuildID with -export %q disagrees with 'go tool buildid' %q", buildID, toolBuildID)
    	}
    }
    
    // Issue 4096. Validate the output of unsuccessful go install foo/quxx.
    func TestUnsuccessfulGoInstallShouldMentionMissingPackage(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.runFail("install", "foo/quxx")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/TryTest.groovy

            Try.ofFailable { result } == Try.successful(result)
    
            where:
            result << [['a', 'b', 'c'], "Some string", 5]
        }
    
        def "successful (flat) map"() {
            expect:
            Try.successful(10).flatMap { it -> Try.successful(it + 2) } == Try.successful(12)
            Try.successful(20).map { (it + 10).toString() } == Try.successful('30')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
            </field>
            <field>
              <name>notifiers</name>
              <version>4.0.0+</version>
              <description>Configuration for notifying developers/users when a build is unsuccessful,
                including user information and notification mode.</description>
              <association>
                <multiplicity>*</multiplicity>
                <type>Notifier</type>
              </association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	}()
    }
    
    // dialConnFor dials on behalf of w and delivers the result to w.
    // dialConnFor has received permission to dial w.cm and is counted in t.connCount[w.cm.key()].
    // If the dial is canceled or unsuccessful, dialConnFor decrements t.connCount[w.cm.key()].
    func (t *Transport) dialConnFor(w *wantConn) {
    	defer w.afterDial()
    	ctx := w.getCtxForDial()
    	if ctx == nil {
    		t.decConnsPerHost(w.key)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/ExponentialBackoff.java

        }
    
        public abstract static class Result<T> {
            public abstract boolean isSuccessful();
    
            public abstract T getValue();
    
            /**
             * Creates a result that indicates that the operation was successful and should not be repeated.
             */
            public static <T> Result<T> successful(final T value) {
                if (value == null) {
                    throw new IllegalArgumentException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionState.java

            ImmutableSortedMap<String, FileSystemSnapshot> outputFilesProducedByWork,
            boolean successful
        ) {
            super(implementation, additionalImplementations, inputProperties, inputFileProperties);
            this.outputFilesProducedByWork = outputFilesProducedByWork;
            this.originMetadata = originMetadata;
            this.successful = successful;
            this.cacheKey = cacheKey;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultExecutionOutputState.java

            this.successful = successful;
            this.outputFilesProducedByWork = outputFilesProducedByWork;
            this.originMetadata = originMetadata;
            this.reused = reused;
        }
    
        @Override
        public boolean isSuccessful() {
            return successful;
        }
    
        @Override
        public ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork() {
            return outputFilesProducedByWork;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

    /**
     * Captures the state of the outputs of a {@link org.gradle.internal.execution.UnitOfWork}.
     */
    public interface ExecutionOutputState {
    
        /**
         * Whether the execution was successful.
         */
        boolean isSuccessful();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * In the presence of overlapping outputs this might be different from
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

        }
    
        boolean isRegressed() {
            return teamCityExecutions.every { it.isBuildFailed() } && !currentExecutions.empty
        }
    
        boolean isSuccessful() {
            return teamCityExecutions.every { it.isSuccessful() }
        }
    
        boolean isAboutToRegress() {
            return !crossBuild && currentExecutions.any { it.confidentToSayWorse() }
        }
    
        double getDifferenceSortKey() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top