Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for opensource2 (0.2 sec)

  1. docs/en/data/sponsors.yml

        title: Take code reviews from hours to minutes
        img: https://fastapi.tiangolo.com/img/sponsors/codacy.png
    bronze:
      - url: https://www.exoflare.com/open-source/?utm_source=FastAPI&utm_campaign=open_source
        title: Biosecurity risk assessments made easy.
        img: https://fastapi.tiangolo.com/img/sponsors/exoflare.png
      - url: https://testdriven.io/courses/tdd-fastapi/
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. LICENSE

    Eclipse Public License 1.0
    https://opensource.org/licenses/EPL-1.0
    
    junit:junit
    org.sonatype.aether:aether-api
    org.sonatype.aether:aether-connector-wagon
    org.sonatype.aether:aether-impl
    org.sonatype.aether:aether-spi
    org.sonatype.aether:aether-util
    
    ------------------------------------------------------------------------------
    3-Clause BSD
    https://opensource.org/licenses/BSD-3-Clause
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/internal/codesign/codesign.go

    // points to the data.
    
    const (
    	pageSizeBits = 12
    	pageSize     = 1 << pageSizeBits
    )
    
    const LC_CODE_SIGNATURE = 0x1d
    
    // Constants and struct layouts are from
    // https://opensource.apple.com/source/xnu/xnu-4903.270.47/osfmk/kern/cs_blobs.h
    
    const (
    	CSMAGIC_REQUIREMENT        = 0xfade0c00 // single Requirement blob
    	CSMAGIC_REQUIREMENTS       = 0xfade0c01 // Requirements vector (internal requirements)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/crypto/x509/internal/macos/security.go

    	"internal/abi"
    	"strconv"
    	"unsafe"
    )
    
    // Security.framework linker flags for the external linker. See Issue 42459.
    //
    //go:cgo_ldflag "-framework"
    //go:cgo_ldflag "Security"
    
    // Based on https://opensource.apple.com/source/Security/Security-59306.41.2/base/Security.h
    
    type SecTrustSettingsResult int32
    
    const (
    	SecTrustSettingsResultInvalid SecTrustSettingsResult = iota
    	SecTrustSettingsResultTrustRoot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. README.md

    *   [TensorFlow White Papers](https://www.tensorflow.org/about/bib)
    *   [TensorBoard Visualization Toolkit](https://github.com/tensorflow/tensorboard)
    *   [TensorFlow Code Search](https://cs.opensource.google/tensorflow/tensorflow)
    
    Learn more about the
    [TensorFlow community](https://www.tensorflow.org/community) and how to
    [contribute](https://www.tensorflow.org/community/contribute).
    
    ## Courses
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// for more context. Also useful to refer to the Apple dynamic
    	// loader source, specifically ImageLoaderMachO::sniffLoadCommands
    	// in ImageLoaderMachO.cpp (various versions can be found online, see
    	// https://opensource.apple.com/source/dyld/dyld-519.2.2/src/ImageLoaderMachO.cpp.auto.html
    	// as one example).
    	seg.Addr = 0
    	seg.Memsz = 0
    	seg.Prot = 0
    
    	if err := r.WriteAt(0, &seg); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor.h

      SE_EVENT_UNKNOWN,
      SE_EVENT_ERROR,
      SE_EVENT_PENDING,
      SE_EVENT_COMPLETE,
    } SE_EventStatus;
    
    // Memory allocation information.
    // This matches DeviceMemoryBase defined here:
    // https://cs.opensource.google/tensorflow/tensorflow/+/refs/tags/v2.3.0:tensorflow/compiler/xla/stream_executor/device_memory.h;l=57
    typedef struct SP_DeviceMemoryBase {
      size_t struct_size;
      void* ext;  // Reserved for future use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/js/popper-1.12.9.min.js

    /*
     Copyright (C) Federico Zivolo 2017
     Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/popper.min.js

    /*
     Copyright (C) Federico Zivolo 2019
     Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT).
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 20.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho.go

    }
    
    // Generate data for the dynamic linker, used in LC_DYLD_INFO_ONLY load command.
    // See mach-o/loader.h, struct dyld_info_command, for the encoding.
    // e.g. https://opensource.apple.com/source/xnu/xnu-6153.81.5/EXTERNAL_HEADERS/mach-o/loader.h
    func machoDyldInfo(ctxt *Link) {
    	ldr := ctxt.loader
    	rebase := ldr.CreateSymForUpdate(".machorebase", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top