Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 641 for sig2 (0.09 sec)

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

                tensorflow/build:latest-${{ matrix.python-version }}
                tensorflow/build:${{ steps.tf-version.outputs.TF_VERSION }}-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:latest-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:${{ steps.tf-version.outputs.TF_VERSION }}-${{ matrix.python-version }}
              cache-from: type=registry,ref=tensorflow/build:latest-${{ matrix.python-version }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/crypto/rsa/pkcs1v15_test.go

    	// % echo Thu Dec 19 18:06:16 EST 2013 > /tmp/msg
    	// % openssl rsautl -sign -inkey key -out /tmp/sig -in /tmp/msg
    	//
    	// Where "key" contains the RSA private key given at the bottom of this
    	// file.
    	expectedSig := decodeBase64("pX4DR8azytjdQ1rtUiC040FjkepuQut5q2ZFX1pTjBrOVKNjgsCDyiJDGZTCNoh9qpXYbhl7iEym30BWWwuiZg==")
    
    	sig, err := SignPKCS1v15(nil, rsaPrivateKey, crypto.Hash(0), msg)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. .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)
  4. 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)
  5. .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)
  6. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		// generate test functions
    		for _, r := range values {
    			// TODO: could also test constant on lhs.
    			sig := sigString(r)
    			for _, op := range operators {
    				// no need for go:noinline because the function is called indirectly
    				fmt.Fprintf(w, "func %v_%v_%v(x %v) bool { return x %v %v; }\n", op.name, sig, typ, typ, op.op, r.String())
    			}
    		}
    
    		// generate a table of test cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top