Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for Generator4 (0.22 sec)

  1. src/internal/trace/testdata/mktests.go

    	return false, nil
    }
    
    func (ctx *context) runGenerators() error {
    	generators, err := filepath.Glob("./generators/*.go")
    	if err != nil {
    		return fmt.Errorf("reading generators: %v", err)
    	}
    	genroot := "./tests"
    
    	if err := os.MkdirAll(genroot, 0777); err != nil {
    		return fmt.Errorf("creating generated root: %v", err)
    	}
    	for _, path := range generators {
    		name := filepath.Base(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    	Env *model.Environment
    
    	// Generators allow customizing the generated config, based on the client metadata.
    	// Key is the generator type - will match the Generator metadata to set the per-connection
    	// default generator, or the combination of Generator metadata and TypeUrl to select a
    	// different generator for a type.
    	// Normal istio clients use the default generator - will not be impacted by this.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/trace/gen.go

    	"internal/trace"
    	"internal/trace/traceviewer"
    	"strings"
    )
    
    // generator is an interface for generating a JSON trace for the trace viewer
    // from a trace. Each method in this interface is a handler for a kind of event
    // that is interesting to render in the UI via the JSON trace.
    type generator interface {
    	// Global parts.
    	Sync() // Notifies the generator of an EventSync event.
    	StackSample(ctx *traceContext, ev *trace.Event)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

                .ask();
            List<BuildGenerator> generators = projectLayoutRegistry.getGeneratorsFor(componentType);
            if (generators.size() == 1) {
                return generators.get(0);
            }
    
            Map<Language, BuildGenerator> generatorsByLanguage = new LinkedHashMap<>();
            for (Language language : Language.values()) {
                for (BuildGenerator generator : generators) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    }
    
    // OpenAPISchemaType is used by the kube-openapi generator when constructing
    // the OpenAPI spec of this type.
    //
    // See: https://github.com/kubernetes/kube-openapi/tree/master/pkg/generators
    func (_ MicroTime) OpenAPISchemaType() []string { return []string{"string"} }
    
    // OpenAPISchemaFormat is used by the kube-openapi generator when constructing
    // the OpenAPI spec of this type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/xdsgen.go

    	if g, f := s.Generators[con.proxy.Metadata.Generator+"/"+typeURL]; f {
    		return g
    	}
    	if g, f := s.Generators[string(con.proxy.Type)+"/"+typeURL]; f {
    		return g
    	}
    
    	if g, f := s.Generators[typeURL]; f {
    		return g
    	}
    
    	// XdsResourceGenerator is the default generator for this connection. We want to allow
    	// some types to use custom generators - for example EDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            def generator = new ProblematicClassGenerator(className, sourceSet)
            generator.addError()
            generator.addError()
            return generator.save()
        }
    
        TestFile writeJavaCausingTwoCompilationWarnings(String className) {
            def generator = new ProblematicClassGenerator(className)
            generator.addWarning()
            generator.addWarning()
            return generator.save()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. .space/CODEOWNERS

    /generators/sir-tests-generator/ "Kotlin Native"
    /generators/protobuf/ "Kotlin Build Infrastructure"
    # UNKNOWN: /generators/protobufCompare/
    /generators/test-generator/ "Kotlin Compiler Core" "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /generators/tests/ "Kotlin Compiler Core" "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

     */
    
    import gradlebuild.performance.generator.tasks.BuildBuilderGenerator
    import gradlebuild.performance.generator.tasks.CppMultiProjectGeneratorTask
    import gradlebuild.performance.generator.tasks.JavaExecProjectGeneratorTask
    import gradlebuild.performance.generator.tasks.JvmProjectGeneratorTask
    import gradlebuild.performance.generator.tasks.KtsProjectGeneratorTask
    import gradlebuild.performance.generator.tasks.MonolithicNativeProjectGeneratorTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.cc

    #include "tensorflow/c/experimental/ops/gen/model/arg_type.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    ArgTypeView::ArgTypeView(ArgType arg_type) : arg_type_(arg_type) {}
    
    string ArgTypeView::TypeName() const {
      if (arg_type_.is_read_only()) {
        if (arg_type_.is_list()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top