Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 664 for msign (0.05 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.ms-word.template.macroenabled.12",
    				"application/vnd.ms-works",
    				"application/vnd.ms-wpl",
    				"application/vnd.ms-xpsdocument",
    				"application/vnd.mseq",
    				"application/vnd.msign",
    				"application/vnd.multiad.creator",
    				"application/vnd.multiad.creator.cif",
    				"application/vnd.music-niff",
    				"application/vnd.musician",
    				"application/vnd.muvee.style",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

        }
    
        /**
         * Configures the task to sign each of the given files
         */
        public void sign(File... files) {
            addSignatures(null, files);
        }
    
        /**
         * Configures the task to sign each of the given artifacts, using the given classifier as the classifier for the resultant signature publish artifact.
         */
        public void sign(String classifier, File... files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. src/crypto/ed25519/testdata/sign.input.gz

    sign.input 9d61b19deffd5a60ba84:d75a980182b10ab7d54b::e5564300c360ac729086: 4ccd089b28ff96da9db6:3d4017c3e843895a92b7:72:92a009a9f0d4cab8720e: c5aa8df43f9f837bedb7:fc51cd8e6218a1a38da4:af82:6291d657deec24024827: 0d4a05b07352a5436e18:e61a185bcef2613a6c7c:cbc77b:d9868d52c2bebce5f3fa: 6df9340c138cc188b5fe:c0dac102c4533186e25d:5f4c8989:124f6fc6b0d100842769: b780381a65edf8b78f69:e253af0766804b869bb1:18b6bec097:b2fc46ad47af464478c1: 78ae9effe6f245e924a7:fbcfbfa40505d7f2be44:89010d855972:6ed629fc1d9ce9e14687:...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 23:23:45 UTC 2019
    - 49.2K bytes
    - Viewed (0)
  4. src/strconv/atof.go

    // The character case is ignored.
    func special(s string) (f float64, n int, ok bool) {
    	if len(s) == 0 {
    		return 0, 0, false
    	}
    	sign := 1
    	nsign := 0
    	switch s[0] {
    	case '+', '-':
    		if s[0] == '-' {
    			sign = -1
    		}
    		nsign = 1
    		s = s[1:]
    		fallthrough
    	case 'i', 'I':
    		n := commonPrefixLenIgnoreCase(s, "infinity")
    		// Anything longer than "inf" is ok, but if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.signing.Sign.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>signatory</td>
                </tr>
                <tr>
                    <td>sign</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 650 bytes
    - Viewed (0)
  6. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                    }
                }
                def sign = project.getProperty("sign")
                if (sign == 'skip') {
                    tasks.withType(Sign)*.onlyIf { false }
                } else {
                    tasks.withType(Sign)*.enabled = Boolean.parseBoolean(sign)
                }
    
            """
    
            when:
            succeeds "publishIvyPublicationToIvyRepository", "-Psign=true"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            return "sign" + capitalize(publication.getName()) + "Publication";
        }
    
        private Sign createSignTaskFor(CharSequence name, Action<Sign> taskConfiguration) {
            final String signTaskName = "sign" + capitalize(name);
            if (project.getTasks().getNames().contains(signTaskName)) {
                return project.getTasks().named(signTaskName, Sign.class).get();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  8. 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)
  9. src/math/bits.go

    	return f != f
    }
    
    // IsInf reports whether f is an infinity, according to sign.
    // If sign > 0, IsInf reports whether f is positive infinity.
    // If sign < 0, IsInf reports whether f is negative infinity.
    // If sign == 0, IsInf reports whether f is either infinity.
    func IsInf(f float64, sign int) bool {
    	// Test for infinity by comparing against maximum float.
    	// To avoid the floating-point hardware, could use:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top