Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for openpgp (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.ivyservice.ivyresolve.verification.report;
    
    import org.apache.commons.lang.StringEscapeUtils;
    import org.bouncycastle.openpgp.PGPPublicKey;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.verification.RepositoryAwareVerificationFailure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.signing.signatory.pgp.PgpSignatoryFactory.createSignatory(java.lang.String, org.bouncycastle.openpgp.PGPSecretKey, java.lang.String)> has arguments/return type org.bouncycastle.openpgp.PGPSecretKey that is not Gradle public API or primitive or built-in JDK...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/ajax/js/test.js

    $(document).ready(function(){
      openPage("home.html");
      setEventHandlers();
    });
    
    function setEventHandlers(){
      $('#info').click(function(){ openPage("info.html") } );
      $('#home').click(function(){ openPage("home.html") } );
    }
    
    function openPage(page){
      $('#content').load(page);
      location.hash = page;
    }
    
    function addFooter(msg){
      $('#footer').html($('#footer').html() + "<p>FOOTER: " + msg + "</p>");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 410 bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/ajax/index.html

                <li><a href="javascript:void(0)" onclick="openPage('menu-1-2.html')">Menu 1-2</a></li>
            </ul>
            <h2>Menu 2</h2>
            <ul class="test">
                <li><a href="javascript:void(0)" onclick="openPage('menu-2-1.html')">Menu 2-1</a></li>
                <li><a href="javascript:void(0)" onclick="openPage('menu-2-2.html')">Menu 2-2</a></li>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningIntegrationSpec.groovy

    import org.junit.Rule
    
    import java.nio.file.Path
    
    import static org.gradle.util.internal.TextUtil.escapeString
    
    abstract class SigningIntegrationSpec extends AbstractIntegrationSpec {
        enum SignMethod {
            OPEN_GPG,
            GPG_CMD
        }
    
        @Rule
        public final TestResources resources = new TestResources(temporaryFolder, "keys")
    
        Path gpgHomeSymlink
    
        final String artifactId = "sign"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/ReadWriteTest.java

                  SmbNamedPipe t = new SmbNamedPipe(getFifoPipeUrl(), SmbPipeResource.PIPE_TYPE_RDONLY, withTestNTLMCredentials(getContext())) ) {
                try ( SmbPipeHandle sp = s.openPipe();
                      SmbPipeHandle tp = t.openPipe() ) {
                    try ( OutputStream os = sp.getOutput() ) {
                        writeRandom(1024, 1024, os);
                    }
                    try ( InputStream is = tp.getInput() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/testdata/checkdwarf/main.go

    		return nil
    	}
    	return exe
    }
    
    func openPE(path string) dwarfer {
    	exe, err := pe.Open(path)
    	if err != nil {
    		return nil
    	}
    	return exe
    }
    
    func main() {
    	if len(os.Args) != 3 {
    		usage()
    	}
    
    	exePath := os.Args[1]
    	dieSuffix := os.Args[2]
    
    	var exe dwarfer
    
    	for _, openfn := range []func(string) dwarfer{openMacho, openPE, openElf} {
    		exe = openfn(exePath)
    		if exe != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

    import org.gradle.test.preconditions.SigningTestPreconditions
    
    import static org.gradle.plugins.signing.SigningIntegrationSpec.SignMethod.GPG_CMD
    import static org.gradle.plugins.signing.SigningIntegrationSpec.SignMethod.OPEN_GPG
    
    class SigningTasksIntegrationSpec extends SigningIntegrationSpec {
    
        def "sign jar with default signatory"() {
            given:
            buildFile << """
                ${keyInfo.addAsPropertiesScript()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbPipeResource.java

         * @return the type of the pipe
         */
        int getPipeType ();
    
    
        /**
         * Create a pipe handle
         * 
         * @return pipe handle, needs to be closed when finished
         */
        SmbPipeHandle openPipe ();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

            super(tc, DcerpcHandle.parseBinding(url));
            this.pipe = new SmbNamedPipe(makePipeUrl(), pipeFlags, unshared, tc);
            this.handle = this.pipe.openPipe().unwrap(SmbPipeHandleInternal.class);
        }
    
    
        private String makePipeUrl () {
            DcerpcBinding binding = getBinding();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jan 26 11:51:07 UTC 2020
    - 5.2K bytes
    - Viewed (0)
Back to top