Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 196 for GENERATOR (0.22 sec)

  1. 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)
  2. src/internal/trace/testdata/mktests.go

    		// Get the test path.
    		testPath := filepath.Join(genroot, fmt.Sprintf("%s.test", name))
    
    		// Run generator.
    		cmd := exec.Command("go", "run", path, testPath)
    		if out, err := cmd.CombinedOutput(); err != nil {
    			return fmt.Errorf("running generator %s: %v:\n%s", name, err, out)
    		}
    		fmt.Fprintln(os.Stderr)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. go.work

    	./staging/src/k8s.io/apiserver
    	./staging/src/k8s.io/cli-runtime
    	./staging/src/k8s.io/client-go
    	./staging/src/k8s.io/cloud-provider
    	./staging/src/k8s.io/cluster-bootstrap
    	./staging/src/k8s.io/code-generator
    	./staging/src/k8s.io/component-base
    	./staging/src/k8s.io/component-helpers
    	./staging/src/k8s.io/controller-manager
    	./staging/src/k8s.io/cri-api
    	./staging/src/k8s.io/cri-client
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.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 (IntOrString) 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:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

            this.instanceGenerator = instanceGenerator;
        }
    
        /**
         * Creates a new, empty registry of {@link ResolutionFailureDescriber}s.
         *
         * @param instanceGenerator The instance generator to use to create describers
         * @return a new, empty registry instance
         */
        public static ResolutionFailureDescriberRegistry emptyRegistry(InstanceGenerator instanceGenerator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGeneratorFactory.java

    import org.eclipse.aether.impl.MetadataGenerator;
    import org.eclipse.aether.impl.MetadataGeneratorFactory;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Maven G level metadata generator factory.
     */
    @Named(PluginsMetadataGeneratorFactory.NAME)
    @Singleton
    public class PluginsMetadataGeneratorFactory implements MetadataGeneratorFactory {
        public static final String NAME = "plugins";
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    	// 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.
    	Generators map[string]model.XdsResourceGenerator
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. 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)
  9. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

        performanceTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("so that all Gradle features are available")
        }
    }
    
    performanceTest.registerTestProject<gradlebuild.performance.generator.tasks.JvmProjectGeneratorTask>("javaProject") {
        dependencyGraph.run {
            size = 200
            depth = 5
            useSnapshotVersions = false // snapshots should not have a build scan specific performance impact
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/SnapshotMetadataGeneratorFactory.java

    import org.eclipse.aether.impl.MetadataGenerator;
    import org.eclipse.aether.impl.MetadataGeneratorFactory;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Maven GAV level metadata generator factory.
     */
    @Named(SnapshotMetadataGeneratorFactory.NAME)
    @Singleton
    public class SnapshotMetadataGeneratorFactory implements MetadataGeneratorFactory {
        public static final String NAME = "snapshot";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top