Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for keynote (0.3 sec)

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

    				"application/vnd.anser-web-funds-transfer-initiation",
    				"application/vnd.antix.game-component",
    				"application/vnd.apple.installer+xml",
    				"application/vnd.apple.iwork",
    				"application/vnd.apple.keynote",
    				"application/vnd.apple.pages",
    				"application/vnd.apple.numbers",
    				"application/x-tika-iworks-protected",
    				"application/vnd.arastra.swi",
    				"application/vnd.audiograph",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // license that can be found in the LICENSE file.
    
    // Package relnote supports working with release notes.
    //
    // Its main feature is the ability to merge Markdown fragments into a single
    // document. (See [Merge].)
    //
    // This package has minimal imports, so that it can be vendored into the
    // main go repo.
    package relnote
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/main/webapp/js/suggestor.js

        $(this).keydown(function(e) {
          if (
            (e.keyCode >= 48 && e.keyCode <= 90) ||
            (e.keyCode >= 96 && e.keyCode <= 105) ||
            (e.keyCode >= 186 && e.keyCode <= 226) ||
            e.keyCode === 8 ||
            e.keyCode === 32 ||
            e.keyCode === 46
          ) {
            started = true;
            isFocusList = false;
          } else if (e.keyCode === 38) {
            if ($boxElement.css("display") !== "none") {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. test-site/public/javascripts/suggestor.js

            $(this).keydown( function(e){
                if( ((e.keyCode >= 48) && (e.keyCode <= 90))
                    || ((e.keyCode >= 96) && (e.keyCode <= 105))
                    || ((e.keyCode >= 186) && (e.keyCode <= 226))
                    || e.keyCode == 8
                    || e.keyCode == 32
                    || e.keyCode == 46
                ) {
                    started = true;
                    isFocusList = false;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

            }
            if (optionsFile != null) {
                args.add("--options");
                args.add(optionsFile.getAbsolutePath());
            }
            if (keyName != null) {
                args.add("--local-user");
                args.add(keyName);
            }
            if (passphrase != null) {
                if (useLegacyGpg) {
                    args.add("--no-use-agent");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pkiutil/testing/testing.go

    		rsa = 0
    		ecdsa = 0
    		lastTest = thisTest
    	}
    
    	keyName := ""
    	switch keyType {
    	case kubeadmapi.EncryptionAlgorithmECDSAP256:
    		ecdsa++
    		keyName = fmt.Sprintf("%d.ecdsa", ecdsa)
    	default:
    		rsa++
    		keyName = fmt.Sprintf("%d.rsa", rsa)
    	}
    
    	if len(keyName) > 0 {
    		privKey, err := pkiutil.TryLoadKeyFromDisk(fixtureDir, keyName)
    		if err == nil {
    			return privKey, nil
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatoryFactory.java

            Object optionsFile = project.findProperty(buildQualifiedProperty(propertyPrefix, "optionsFile"));
            Object keyName = project.findProperty(buildQualifiedProperty(propertyPrefix, "keyName"));
            Object passphrase = project.findProperty(buildQualifiedProperty(propertyPrefix, "passphrase"));
            GnupgSettings settings = new GnupgSettings();
            if (executable != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

            this.optionsFile = optionsFile;
        }
    
        public File getOptionsFile() {
            return optionsFile;
        }
    
        public void setKeyName(String keyName) {
            this.keyName = keyName;
        }
    
        public String getKeyName() {
            return keyName;
        }
    
        public void setPassphrase(String passphrase) {
            this.passphrase = passphrase;
        }
    
        public String getPassphrase() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

            expect(httpStub)
        }
    
        def stubMultipartUpload(String bucketName, String keyName, File file) {
            stubInitiateMultipartUpload(bucketName, keyName)
            stubUploadPart(bucketName, keyName, file)
            stubCompleteMultipartUpload(bucketName, keyName, file)
        }
    
        def stubInitiateMultipartUpload(String bucketName, String keyName) {
            def xml = new StreamingMarkupBuilder().bind {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. doc/README.md

    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    As a release cycle nears completion, run `relnote todo` to get a list of
    unfinished release note work.
    
    To prepare the release notes for a release, run `relnote generate`.
    That will merge the `.md` files in `next` into a single file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top