Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for setTemplate (0.35 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/TemplateBasedScriptGenerator.java

         *
         * @param template Template text resource
         */
        void setTemplate(TextResource template);
    
        /**
         * Gets the template reader used for generating script.
         *
         * @return Template reader
         */
        TextResource getTemplate();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/DefaultTemplateBasedStartScriptGenerator.java

            }
        }
    
        @Override
        public void setTemplate(TextResource template) {
            this.template = template;
        }
    
        @Override
        public TextResource getTemplate() {
            return template;
        }
    
        private String generateStartScriptContentFromTemplate(final Map<String, String> binding) {
            try (Reader reader = getTemplate().asReader()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     * This templates can be changed via the {@link org.gradle.jvm.application.scripts.TemplateBasedScriptGenerator#setTemplate(org.gradle.api.resources.TextResource)} method.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			if !subst {
    				st.subs.add(a)
    			}
    			args := st.templateArgs()
    			tmpl := &Template{Name: a, Args: args}
    			if isCast {
    				st.setTemplate(a, tmpl)
    				st.clearTemplateArgs(args)
    				isCast = false
    			}
    			a = tmpl
    		}
    		if isCast {
    			st.setTemplate(a, nil)
    		}
    		return a, false
    	}
    
    	a, isCast := st.unqualifiedName(module)
    	if len(st.str) > 0 && st.str[0] == 'I' {
    		st.subs.add(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     * This templates can be changed via the {@link org.gradle.jvm.application.scripts.TemplateBasedScriptGenerator#setTemplate(org.gradle.api.resources.TextResource)} method.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Method <org.gradle.api.reporting.CustomizableHtmlReport.getStylesheet()> has raw return type org.gradle.api.resources.TextResource in (CustomizableHtmlReport.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/AbstractProjectGeneratorTask.groovy

                if (templateName.endsWith('.gradle')) {
                    writer << "// Generated for subproject ${templateArgs.projectName}\n"
                }
                getTemplate(templateFiles.last()).make(templateArgs).writeTo(writer)
            }
        }
    
        def getTemplate(File srcTemplate) {
            def template = templates[srcTemplate]
            if (!template) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet.go

    			},
    			DNSNames:    hostnames,
    			IPAddresses: ips,
    		}
    	}
    
    	m, err := certificate.NewManager(&certificate.Config{
    		ClientsetFn:             clientsetFn,
    		GetTemplate:             getTemplate,
    		SignerName:              certificates.KubeletServingSignerName,
    		GetUsages:               certificate.DefaultKubeletServingGetUsages,
    		CertificateStore:        certificateStore,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/deployment.go

    	if err != nil {
    		return "", err
    	}
    
    	deploy := getTemplate(deploymentTemplateFile)
    	if cfg.DeployAsVM {
    		deploy = getTemplate(vmDeploymentTemplateFile)
    	}
    
    	return tmpl.Execute(deploy, params)
    }
    
    func GenerateService(cfg echo.Config) (string, error) {
    	params := serviceParams(cfg)
    	return tmpl.Execute(getTemplate(serviceTemplateFile), params)
    }
    
    var VMImages = map[echo.VMDistro]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    ighlightUnit,this),"keydown.timepicker":a.proxy(this.elementKeydown,this),"blur.timepicker":a.proxy(this.blurElement,this),"mousewheel.timepicker DOMMouseScroll.timepicker":a.proxy(this.mousewheel,this)}),this.template!==!1?this.$widget=a(this.getTemplate()).on("click",a.proxy(this.widgetClick,this)):this.$widget=!1,this.showInputs&&this.$widget!==!1&&this.$widget.find("input").each(function(){a(this).on({"click.timepicker":function(){a(this).select()},"keydown.timepicker":a.proxy(b.widgetKeydow...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
Back to top