Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 398 for reactors (0.15 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/internal/ModelNodeRendererTest.groovy

    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor
    import spock.lang.Specification
    
    
    class ModelNodeRendererTest extends Specification {
    
        def "should filter rules removing duplicates and excluding creators"() {
            ModelRuleDescriptor creator = Mock()
            creator.describeTo(_) >> { Appendable a ->
                a.append("creator")
            }
    
            ModelRuleDescriptor mutator = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 02:14:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. src/crypto/rsa/pkcs1v15_test.go

    	n, err := base64.StdEncoding.Decode(out, []byte(in))
    	if err != nil {
    		return nil
    	}
    	return out[0:n]
    }
    
    type DecryptPKCS1v15Test struct {
    	in, out string
    }
    
    // These test vectors were generated with `openssl rsautl -pkcs -encrypt`
    var decryptPKCS1v15Tests = []DecryptPKCS1v15Test{
    	{
    		"gIcUIoVkD6ATMBk/u/nlCZCCWRKdkfjCgFdo35VpRXLduiKXhNz1XupLLzTXAybEq15juc+EgY5o0DHv/nt3yg==",
    		"x",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // Reactor Failure Mode
        // ----------------------------------------------------------------------
    
        String REACTOR_FAIL_FAST = "FAIL_FAST";
    
        String REACTOR_FAIL_AT_END = "FAIL_AT_END";
    
        String REACTOR_FAIL_NEVER = "FAIL_NEVER";
    
        // ----------------------------------------------------------------------
        // Reactor Make Mode
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

          separated.withSeparator("$", 4);
          fail("Expected UnsupportedOperationException");
        } catch (UnsupportedOperationException expected) {
        }
      }
    
      public void testBase64() {
        // The following test vectors are specified in RFC 4648 itself
        testEncodingWithSeparators(base64(), "", "");
        testEncodingWithSeparators(base64(), "f", "Zg==");
        testEncodingWithSeparators(base64(), "fo", "Zm8=");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  5. src/strconv/strconv_test.go

    	_, errUint64 := ParseUint("INVALID", 10, 64)
    
    	vectors := []struct {
    		err  error  // Input error
    		want string // Function name wanted
    	}{
    		{errInt, "Atoi"},
    		{errBool, "ParseBool"},
    		{errFloat, "ParseFloat"},
    		{errInt64, "ParseInt"},
    		{errUint64, "ParseUint"},
    	}
    
    	for _, v := range vectors {
    		nerr, ok := v.err.(*NumError)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc(
                            "Resume reactor from the last failed project, using the resume.properties file in the build directory")
                    .build());
            options.addOption(Option.builder(RESUME_FROM)
                    .longOpt("resume-from")
                    .hasArg()
                    .desc("Resume reactor from specified project")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    The purpose of running most builds though is to process some new changes.
    The structure of the software being built (how many modules are there, how independent are its parts etc.), and the nature of the changes themselves ("big refactor in the core of the system" vs. "small change to a unit test" etc.) strongly influence the performance gains delivered by the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildTreeLifecycleBuildActionExecutor.java

                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/crypto/rc4/rc4_test.go

    // license that can be found in the LICENSE file.
    
    package rc4
    
    import (
    	"bytes"
    	"fmt"
    	"testing"
    )
    
    type rc4Test struct {
    	key, keystream []byte
    }
    
    var golden = []rc4Test{
    	// Test vectors from the original cypherpunk posting of ARC4:
    	//   https://groups.google.com/group/sci.crypt/msg/10a300c9d21afca0?pli=1
    	{
    		[]byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
Back to top