Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 484 for Binary (0.1 sec)

  1. src/runtime/rt0_linux_ppc64le.s

    TEXT _main<>(SB),NOSPLIT,$-8
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// The TLS pointer should be initialized to 0.
    	//
    	// In an ELFv2 compliant dynamically linked binary, R3 contains argc,
    	// R4 contains argv, R5 contains envp, R6 contains auxv, and R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. LICENSES/vendor/gopkg.in/evanphx/json-patch.v4/LICENSE

    Copyright (c) 2014, Evan Phoenix
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without 
    modification, are permitted provided that the following conditions are met:
    
    * Redistributions of source code must retain the above copyright notice, this
      list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    	case ELFCLASS64:
    		// ok
    	default:
    		return nil, &FormatError{0, "unknown ELF class", f.Class}
    	}
    
    	f.Data = Data(ident[EI_DATA])
    	var bo binary.ByteOrder
    	switch f.Data {
    	case ELFDATA2LSB:
    		bo = binary.LittleEndian
    	case ELFDATA2MSB:
    		bo = binary.BigEndian
    	default:
    		return nil, &FormatError{0, "unknown ELF data encoding", f.Data}
    	}
    	f.ByteOrder = bo
    
    	f.Version = Version(ident[EI_VERSION])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/BSD-3-Clause.txt

    Copyright <YEAR> <COPYRIGHT HOLDER>
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     *
     * [DeclarationsInPackageProvider] first tries the [FirSymbolNamesProvider] of the analysis session's underlying FIR session, because it
     * provides symbol names from binary libraries in Standalone mode, which the Standalone declaration provider does not contain (to avoid
     * stub-indexing binary libraries). And in general, querying the symbol names provider might be faster since its sets are cached, which is
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. LICENSES/vendor/github.com/antlr4-go/antlr/v4/LICENSE

    Copyright (c) 2012-2023 The ANTLR Project. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 17:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/BSD-2-Clause.txt

    Copyright <YEAR> <COPYRIGHT HOLDER>
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/json_to_flatbuffer.cc

      const char* schema_path = argv[1];
      const char* json_path = argv[2];
      std::string schema;
      std::string json;
    
      const bool status =
          flatbuffers::LoadFile(schema_path, /*binary=*/false, &schema) &&
          flatbuffers::LoadFile(json_path, /*binary=*/false, &json);
      if (!status) {
        std::cerr << "couldn't load files!\n";
        return 1;
      }
    
      // parse schema first, so we can use it to parse the data after
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/go/build/deps_test.go

    	< internal/trace/event/go122;
    
    	FMT, io, internal/trace/event/go122
    	< internal/trace/version;
    
    	FMT, encoding/binary, internal/trace/version
    	< internal/trace/raw;
    
    	FMT, internal/trace/event, internal/trace/version, io, sort, encoding/binary
    	< internal/trace/internal/oldtrace;
    
    	FMT, encoding/binary, internal/trace/version, internal/trace/internal/oldtrace, container/heap, math/rand
    	< internal/trace;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	Uuid [16]byte
    }
    
    type loadCmdReader struct {
    	offset, next int64
    	f            *os.File
    	order        binary.ByteOrder
    }
    
    func (r *loadCmdReader) Next() (loadCmd, error) {
    	var cmd loadCmd
    
    	r.offset = r.next
    	if _, err := r.f.Seek(r.offset, 0); err != nil {
    		return cmd, err
    	}
    	if err := binary.Read(r.f, r.order, &cmd); err != nil {
    		return cmd, err
    	}
    	r.next = r.offset + int64(cmd.Len)
    	return cmd, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top