Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,181 for buildDir (0.28 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    func (b *Builder) NamespaceParam(namespace string) *Builder {
    	b.namespace = namespace
    	return b
    }
    
    // DefaultNamespace instructs the builder to set the namespace value for any object found
    // to NamespaceParam() if empty.
    func (b *Builder) DefaultNamespace() *Builder {
    	b.defaultNamespace = true
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/builder.go

    type Builder interface {
    	// With adds a new Echo configuration to the Builder. Once built, the instance
    	// pointer will be updated to point at the new Instance.
    	With(i *echo.Instance, cfg echo.Config) Builder
    
    	// WithConfig mimics the behavior of With, but does not allow passing a reference
    	// and returns an echoboot builder rather than a generic echo builder.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    import (
    	"fmt"
    	"go/ast"
    	"go/token"
    )
    
    type builder struct {
    	cfg       *CFG
    	mayReturn func(*ast.CallExpr) bool
    	current   *Block
    	lblocks   map[string]*lblock // labeled blocks
    	targets   *targets           // linked stack of branch targets
    }
    
    func (b *builder) stmt(_s ast.Stmt) {
    	// The label of the current statement.  If non-nil, its _goto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    func (c *CRDCanonicalTypeNamer) OpenAPICanonicalTypeName() string {
    	return fmt.Sprintf("%s/%s.%s", c.group, c.version, c.kind)
    }
    
    // builder contains validation schema and basic naming information for a CRD in
    // one version. The builder works to build a WebService that kube-openapi can
    // consume.
    type builder struct {
    	schema     *spec.Schema
    	listSchema *spec.Schema
    	ws         *restful.WebService
    
    	group    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/builder.go

    	}}},
    }
    
    // General setting to control behavior
    type Option struct {
    	IsCustomBuilder bool
    	UseFilterState  bool
    	UseExtendedJwt  bool
    }
    
    // Builder builds Istio authorization policy to Envoy filters.
    type Builder struct {
    	trustDomainBundle trustdomain.Bundle
    	option            Option
    
    	// populated when building for CUSTOM action.
    	customPolicies []model.AuthorizationPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

                    }
                }
            '''
            builder.resourceFile("org/gradle/test/test.properties").createFile().text = "text=hello world"
            builder.buildJar(jarFile)
    
            then:
            succeeds("hello")
            outputContains("hello world")
    
            when:
            builder = artifactBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            when:
            buildId = UniqueId.generate()
            outputFile.text = "outdated"
    
            then:
            outOfDate(builder.build(), outputFilesChanged(file: [outputFile]))
        }
    
        def "failed executions are never up-to-date"() {
            def failure = new RuntimeException()
    
            when:
            def result = execute(builder.withWork { ->
                throw failure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	}
    	if cfg.BuildContext.InstallSuffix != "" {
    		defaultGcFlags = append(defaultGcFlags, "-installsuffix", cfg.BuildContext.InstallSuffix)
    	}
    	if a.buildID != "" {
    		defaultGcFlags = append(defaultGcFlags, "-buildid", a.buildID)
    	}
    	if p.Internal.OmitDebug || cfg.Goos == "plan9" || cfg.Goarch == "wasm" {
    		defaultGcFlags = append(defaultGcFlags, "-dwarf=false")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/action.go

    func (a *Action) BuildActionID() string { return actionID(a.buildID) }
    
    // BuildContentID returns the content ID section of a's build ID.
    func (a *Action) BuildContentID() string { return contentID(a.buildID) }
    
    // BuildID returns a's build ID.
    func (a *Action) BuildID() string { return a.buildID }
    
    // BuiltTarget returns the actual file that was built. This differs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. tools/docker-builder/main.go

    	}
    	if !sets.New(DockerBuilder, CraneBuilder).Contains(a.Builder) {
    		return fmt.Errorf("unknown builder %v", a.Builder)
    	}
    
    	if a.Builder == CraneBuilder && a.Save {
    		return fmt.Errorf("crane builder does not support save")
    	}
    	if a.Builder == CraneBuilder && a.NoClobber {
    		return fmt.Errorf("crane builder does not support no-clobber")
    	}
    	if a.Builder == CraneBuilder && a.NoCache {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top