Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 174 for GENERATOR (0.17 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

                               LongSupplier generator) {
            this.metaDataProvider = metaDataProvider;
            this.lockTimeoutMs = lockTimeoutMs;
            this.fileLockContentionHandler = fileLockContentionHandler;
            this.generator = generator;
        }
    
        private static class RandomLongIdGenerator implements LongSupplier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    func genNestedSchema(depth int) *schema.Structural {
    	var generator func(d int) schema.Structural
    	generator = func(d int) schema.Structural {
    		nodeTemplate := schema.Structural{
    			Generic: schema.Generic{
    				Type: "object",
    			},
    			AdditionalProperties: &schema.StructuralOrBool{},
    		}
    		if d == 1 {
    			return nodeTemplate
    		} else {
    			mapType := generator(d - 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	k8s.io/api => ../api
    	k8s.io/apiextensions-apiserver => ../apiextensions-apiserver
    	k8s.io/apimachinery => ../apimachinery
    	k8s.io/apiserver => ../apiserver
    	k8s.io/client-go => ../client-go
    	k8s.io/code-generator => ../code-generator
    	k8s.io/component-base => ../component-base
    	k8s.io/kms => ../kms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                    project.tasks.named('test').configure {
                        doFirst { task ->
                            def properties = service.collectProperties(task)
    
                            def generator = new ${JsonGenerator.Options.name}()
                                .addConverter(new groovy.json.JsonGenerator.Converter() {
                                    @Override
                                    boolean handles(Class<?> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    string AttrView::VariableName() const { return attr_.name(); }
    
    string AttrView::VariableType() const {
      // Completely special cases (e.g. strings are different when lists)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/generate-clients.md

    ## OpenAPI Client Generators
    
    There are many tools to generate clients from **OpenAPI**.
    
    A common tool is <a href="https://openapi-generator.tech/" class="external-link" target="_blank">OpenAPI Generator</a>.
    
    If you are building a **frontend**, a very interesting alternative is <a href="https://github.com/hey-api/openapi-ts" class="external-link" target="_blank">openapi-ts</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top