Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for genrsa (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	"time"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    const (
    
    	/*
    
    	   > rootCACert
    
    	   openssl genrsa -out root.key 1024 && \
    	   openssl rsa -in ./root.key -outform PEM -pubout -out ./root.pub && \
    	   CONFIG="[ v3_req ]\n" && \
    	   CONFIG="${CONFIG}subjectKeyIdentifier=hash\n" && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. hack/make-rules/test-cmd.sh

    SERVICE_ACCOUNT_KEY=${SERVICE_ACCOUNT_KEY:-/tmp/kube-serviceaccount.key}
    # Generate ServiceAccount key if needed
    if [[ ! -f "${SERVICE_ACCOUNT_KEY}" ]]; then
      mkdir -p "$(dirname "${SERVICE_ACCOUNT_KEY}")"
      openssl genrsa -out "${SERVICE_ACCOUNT_KEY}" 2048 2>/dev/null
    fi
    
    # Runs kube-apiserver
    #
    # Exports:
    #   APISERVER_PID
    function run_kube_apiserver() {
      kube::log::status "Building kube-apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

        # Generate ServiceAccount key if needed
        if [[ ! -f "${SERVICE_ACCOUNT_KEY}" ]]; then
          mkdir -p "$(dirname "${SERVICE_ACCOUNT_KEY}")"
          openssl genrsa -out "${SERVICE_ACCOUNT_KEY}" 2048 2>/dev/null
        fi
    }
    
    function generate_certs {
        # Create CA signers
        if [[ "${ENABLE_SINGLE_CA_SIGNER:-}" = true ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         * The services are closed when the Gradle user home directory changes.
         *
         * <p>{@link Global} and parent scope services are visible to {@link UserHome} scope services, but not vice versa.</p>
         */
        interface UserHome extends Global {}
    
        /**
         * These services are reused across build sessions.
         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

         *
         * <p>Global services are visible to these shared services, but not vice versa.</p>
         *
         * @see Scope.UserHome
         */
        void registerGradleUserHomeServices(ServiceRegistration registration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. security/pkg/pki/util/crypto_test.go

    AAOBgQCw9dL6xRQSjdYKt7exqlTJliuNEhw/xDVGlNUbDZnT0uL3zXI//Z8tsejn
    8IFzrDtm0Z2j4BmBzNMvYBKL/4JPZ8DFywOyQqTYnGtHIkt41CNjGfqJRk8pIqVC
    hKldzzeCKNgztEvsUKVqltFZ3ZYnkj/8/Cg8zUtTkOhHOjvuig==
    -----END CERTIFICATE REQUEST-----`
    
    	keyRSA = `
    -----BEGIN RSA PRIVATE KEY-----
    MIIEowIBAAKCAQEAw/OBAAhDu58f0HkJlJBtb42Jp9EECC+WYEOVEdM/Y9fqcoSF
    b19NxztVqy0r/aW8pCO3DZ2EYIA3Y9pYasDfhsIl9lhQkvEwk/05iL6oNrZ45Bgs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/compile.go

    		}
    		return ""
    	}
    	if phase == "genssa" {
    		switch flag {
    		case "dump":
    			GenssaDump[valString] = true
    		default:
    			return fmt.Sprintf("Did not find a flag matching %s in -d=ssa/%s debug option (expected ssa/genssa/dump=function_name)", flag, phase)
    		}
    		return ""
    	}
    
    	underphase := strings.Replace(phase, "_", " ", -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScopeLike.kt

        public fun getPossibleClassifierNames(): Set<Name>
    
        /**
         * return true if the scope may contain name, false otherwise.
         *
         * In other words `(mayContainName(name) == false) => (name !in scope)`; vice versa is not always true
         */
        public fun mayContainName(name: Name): Boolean = withValidityAssertion {
            name in getPossibleCallableNames() || name in getPossibleClassifierNames()
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/go/types/object_test.go

    		name  *TypeName
    		alias bool
    	}{
    		{NewTypeName(nopos, nil, "t0", nil), false}, // no type yet
    		{NewTypeName(nopos, pkg, "t0", nil), false}, // no type yet
    		{t1, false}, // type name refers to named type and vice versa
    		{NewTypeName(nopos, nil, "t2", NewInterfaceType(nil, nil)), true}, // type name refers to unnamed type
    		{NewTypeName(nopos, pkg, "t3", n1), true},                         // type name refers to named type with different type name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    		largeStackFramesMu.Unlock()
    		return
    	}
    	pp := objw.NewProgs(fn, worker)
    	defer pp.Free()
    	genssa(f, pp)
    	// Check frame size again.
    	// The check above included only the space needed for local variables.
    	// After genssa, the space needed includes local variables and the callee arg region.
    	// We must do this check prior to calling pp.Flush.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top