Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 216 for reactors (0.26 sec)

  1. src/crypto/ed25519/ed25519_test.go

    	}
    	sig[0] ^= 0xff
    	sig[SignatureSize-1] ^= 0xff
    	if VerifyWithOptions(public, hash[:], sig, &Options{Hash: crypto.SHA512}) == nil {
    		t.Errorf("invalid signature accepted")
    	}
    
    	// The RFC provides no test vectors for Ed25519ph with context, so just sign
    	// and verify something.
    	sig, err = private.Sign(nil, hash[:], &Options{Hash: crypto.SHA512, Context: "123"})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds.go

    	if req == nil {
    		return true
    	}
    	switch proxy.Type {
    	case model.Waypoint:
    		if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    			// TODO: this logic is identical to that used in LDS, consider refactor into a common function
    			// taken directly from LDS... waypoints need CDS updates on kind.Address changes
    			// after implementing use-waypoint which decouples waypoint creation, wl pod creation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. .github/workflows/test.yml

          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - name: Decide whether the needed jobs succeeded or failed
            uses: re-actors/alls-green@release/v1
            with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    			ops     fileOps
    			wantCnt int64
    			wantErr error
    		}
    		testClose struct { // Close() == wantErr
    			wantErr error
    		}
    		testFnc any // testHeader | testWrite | testReadFrom | testClose
    	)
    
    	vectors := []struct {
    		file  string // Optional filename of expected output
    		tests []testFnc
    	}{{
    		// The writer test file was produced with this command:
    		// tar (GNU tar) 1.26
    		//   ln -s small.txt link.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/values.yaml

      podLabels: {}
    
      # Pod resource configuration
      resources:
        requests:
          cpu: 200m
          # Ztunnel memory scales with the size of the cluster and traffic load
          # While there are many factors, this is enough for ~200k pod cluster or 100k concurrently open connections.
          memory: 512Mi
    
      # List of secret names to add to the service account as image pull secrets
      imagePullSecrets: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. internal/kms/kms.go

    	latencyBuckets         []time.Duration // expected to be sorted
    	latency                []atomic.Uint64
    }
    
    // Version returns version information about the KMS.
    //
    // TODO(aead): refactor this API call since it does not account
    // for multiple KMS/KES servers.
    func (k *KMS) Version(ctx context.Context) (string, error) {
    	return k.conn.Version(ctx)
    }
    
    // APIs returns a list of KMS server APIs.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768_test.go

    }
    
    var millionFlag = flag.Bool("million", false, "run the million vector test")
    
    // TestPQCrystalsAccumulated accumulates the 10k vectors generated by the
    // reference implementation and checks the hash of the result, to avoid checking
    // in 150MB of test vectors.
    func TestPQCrystalsAccumulated(t *testing.T) {
    	n := 10000
    	expected := "f7db260e1137a742e05fe0db9525012812b004d29040a5b606aad3d134b548d3"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         */
        @Nonnull
        default String getId() {
            return getModel().getId();
        }
    
        /**
         * Returns a boolean indicating if the project is the top level project for
         * this reactor build.  The top level project may be different from the
         * {@code rootDirectory}, especially if a subtree of the project is being
         * built, either because Maven has been launched in a subdirectory or using
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RegularImmutableMultiset.java

            if (bucketLength > MAX_HASH_BUCKET_LENGTH) {
              return true;
            }
          }
        }
        return false;
      }
    
      /**
       * Closed addressing tends to perform well even with high load factors. Being conservative here
       * ensures that the table is still likely to be relatively sparse (hence it misses fast) while
       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.0;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/internal/DefaultActorFactory.java

        private final ExecutorFactory executorFactory;
    
        public DefaultActorFactory(ExecutorFactory executorFactory) {
            this.executorFactory = executorFactory;
        }
    
        /**
         * Stops all actors.
         */
        @Override
        public void stop() {
            synchronized (lock) {
                try {
                    CompositeStoppable.stoppable(nonBlockingActors.values()).add(blockingActors.values()).stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top