Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for keynote (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/relnote/relnote_test.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"flag"
    	"internal/testenv"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"testing"
    
    	"golang.org/x/build/relnote"
    )
    
    var flagCheck = flag.Bool("check", false, "run API release note checks")
    
    // Check that each file in api/next has corresponding release note files in doc/next.
    func TestCheckAPIFragments(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 16:31:53 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/groovy/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningWithGpgCmdIntegrationSpec.groovy

                    sign(jar)
                }
            """
    
            // Remove the 'signing.gnupg.keyName' entry from the gradle.properties file, so the default key is picked up
            Properties properties = new Properties()
            properties.load(propertiesFile.newInputStream())
            properties.remove("signing.gnupg.keyName")
            properties.store(propertiesFile.newOutputStream(), "")
    
            when:
            run "signJar", "-i"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top