Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,829 for Tmpl (0.04 sec)

  1. pkg/bootstrap/instance.go

    }
    
    func configFile(config string, templateFile string) string {
    	suffix := "json"
    	// Envoy will interpret the file extension to determine the type. We should detect yaml inputs
    	if strings.HasSuffix(templateFile, ".yaml.tmpl") || strings.HasSuffix(templateFile, ".yaml") {
    		suffix = "yaml"
    	}
    	return path.Join(config, fmt.Sprintf(EnvoyFileTemplate, suffix))
    }
    
    func newTemplate(templateFilePath string) (*template.Template, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/html/template/error.go

    	//   disallowed. Avoid using "html" and "urlquery" entirely in new templates.
    	ErrPredefinedEscaper
    
    	// ErrJSTemplate: "... appears in a JS template literal"
    	// Example:
    	//     <script>var tmpl = `{{.Interp}}`</script>
    	// Discussion:
    	//   Package html/template does not support actions inside of JS template
    	//   literals.
    	//
    	// Deprecated: ErrJSTemplate is no longer returned when an action is present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/impl.go

    package runtime
    
    import (
    	"context"
    	"time"
    
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	criclient "k8s.io/cri-client/pkg"
    )
    
    type defaultImpl struct{}
    
    type impl interface {
    	NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (criapi.RuntimeService, error)
    	NewRemoteImageService(endpoint string, connectionTimeout time.Duration) (criapi.ImageManagerService, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.java.source.JavaElementSourceWithSmartPointerFactory"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.psi.KotlinReferenceProvidersService"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.references.HLApiReferenceProviderService"
        />
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

            expect:
            changesBetween(
                impl(SimpleTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
            ).empty
        }
    
        def "not up-to-date when task name changed"() {
            expect:
            changesBetween(
                impl(PreviousTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["class A { final static int x = 1; }", "class B extends A {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* change */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('ImplB')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. maven-core/src/main/resources/META-INF/maven/org.apache.maven.api.di.Inject

    org.apache.maven.internal.impl.DefaultSettingsXmlFactory
    org.apache.maven.internal.impl.DefaultSuperPomProvider
    org.apache.maven.internal.impl.DefaultToolchainsBuilder
    org.apache.maven.internal.impl.DefaultToolchainsXmlFactory
    org.apache.maven.internal.impl.DefaultTransportProvider
    org.apache.maven.internal.impl.DefaultUrlNormalizer
    org.apache.maven.internal.impl.DefaultVersionParser
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarProjectIntegrationTest.groovy

            MavenFileModule lib1Api = mavenRepo.module('org.example', 'lib1-api', '1.0').publish()
            mavenRepo.module('org.example', 'lib1-impl', '1.0').dependsOn(lib1Api).publish()
            MavenFileModule lib2Api = mavenRepo.module('org.example', 'lib2-api', '2.0').publish()
            mavenRepo.module('org.example', 'lib2-impl', '2.0').dependsOn(lib2Api).publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ForcedModulesIntegrationTest.groovy

            createDirs("api", "impl", "tool")
            settingsFile << "include 'api', 'impl', 'tool'"
    
            buildFile << """
    allprojects {
    	apply plugin: 'java'
    	repositories { maven { url "${mavenRepo.uri}" } }
    }
    
    project(':api') {
    	dependencies {
    		implementation (group: 'org', name: 'foo', version:'1.4.4')
    	}
    }
    
    project(':impl') {
    	dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime.go

    	return &CRIRuntime{
    		impl:      &defaultImpl{},
    		criSocket: criSocket,
    	}
    }
    
    // SetImpl can be used to set the internal implementation for testing purposes.
    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top