Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for opensource2 (0.15 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

        repositories {
            maven { url "${mavenRepo.uri}" }
        }
        dependencies {
            api("org.gradle:pom-excludes:0.1"){
               exclude group: "org.opensource1", module: "dep1"
               exclude group: "org.opensource2"
               exclude module: "dep2"
            }
        }
        publishing {
            repositories {
                maven { url "${mavenRepo.uri}" }
            }
            publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##elseif ( $license.name == "BSD-2-Clause" || $license.name == "The BSD 2-Clause License"
                        || $license.url.contains("www.opensource.org/licenses/bsd-license") )
    #*      *##set ( $spdx = 'BSD-2-Clause' )
    #*    *##elseif ( $license.name == "BSD-3-Clause"
                        || $license.url.contains("opensource.org/licenses/BSD-3-Clause") )
    #*      *##set ( $spdx = 'BSD-3-Clause' )
    #*    *##elseif ( $license.name == "Public Domain" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    )
    
    // if the sftp parameter --trusted-user-ca-key is set, then
    // the final form of the key file will be set as this variable.
    var caPublicKey ssh.PublicKey
    
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=46
    // preferredKexAlgos specifies the default preference for key-exchange
    // algorithms in preference order. The diffie-hellman-group16-sha512 algorithm
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. README.md

    [![test status](https://github.com/go-gorm/gorm/workflows/tests/badge.svg?branch=master "test status")](https://github.com/go-gorm/gorm/actions)
    [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
    [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-blue?logo=go&logoColor=white)](https://pkg.go.dev/gorm.io/gorm?tab=doc)
    
    ## Overview
    
    * Full-Featured ORM
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. internal/ringbuffer/README.md

    # ringbuffer
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/revived_types/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    # This package contains classes corresponding to Revived SavedObjectGraph types
    # used by SavedModel. See https://cs.opensource.google/tensorflow/tensorflow/+/c575e2ba93c442121d98d3f125d83fed1339924d:tensorflow/core/protobuf/saved_object_graph.proto;l=56-62
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 05:09:48 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top