Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 701 for cpuset (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

         * @param content the message to log
         * @param error the error that caused this log
         */
        void debug(CharSequence content, Throwable error);
    
        /**
         * Sends an exception to the user in the <b>debug</b> error level.
         * The stack trace for this exception will be output when this error level is enabled.
         *
         * @param error the error that caused this log
         */
        void debug(Throwable error);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskStateInternal.java

                List<Throwable> causes = new ArrayList<>(taskExecutionException.getCauses());
                CollectionUtils.addAll(causes, failure.getCauses());
                taskExecutionException.initCauses(causes);
            } else {
                List<Throwable> causes = new ArrayList<>();
                causes.add(this.failure);
                causes.addAll(failure.getCauses());
                failure.initCauses(causes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 29 19:57:41 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailure.java

        private final List<Failure> suppressed;
        private final List<Failure> causes;
    
        public DefaultFailure(
            Throwable original,
            List<StackTraceElement> stackTrace,
            List<StackTraceRelevance> frameRelevance,
            List<Failure> suppressed,
            List<Failure> causes
        ) {
            if (stackTrace.size() != frameRelevance.size()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseExceptionNoStackTrace.java

        }
    
        public DefaultMultiCauseExceptionNoStackTrace(Factory<String> messageFactory, Throwable... causes) {
            super(messageFactory, causes);
        }
    
        public DefaultMultiCauseExceptionNoStackTrace(Factory<String> messageFactory, Iterable<? extends Throwable> causes) {
            super(messageFactory, causes);
        }
    
        @Override
        public synchronized Throwable fillInStackTrace() {
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultFileComparisonTestAssertionFailure.java

            String actual,
            List<InternalFailure> causes,
            byte[] expectedContent,
            byte[] actualContent
        ) {
            List<InternalFailure> causeFailure;
            if (causes.isEmpty()) {
                Throwable cause = t.getCause();
                causeFailure = cause != null && cause != t ? Collections.singletonList(DefaultFailure.fromThrowable(cause)) : Collections.emptyList();
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 28 09:46:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

         * Do not call this constructor.
         *
         * @deprecated This constructor will be made protected in 9.0
         */
        @Deprecated
        public ResolveException(String message, Iterable<? extends Throwable> causes) {
            super(message, causes);
    
            DeprecationLogger.deprecateAction("Directly instantiating a ResolveException")
                .withContext("Instantiating this exception is reserved for Gradle internal use only.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailureFactory.java

                ImmutableList.Builder<Throwable> causes = new ImmutableList.Builder<Throwable>();
                if (parent instanceof MultiCauseException) {
                    causes.addAll(((MultiCauseException) parent).getCauses());
                } else if (parent.getCause() != null) {
                    causes.add(parent.getCause());
                }
    
                return CollectionUtils.collect(causes.build(), recursiveConverter);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. test/fixedbugs/issue26097.go

    	if x1 == x2 {
    		r = v2
    	}
    	return r
    }
    
    func main() {
    	if cmovClobberAX16(1, 2, 4.0, 5.0) != 1 {
    		panic("CMOVQEQF causes incorrect code")
    	}
    	if cmovClobberAX32(1, 2, 4.0, 5.0) != 1 {
    		panic("CMOVQEQF causes incorrect code")
    	}
    	if cmovClobberAX64(1, 2, 4.0, 5.0) != 1 {
    		panic("CMOVQEQF causes incorrect code")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 28 18:39:56 UTC 2018
    - 829 bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemDefinitionReport.groovy

            then:
            pd1 == pd2
            pd1 == pd1
        }
    
        def "Changed label causes equal to be false"() {
    
            when:
            def pd1 = createProblemDefinition()
            def pd2 = createProblemDefinition("otherLabel")
    
            then:
            pd1 != pd2
        }
    
        def "Changed severity causes equal to be false"() {
    
            when:
            def pd1 = createProblemDefinition()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top