Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 447 for Generating (0.26 sec)

  1. tools/certs/Makefile.k8s.mk

    %-cacerts: %/cert-chain.pem
    	@echo "done"
    
    %/cert-chain.pem: %/ca-cert.pem k8s-root-cert.pem
    	@echo "generating $@"
    	@cat $^ > $@
    	@echo "Intermediate certs stored in $(dir $<)"
    	@cp k8s-root-cert.pem $(dir $<)/root-cert.pem
    
    %/ca-cert.pem: %/cluster-ca.csr k8s-root-key.pem k8s-root-cert.pem
    	@echo "generating $@"
    	@openssl x509 -req -days $(INTERMEDIATE_DAYS) \
    		-CA k8s-root-cert.pem -CAkey k8s-root-key.pem -CAcreateserial\
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/TemplateBasedScriptGenerator.java

    package org.gradle.jvm.application.scripts;
    
    import org.gradle.api.resources.TextResource;
    
    /**
     * Interface for generating scripts with the provided details based on a provided template.
     */
    public interface TemplateBasedScriptGenerator extends ScriptGenerator {
    
        /**
         * Sets the template text resource used for generating script.
         *
         * @param template Template text resource
         */
        void setTemplate(TextResource template);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java

    import org.gradle.api.provider.Property;
    
    import java.net.URI;
    
    /**
     * Configuration for generating Javadocs
     */
    public abstract class Javadocs {
        /**
         * Link to Java API to use when generating Javadoc
         */
        public abstract Property<URI> getJavaApi();
    
        /**
         * Link to Groovy API to use when generating Javadoc
         */
        public abstract Property<URI> getGroovyApi();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 17 08:08:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/flags.go

    	vmDeploymentTemplateFile = "vm_deployment.yaml"
    )
    
    func init() {
    	flag.StringVar(&serviceTemplateFile, "istio.test.echo.kube.template.service", serviceTemplateFile,
    		"Specifies the default template file to be used when generating the Kubernetes Service for an instance of the echo application. "+
    			"Can be either an absolute path or relative to the templates directory under the echo test component. A default will be selected if not specified.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 16:45:53 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. pkg/collateral/predicate.go

    )
    
    // Predicates are a set of predicates to apply when generating collaterals.
    type Predicates struct {
    	SelectEnv    SelectEnvFn
    	SelectMetric SelectMetricFn
    }
    
    // SelectEnvFn is a predicate function for selecting environment variables when generating collateral documents.
    type SelectEnvFn func(env.Var) bool
    
    // SelectMetricFn is a predicate function for selecting metrics when generating collateral documents.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

            given:
            goodCode()
            goodTests()
            failingDependenciesForTestTask()
    
            when:
            runAndFail('check')
    
            then:
            !buildDashboardFile.exists()
        }
    
        void 'build dashboard is not generated if a dependency of the report generating task fails even with --continue'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. hack/update-codegen.sh

                | sed 's|^|k8s.io/kubernetes/|;s|k8s.io/kubernetes/staging/src/||' \
                | sort -u)
    
        kube::log::status "Generating protobufs for ${#apis[@]} targets"
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "DBG: generating protobufs for:"
            for dir in "${apis[@]}"; do
                kube::log::status "DBG:     $dir"
            done
        fi
    
        git_find -z \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsLoggingIntegrationTest.groovy

    @Requires(IntegTestPreconditions.NotEmbeddedExecutor) // Gradle API and TestKit JARs are not generated when running embedded
    class GradleImplDepsLoggingIntegrationTest extends BaseGradleImplDepsIntegrationTest {
    
        def "Generating Gradle API jar is logged with rich console"() {
            given:
            executer.withTestConsoleAttached()
            executer.withConsole(ConsoleOutput.Rich)
            buildFile << """
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/tests/taskDefinition.out

    Generating all documentation......
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
Back to top