Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 811 for rsadsi (0.61 sec)

  1. guava/src/com/google/common/io/Resources.java

    @ElementTypesAreNonnullByDefault
    public final class Resources {
      private Resources() {}
    
      /**
       * Returns a {@link ByteSource} that reads from the given URL.
       *
       * @since 14.0
       */
      public static ByteSource asByteSource(URL url) {
        return new UrlByteSource(url);
      }
    
      /** A byte source that reads from a URL using {@link URL#openStream()}. */
      private static final class UrlByteSource extends ByteSource {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/crypto/rsa/testdata/pss-vect.txt.bz2

    pss-vect.txt # ========== # TEST VECTORS FOR RSASSA-PSS # ========== # # This file contains test vectors for the # RSASSA-PSS signature scheme with appendix as # defined in PKCS #1 v2.1. 10 RSA keys of # different sizes have been generated. For each # key, 6 random messages of length between 1 # and 256 octets have been RSASSA-PSS signed # via a random salt of length 20 octets. # # The underlying hash function in the EMSA-PSS # encoding method is SHA-1; the mask generation # function is MGF1 with...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 27.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Serializer.java

     * limitations under the License.
     */
    package org.gradle.internal.serialize;
    
    import java.io.EOFException;
    
    public interface Serializer<T> {
        /**
         * Reads the next object from the given stream. The implementation must not perform any buffering, so that it reads only those bytes from the input stream that are
         * required to deserialize the next object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. operator/pkg/util/util.go

    	s := make([]string, 0, len(m))
    	for k, v := range m {
    		if v {
    			s = append(s, k)
    		}
    	}
    	return s
    }
    
    // ReadFilesWithFilter reads files from path, for a directory it recursively reads files and filters the results
    // for single file it directly reads the file. It returns a concatenated output of all matching files' content.
    func ReadFilesWithFilter(path string, filter FileFilter) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 02 13:01:43 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. docs/distributed/SIZING.md

    # Erasure code sizing guide
    
    ## Toy Setups
    
    Capacity constrained environments, MinIO will work but not recommended for production.
    
    | servers | drives (per node) | stripe_size | parity chosen (default) | tolerance for reads (servers) | tolerance for writes (servers) |
    |--------:|------------------:|------------:|------------------------:|------------------------------:|-------------------------------:|
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/TransformExecutionResultSerializerTest.groovy

        def serializer = new TransformExecutionResultSerializer()
    
        def "reads and writes transformation results"() {
            expect:
            assertCanWriteAndReadResult(
                inputArtifact.file("inside"),
                inputArtifact,
                outputDir.file("first"),
                outputDir.file("second"),
                outputDir
            )
        }
    
        def "reads and writes output only transformation results"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

    import org.gradle.internal.serialize.codecs.core.ClosureCodec
    
    class ConfigurationCacheGroovyClosureIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "from-cache build fails when task action closure reads a project property"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(name) // task property is ok
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/syscall/dir_plan9.go

    func pstring(b []byte, s string) []byte {
    	b = pbit16(b, uint16(len(s)))
    	n := copy(b, s)
    	return b[n:]
    }
    
    // gbit8 reads an 8-bit number from b and returns it with the remaining slice of b.
    func gbit8(b []byte) (uint8, []byte) {
    	return uint8(b[0]), b[1:]
    }
    
    // gbit16 reads a 16-bit number in little-endian order from b and returns it with the remaining slice of b.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java

         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.artifact.repository.metadata.io.isStrict";
    
        /**
         * Reads the metadata from the specified file.
         *
         * @param input The file to deserialize the metadata from, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/PacLogonInfo.java

                        extraSidAtts[ i ] = new PacSidAttributes(sid, attributes[ i ]);
                    }
                }
    
                // ID for resource domain (used with relative IDs to get SIDs)
                SID resourceDomainId = null;
                if ( resourceDomainIdPointer != 0 )
                    resourceDomainId = pacStream.readSid();
    
                // Resource groups data
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
Back to top