Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 412 for sig1 (0.08 sec)

  1. .github/workflows/sigbuild-docker-branch.yml

                CACHEBUSTER=${{ steps.vars.outputs.DATE }}
              tags: |
                tensorflow/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
              cache-from: type=registry,ref=tensorflow/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
              cache-to: type=inline
          -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. .github/workflows/update-rbe.yml

              # See https://cloud.google.com/architecture/using-container-images#exploring_image_manifests_digests_and_tags
              echo -n "Trying to map name $1 to tag $2... "
              digest=$(curl -s --head "https://gcr.io/v2/tensorflow-sigs/build/manifests/$2" | egrep -o "sha256:[[:alnum:]]*")
              # Find the line matching the regex "sigbuild-r2.9" (with quotes) and
              # replace just the digest portion in it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 15:40:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningClosureBlockIntegrationSpec.groovy

                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    sign {
                        sign(tasks.jar)
                    }
                }
            """
    
            when:
            run "sign"
    
            then:
            executedAndNotSkipped ":signJar"
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
        }
    
        def "use kotlin action when signing"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

        def setup() {
            applyPlugin()
        }
    
        def "sign jar with defaults"() {
            given:
            useJavadocAndSourceJars()
            createJarTaskOutputFile('jar', 'sourcesJar', 'javadocJar')
    
            when:
            signing {
                sign jar
                sign sourcesJar, javadocJar
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningConfigurationsIntegrationSpec.groovy

            then:
            executedAndNotSkipped ":signArchives", ":signMeta"
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
            file("build", "libs", "sign-1.0-javadoc.jar.asc").text
            file("build", "libs", "sign-1.0-sources.jar.asc").text
        }
    
        def "configurations are signed when executing assemble task"() {
            given:
            buildFile << """
                configurations {
                    meta
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignOperationSpec.groovy

        }
        
        def "sign single file with defaults"() {
            when:
            def operation = signing.sign(input1)
            
            then:
            output1.exists()
            output1 == operation.singleSignature.file
        }
        
        def "sign single artifact with defaults"() {
            when:
            def operation = signing.sign(input1Artifact)
            
            then:
            output1.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningConfigurationsSpec.groovy

        }
    
        def "sign configuration with inherited artifacts"() {
            when:
            signing {
                sign configurations.produced
            }
    
            then:
            configurations.signatures.artifacts.size() == 3
            signProduced.signatures.every { it in configurations.signatures.artifacts }
        }
    
        def "sign configuration with custom type"() {
            def signingTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_signing.adoc

    Here's an example that configures the plugin to sign the `mavenJava` publication:
    
    .Signing a publication
    ====
    include::sample[dir="snippets/signing/maven-publish/kotlin",files="build.gradle.kts[tags=sign-publication]"]
    include::sample[dir="snippets/signing/maven-publish/groovy",files="build.gradle[tags=sign-publication]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/go/build/constraint/vers.go

    // implied by expression z, or if sign < 0, by expression !z.
    func minVersion(z Expr, sign int) int {
    	switch z := z.(type) {
    	default:
    		return -1
    	case *AndExpr:
    		op := andVersion
    		if sign < 0 {
    			op = orVersion
    		}
    		return op(minVersion(z.X, sign), minVersion(z.Y, sign))
    	case *OrExpr:
    		op := orVersion
    		if sign < 0 {
    			op = andVersion
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top