Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 837 for sig1 (0.07 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningDistributionsIntegrationSpec.groovy

            when:
            run "buildSignatures"
    
            then:
            executedAndNotSkipped ":signArchives"
    
            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
            file("build", "distributions", "main-1.0.zip.asc").text
            file("build", "distributions", "main-1.0.tar.asc").text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa_s390x.s

    	BLT  error       // condition code of 1 indicates a failure
    
    success:
    	MOVD $0, errn+16(FP) // return 0 - sign/verify was successful
    	RET
    
    error:
    	MOVD $1, errn+16(FP) // return 1 - sign/verify failed
    	RET
    
    retry:
    	MOVD $2, errn+16(FP) // return 2 - sign/verify was unsuccessful -- if sign, retry with new RN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 891 bytes
    - Viewed (0)
  3. src/math/big/intconv.go

    		return
    	}
    
    	if x == nil {
    		fmt.Fprint(s, "<nil>")
    		return
    	}
    
    	// determine sign character
    	sign := ""
    	switch {
    	case x.neg:
    		sign = "-"
    	case s.Flag('+'): // supersedes ' ' when both specified
    		sign = "+"
    	case s.Flag(' '):
    		sign = " "
    	}
    
    	// determine prefix characters for indicating output base
    	prefix := ""
    	if s.Flag('#') {
    		switch ch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. android/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)
  5. pkg/cmd/cmd.go

    func WaitSignal(stop chan struct{}) {
    	sigs := make(chan os.Signal, 1)
    	signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
    	<-sigs
    	close(stop)
    	_ = log.Sync()
    }
    
    // WaitSignalFunc awaits for SIGINT or SIGTERM and calls the cancel function
    func WaitSignalFunc(cancel func()) {
    	sigs := make(chan os.Signal, 1)
    	signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
    	<-sigs
    	cancel()
    	_ = log.Sync()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/configurations/groovy/build.gradle

    project['signing.keyId'] = "24875D73"
    project['signing.password'] = "gradle"
    project['signing.secretKeyRingFile'] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-runtime-elements[]
    signing {
        sign configurations.runtimeElements
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 484 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top