Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for reactors (0.2 sec)

  1. src/crypto/ed25519/ed25519vectors_test.go

    func TestEd25519Vectors(t *testing.T) {
    	jsonVectors := downloadEd25519Vectors(t)
    	var vectors []struct {
    		A, R, S, M string
    		Flags      []string
    	}
    	if err := json.Unmarshal(jsonVectors, &vectors); err != nil {
    		t.Fatal(err)
    	}
    	for i, v := range vectors {
    		expectedToVerify := true
    		for _, f := range v.Flags {
    			switch f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 25 14:52:51 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. src/compress/bzip2/bzip2_test.go

    }
    
    func TestMTF(t *testing.T) {
    	var vectors = []struct {
    		idx int   // Input index
    		sym uint8 // Expected output symbol
    	}{
    		{idx: 1, sym: 1}, // [1 0 2 3 4]
    		{idx: 0, sym: 1}, // [1 0 2 3 4]
    		{idx: 1, sym: 0}, // [0 1 2 3 4]
    		{idx: 4, sym: 4}, // [4 0 1 2 3]
    		{idx: 1, sym: 0}, // [0 4 1 2 3]
    	}
    
    	mtf := newMTFDecoderWithRange(5)
    	for i, v := range vectors {
    		sym := mtf.Decode(v.idx)
    		t.Log(mtf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/recycle_test.go

    			errors:          noerrors,
    			test: wrapTestWithInjectedOperation(ctx, wrapTestWithReclaimCalls(operationRecycle, []error{}, testSyncVolume), func(ctrl *PersistentVolumeController, reactor *pvtesting.VolumeReactor) {
    				// Delete the volume before recycle operation starts
    				reactor.DeleteVolume("volume6-6")
    			}),
    		},
    		{
    			// recycle success(?) - volume is recycled by previous recycler just
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/crypto/internal/hpke/hpke_test.go

    func TestRFC9180Vectors(t *testing.T) {
    	vectorsJSON, err := os.ReadFile("testdata/rfc9180-vectors.json")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var vectors []struct {
    		Name        string
    		Setup       string
    		Encryptions string
    	}
    	if err := json.Unmarshal(vectorsJSON, &vectors); err != nil {
    		t.Fatal(err)
    	}
    
    	for _, vector := range vectors {
    		t.Run(vector.Name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/project-builder/mng-3023/pom.xml

      <groupId>org.apache.maven.its.mng3023</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3023</name>
      <description>Test that reactor projects are included in dependency resolution.</description>
    
      <modules>
        <module>dependency</module>
        <module>consumer</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorContext.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    import org.apache.maven.execution.MavenExecutionResult;
    
    /**
     * Context that is fixed for the entire reactor build.
     *
     * @since 3.0
     *         NOTE: This class is not part of any public api and can be changed or deleted without prior notice.
     */
    public class ReactorContext {
        private final MavenExecutionResult result;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    import org.apache.maven.api.model.Model;
    
    /**
     * Holds all Models that are known to the reactor. This allows the project builder to resolve imported Models from the
     * reactor when building another project's effective model.
     *
     */
    class ReactorModelPool {
        private final Map<GAKey, Set<Model>> modelsByGa = new ConcurrentHashMap<>();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a successful project build in the reactor.
     *
     */
    public class BuildSuccess extends BuildSummary {
    
        /**
         * Creates a new build summary for the specified project.
         *
         * @param project The project being summarized, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a failed project build in the reactor.
     *
     */
    public class BuildFailure extends BuildSummary {
    
        /**
         * The cause of the build failure.
         */
        private final Throwable cause;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/MaxNParallelTestClassProcessor.java

        private int pos;
        private List<TestClassProcessor> processors = new ArrayList<TestClassProcessor>();
        private List<TestClassProcessor> rawProcessors = new ArrayList<TestClassProcessor>();
        private List<Actor> actors = new ArrayList<Actor>();
        private Actor resultProcessorActor;
        private volatile boolean stoppedNow;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top