Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Dis (0.02 sec)

  1. src/main/java/jcifs/pac/PacDataInputStream.java

                this.dis.skip(mask - shift);
        }
    
    
        public int available () throws IOException {
            return this.dis.available();
        }
    
    
        public void readFully ( byte[] b ) throws IOException {
            this.dis.readFully(b);
        }
    
    
        public void readFully ( byte[] b, int off, int len ) throws IOException {
            this.dis.readFully(b, off, len);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 21 21:19:58 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

            byte[] data = Base64.getDecoder().decode(encoding);
            try (ByteArrayInputStream bais = new ByteArrayInputStream(data); DataInputStream dis = new DataInputStream(bais)) {
                String namespace = dis.readUTF();
                String name = dis.readUTF();
                return new NamespaceId(namespace, name);
            } catch (Exception e) {
                throw new RuntimeException("Failed decoding namespace ID");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/objdump/main.go

    	}
    
    	f, err := objfile.Open(flag.Arg(0))
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer f.Close()
    
    	dis, err := f.Disasm()
    	if err != nil {
    		log.Fatalf("disassemble %s: %v", flag.Arg(0), err)
    	}
    
    	switch flag.NArg() {
    	default:
    		usage()
    	case 1:
    		// disassembly of entire object
    		dis.Print(os.Stdout, symRE, 0, ^uint64(0), *printCode, *gnuAsm)
    
    	case 3:
    		// disassembly of PC range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/test/testcert/generate.sh

            -days 3650 -nodes -out cert.pem -keyout key.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=localhost/SAN=localhost" \
            -addext "subjectAltName = DNS:localhost"
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert2.pem -keyout key2.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=anotherhost" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 12 05:58:58 UTC 2020
    - 1K bytes
    - Viewed (0)
  5. docs/tr/docs/resources/index.md

    # Kaynaklar
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 25 14:57:16 UTC 2024
    - 83 bytes
    - Viewed (0)
  6. tests/integration/security/sds_ingress/util/generate_certs.sh

    subjectAltName = @alt_names
    [alt_names]
    DNS = *.example.com
    EOF
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out "${WD}/rootA.crt" -keyout "${WD}/rootA.key" \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=*.example.com" \
            -addext "subjectAltName = DNS:*.example.com"
    
    openssl genrsa -out "${WD}/clientA.key" 2048
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    //
    //	<identifier> = [<disambiguator>] <undisambiguated-identifier>
    //
    // It returns the disambiguator and the identifier.
    func (rst *rustState) identifier() (int64, string) {
    	dis := rst.disambiguator()
    	ident, _ := rst.undisambiguatedIdentifier()
    	return dis, ident
    }
    
    // disambiguator parses an optional:
    //
    //	<disambiguator> = "s" <base-62-number>
    func (rst *rustState) disambiguator() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. cmd/globals.go

    	globalCompressConfig   compress.Config
    
    	// Some standard object extensions which we strictly dis-allow for compression.
    	standardExcludeCompressExtensions = []string{".gz", ".bz2", ".rar", ".zip", ".7z", ".xz", ".mp4", ".mkv", ".mov", ".jpg", ".png", ".gif"}
    
    	// Some standard content-types which we strictly dis-allow for compression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    // Output formats.
    const (
    	Callgrind = iota
    	Comments
    	Dis
    	Dot
    	List
    	Proto
    	Raw
    	Tags
    	Text
    	TopProto
    	Traces
    	Tree
    	WebList
    )
    
    // Options are the formatting and filtering options used to generate a
    // profile.
    type Options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    var pprofCommands = commands{
    	// Commands that require no post-processing.
    	"comments": {report.Comments, nil, nil, false, "Output all profile comments", ""},
    	"disasm":   {report.Dis, nil, nil, true, "Output assembly listings annotated with samples", listHelp("disasm", true)},
    	"dot":      {report.Dot, nil, nil, false, "Outputs a graph in DOT format", reportHelp("dot", false, true)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top