Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 641 for sig2 (0.06 sec)

  1. src/crypto/internal/edwards25519/edwards25519_test.go

    	}
    	tests := []test{
    		// Points with x = 0 and the sign bit set. With x = 0 the curve equation
    		// gives y² = 1, so y = ±1. 1 has two valid encodings.
    		{
    			"y=1,sign-",
    			"0100000000000000000000000000000000000000000000000000000000000080",
    			"0100000000000000000000000000000000000000000000000000000000000000",
    		},
    		{
    			"y=p+1,sign-",
    			"eeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/runtime/float.go

    //
    //	abs(±Inf) = +Inf
    //	abs(NaN) = NaN
    func abs(x float64) float64 {
    	const sign = 1 << 63
    	return float64frombits(float64bits(x) &^ sign)
    }
    
    // copysign returns a value with the magnitude
    // of x and the sign of y.
    func copysign(x, y float64) float64 {
    	const sign = 1 << 63
    	return float64frombits(float64bits(x)&^sign | float64bits(y)&sign)
    }
    
    // float64bits returns the IEEE 754 binary representation of f.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/math/asinh.go

    //
    //
    // asinh(x)
    // Method :
    //	Based on
    //	        asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
    //	we have
    //	asinh(x) := x  if  1+x*x=1,
    //	         := sign(x)*(log(x)+ln2) for large |x|, else
    //	         := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
    //	         := sign(x)*log1p(|x| + x**2/(1 + sqrt(1+x**2)))
    //
    
    // Asinh returns the inverse hyperbolic sine of x.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:02:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/cc/saved_model/util_test.cc

    }
    
    class GetInputValuesTest : public ::testing::Test {
     public:
      GetInputValuesTest() {
        (*sig_.mutable_inputs())["x"].set_name("feed_x");
        (*sig_.mutable_inputs())["y"].set_name("feed_y");
    
        (*sig_.mutable_defaults())["x"] = CreateTensorProto(1);
        (*sig_.mutable_defaults())["y"] = CreateTensorProto("A");
    
        request_["x"] = CreateTensorProto(2);
        request_["y"] = CreateTensorProto("B");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/tasks/groovy/build.gradle

    project.ext['signing.password'] = 'gradle'
    project.ext['signing.secretKeyRingFile'] = file('secKeyRingFile.gpg').absolutePath
    
    // tag::sign-task[]
    tasks.register('stuffZip', Zip) {
        archiveBaseName = 'stuff'
        from 'src/stuff'
    }
    
    signing {
        sign stuffZip
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 405 bytes
    - Viewed (0)
  9. tests/integration/ambient/gateway_conformance_test.go

    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	gwfeatures "sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. tests/integration/pilot/gateway_conformance_test.go

    	k8ssets "k8s.io/apimachinery/pkg/util/sets" //nolint: depguard
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	v1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance"
    	confv1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
    	"sigs.k8s.io/gateway-api/conformance/tests"
    	"sigs.k8s.io/gateway-api/conformance/utils/suite"
    	"sigs.k8s.io/gateway-api/pkg/features"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top