Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 944 for sig2 (0.17 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningPlugin.java

    import org.gradle.api.plugins.BasePlugin;
    
    /**
     * Adds the ability to digitally sign files and artifacts.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/signing_plugin.html">Signing plugin reference</a>
     */
    public abstract class SigningPlugin implements Plugin<Project> {
    
        /**
         * <p>Adds the ability to digitally sign files and artifacts.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/crypto/elliptic/params.go

    func zForAffine(x, y *big.Int) *big.Int {
    	z := new(big.Int)
    	if x.Sign() != 0 || y.Sign() != 0 {
    		z.SetInt64(1)
    	}
    	return z
    }
    
    // affineFromJacobian reverses the Jacobian transform. See the comment at the
    // top of the file. If the point is ∞ it returns 0, 0.
    func (curve *CurveParams) affineFromJacobian(x, y, z *big.Int) (xOut, yOut *big.Int) {
    	if z.Sign() == 0 {
    		return new(big.Int), new(big.Int)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/math/sin.go

    	}
    
    	if j > 3 {
    		j -= 4
    		sign = !sign
    	}
    	if j > 1 {
    		sign = !sign
    	}
    
    	zz := z * z
    	if j == 1 || j == 2 {
    		y = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5])
    	} else {
    		y = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5])
    	}
    	if sign {
    		y = -y
    	}
    	return y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

        }
    
        TestFile pom(String name = "sign-1.0") {
            m2RepoFile("${name}.pom")
        }
    
        TestFile pomSignature(String name = "sign-1.0") {
            m2RepoFile("${name}.pom.asc")
        }
    
        TestFile module(String name = "sign-1.0") {
            m2RepoFile("${name}.module")
        }
    
        TestFile moduleSignature(String name = "sign-1.0") {
            m2RepoFile("${name}.module.asc")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/configurations/kotlin/build.gradle.kts

    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-runtime-elements[]
    signing {
        sign(configurations.runtimeElements.get())
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 479 bytes
    - Viewed (0)
  6. hack/update-kustomize.sh

    else
      echo -e "\n${color_red:?}Update aborted${color_norm:?}"
      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/api "$LATEST_API"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kustomize/v5 "$LATEST_KUSTOMIZE"
    
    ./hack/update-vendor.sh
    ./hack/update-internal-modules.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/math/unsafe.go

    // Float32bits returns the IEEE 754 binary representation of f,
    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
    
    // Float32frombits returns the floating-point number corresponding
    // to the IEEE 754 binary representation b, with the sign bit of b
    // and the result in the same bit position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/ToDoubleRounder.java

       * or the least double greater than or equal to the precise value of x.
       */
      abstract double roundToDoubleArbitrarily(X x);
    
      /** Returns the sign of x: either -1, 0, or 1. */
      abstract int sign(X x);
    
      /** Returns d's value as an X, rounded with the specified mode. */
      abstract X toX(double d, RoundingMode mode);
    
      /** Returns a - b, guaranteed that both arguments are nonnegative. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningPublicationsSpec.groovy

            signing {
                signTasks = sign publishing.publications
            }
    
            when:
            publishing.publications.clear()
    
            then:
            !tasks.findByName('signMavenPublication').enabled
    
            and:
            signTasks.isEmpty()
        }
    
        def "sign task has description"() {
            when:
            signing {
                sign publishing.publications
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/math/big/intmarsh_test.go

    }
    
    func TestIntGobEncoding(t *testing.T) {
    	var medium bytes.Buffer
    	enc := gob.NewEncoder(&medium)
    	dec := gob.NewDecoder(&medium)
    	for _, test := range encodingTests {
    		for _, sign := range []string{"", "+", "-"} {
    			x := sign + test
    			medium.Reset() // empty buffer for each test case (in case of failures)
    			var tx Int
    			tx.SetString(x, 10)
    			if err := enc.Encode(&tx); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 23:27:14 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top