Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 491 for Generating (0.19 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/tests/md5Task2.out

    > Task :md5
    Generating MD5 for einstein.txt...
    Generating MD5 for feynman.txt...
    Generating MD5 for hawking.txt...
    
    BUILD SUCCESSFUL in 1s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 170 bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  A table with the mark can be treated as documents but no generating classes.
            #
            #; tableExceptList = list:{FOO_TABLE@gen ; prefix:FOO_@gen ; suffix:_FOO ; contain:_FOO_}
    
            # o tableTargetList: (NotRequired - Default list:{})
            #  If you want to include some tables in generating target expressly,
            #  you should specify the list of target table hints.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  7. hack/module-graph.sh

    }
    
    mkdir -p _output
    echo "digraph module_dependencies {" > _output/module-dependencies.dot || error_exit "Failed to open DOT file"
    if [[ -n "$1" && $1 == "staging" ]]; then
    	echo "Generating just staging modules"
    	staging_dependencies
    else
    	echo "Generating all Kubernetes modules"
    	kubernetes_dependencies
    fi
    echo "}" >> _output/module-dependencies.dot || error_exit "Failed to close DOT file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 07 08:19:59 UTC 2020
    - 3K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/phases/certs/renewal/filerenewer.go

    )
    
    // FileRenewer define a certificate renewer implementation that uses given CA cert and key for generating new certificates
    type FileRenewer struct {
    	caCert *x509.Certificate
    	caKey  crypto.Signer
    }
    
    // NewFileRenewer returns a new certificate renewer that uses given CA cert and key for generating new certificates
    func NewFileRenewer(caCert *x509.Certificate, caKey crypto.Signer) *FileRenewer {
    	return &FileRenewer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 11 00:35:31 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. 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)
Back to top