Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 811 for rsadsi (0.15 sec)

  1. src/os/dir.go

    	"internal/bytealg"
    	"internal/filepathlite"
    	"io"
    	"io/fs"
    	"slices"
    )
    
    type readdirMode int
    
    const (
    	readdirName readdirMode = iota
    	readdirDirEntry
    	readdirFileInfo
    )
    
    // Readdir reads the contents of the directory associated with file and
    // returns a slice of up to n [FileInfo] values, as would be returned
    // by [Lstat], in directory order. Subsequent calls on the same file will yield
    // further FileInfos.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

                line.setLength(0)
            }
            return result.toString()
        }
    
        def "reads from empty text"() {
            expect:
            def reader = new PreprocessingReader(new StringReader(""))
            !reader.readNextLine(new StringBuilder())
        }
    
        def "reads single line"() {
            expect:
            def reader = new PreprocessingReader(new StringReader("abc(123)"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

            then:
            symbols.size() == 4
            symbols*.name.containsAll(['multiply.cpp', 'sum.cpp', 'greeter.cpp', 'main.cpp'])
        }
    
        @Unroll("reads soname value with #language readelf output")
        def "reads soname value"() {
            when:
            def inputLines = input.readLines()
    
            then:
            ReadelfBinaryInfo.readSoName(inputLines) == 'heythere'
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/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.
    func gbit16(b []byte) (uint16, []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                    _dst = _dst.deferred;
                    int _sidss = num_sids;
                    _dst.enc_ndr_long(_sidss);
                    int _sidsi = _dst.index;
                    _dst.advance(4 * _sidss);
    
                    _dst = _dst.derive(_sidsi);
                    for (int _i = 0; _i < _sidss; _i++) {
                        sids[_i].encode(_dst);
                    }
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 33K bytes
    - Viewed (0)
  6. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsReader.java

         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.toolchains.io.isStrict";
    
        /**
         * Reads the toolchains from the specified file.
         *
         * @param input The file to deserialize the toolchains 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.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/import_utils.h

    #include "absl/strings/string_view.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/protobuf.h"
    
    namespace tensorflow {
    
    // Reads text (.pbtext) or binary (.pb) format of a proto message from the given
    // buffer. Returns error status of the file is not found or malformed proto.
    // Note that text protos can only be parsed when full protobuf::Message protos
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 06 09:43:41 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/RandomAccessFileInputStream.java

     * limitations under the License.
     */
    package org.gradle.internal.file;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.RandomAccessFile;
    
    /**
     * Reads from a {@link RandomAccessFile}. Each operation reads from and advances the current position of the file.
     *
     * <p>Closing this stream does not close the underlying file.
     */
    // TODO Replace this with Channels.newInputStream(SeekableByteChannel)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsReader.java

         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.settings.io.isStrict";
    
        /**
         * Reads the settings from the specified file.
         *
         * @param input The file to deserialize the settings 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/cmd/compile/internal/test/align_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test to make sure that equality functions (and hash
    // functions) don't do unaligned reads on architectures
    // that can't do unaligned reads. See issue 46283.
    
    package test
    
    import "testing"
    
    type T1 struct {
    	x          float32
    	a, b, c, d int16 // memequal64
    }
    type T2 struct {
    	x          float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 19:06:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top