Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 742 for comprises (0.17 sec)

  1. src/go/doc/comment/testdata/text5.txt

    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
    Package gob
    manages streams
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 937 bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/text6.txt

    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 919 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/text2.txt

    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 937 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarCopyAction.java

     * limitations under the License.
     */
    package org.gradle.api.internal.file.archive;
    
    import org.apache.commons.compress.archivers.tar.TarArchiveEntry;
    import org.apache.commons.compress.archivers.tar.TarArchiveOutputStream;
    import org.apache.commons.compress.archivers.zip.UnixStat;
    import org.gradle.api.GradleException;
    import org.gradle.api.file.FileCopyDetails;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	# math/big
    	FMT, math/rand
    	< math/big;
    
    	# compression
    	FMT, encoding/binary, hash/adler32, hash/crc32, sort
    	< compress/bzip2, compress/flate, compress/lzw, internal/zstd
    	< archive/zip, compress/gzip, compress/zlib;
    
    	# templates
    	FMT
    	< text/template/parse;
    
    	net/url, text/template/parse
    	< text/template
    	< internal/lazytemplate;
    
    	# regexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

        def setup() {
            buildFile << """
                dependencies {
                    api 'org:moda:1.0'
                }
            """
        }
    
        def "compiles a module using the module path"() {
            given:
            publishJavaModule('moda')
            consumingModuleInfo('requires moda')
            consumingModuleClass('moda.ModaClass')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ZipExtractor.java

    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.annotation.Resource;
    
    import org.apache.commons.compress.archivers.ArchiveInputStream;
    import org.apache.commons.compress.archivers.ArchiveStreamFactory;
    import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768_test.go

    			if f >= q {
    				t.Fatalf("decompress(%d, %d) = %d >= q", a, bits, f)
    			}
    			got := compress(f, bits)
    			if got != a {
    				t.Fatalf("compress(decompress(%d, %d), %d) = %d", a, bits, bits, got)
    			}
    		}
    
    		for a := fieldElement(0); a < q; a++ {
    			c := compress(a, bits)
    			if c >= 1<<bits {
    				t.Fatalf("compress(%d, %d) = %d >= 2^bits", a, bits, c)
    			}
    			got := decompress(c, bits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptCompiler.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.groovy.scripts.internal.CompileOperation;
    
    /**
     * Compiles a script into a {@code Script} object.
     */
    public interface ScriptCompiler {
    
        /**
         * Compiles the script into a {@code Script} object of the given type.
         *
         * @return a {@code ScriptRunner} for the script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TarExtractor.java

    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.annotation.Resource;
    
    import org.apache.commons.compress.archivers.ArchiveInputStream;
    import org.apache.commons.compress.archivers.ArchiveStreamFactory;
    import org.apache.commons.compress.archivers.tar.TarArchiveEntry;
    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.fess.crawler.entity.ExtractData;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top