Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 203 for Generating (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    The following sections explain each of these use cases in more detail.
    
    [[sec:adding_wrapper]]
    == Adding the Gradle Wrapper
    
    Generating the Wrapper files requires an installed version of the Gradle runtime on your machine as described in <<installation.adoc#installation,Installation>>.
    Thankfully, generating the initial Wrapper files is a one-time process.
    
    Every vanilla Gradle build comes with a built-in task called `wrapper`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeClassSourceGenerator.java

                default:
                    throw new UnsupportedOperationException("Generating get call for type: " + upgradedPropertyType.asType() + " is not supported");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:11:23 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/AbstractProjectGeneratorTask.groovy

            configClosure.setDelegate(dependencyGraph)
            configClosure.setResolveStrategy(Closure.DELEGATE_ONLY)
            configClosure.call()
        }
    
        @TaskAction
        void generate() {
            println "Generating test project ${destDir.name}"
            println "  projects: ${projectCount}"
            println "  source files: ${sourceFiles}"
            println "  LOC per source file: ${linesOfCodePerSourceFile}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    func NewCertificateAuthority(config *CertConfig) (*x509.Certificate, crypto.Signer, error) {
    	key, err := NewPrivateKey(config.EncryptionAlgorithm)
    	if err != nil {
    		return nil, nil, errors.Wrap(err, "unable to create private key while generating CA certificate")
    	}
    	cert, err := NewSelfSignedCACert(config, key)
    	if err != nil {
    		return nil, nil, errors.Wrap(err, "unable to create self-signed CA certificate")
    	}
    
    	return cert, key, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. internal/kms/kms.go

    // and options for deleting keys.
    type DeleteKeyRequest struct {
    	// Name is the name of the key that gets deleted.
    	Name string
    }
    
    // GenerateKeyRequest is a structure containing fields
    // and options for generating data keys.
    type GenerateKeyRequest struct {
    	// Name is the name of the master key used to generate
    	// the data key.
    	Name string
    
    	// AssociatedData is optional data that is cryptographically
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/certs.go

    	}
    
    	// The key does NOT exist, let's generate it now
    	key, err := pkiutil.NewPrivateKey(keyType)
    	if err != nil {
    		return err
    	}
    
    	// Write .key and .pub files to disk
    	fmt.Printf("[certs] Generating %q key and public key\n", kubeadmconstants.ServiceAccountKeyBaseName)
    
    	if err := pkiutil.WriteKey(certsDir, kubeadmconstants.ServiceAccountKeyBaseName, key); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. security/pkg/pki/util/generate_cert.go

    	PKCS8Key bool
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    	// If empty, RSA is used, otherwise ECC is used.
    	ECSigAlg SupportedECSignatureAlgorithms
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    	// If empty, RSA is used, otherwise ECC is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. cmd/signature-v4-parser_test.go

    		// A valid credential is generated.
    		// Test case with invalid credential field.
    		{
    			inputV4AuthStr: signV4Algorithm +
    				strings.Join([]string{
    					// generating a valid credential field.
    					generateCredentialStr(
    						"Z7IXGOO6BZ0REAN1Q26I",
    						sampleTimeStr,
    						"us-west-1",
    						"s3",
    						"aws4_request"),
    					// Incorrect SignedHeader field.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/evented.go

    			// additional "podStatus" key and its value should be added.
    			if klog.V(6).Enabled() {
    				klog.ErrorS(err, "Evented PLEG: error generating pod status from the received event", "podUID", podID, "podStatus", status)
    			} else {
    				klog.ErrorS(err, "Evented PLEG: error generating pod status from the received event", "podUID", podID)
    			}
    		} else {
    			if klogV := klog.V(6); klogV.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    func (c *customResourceDefinitions) UpdateStatus(ctx context.Context, customResourceDefinition *v1beta1.CustomResourceDefinition, opts v1.UpdateOptions) (result *v1beta1.CustomResourceDefinition, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top