Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,999 for buildop (0.17 sec)

  1. src/cmd/internal/buildid/buildid.go

    		case 2:
    			if !bytes.HasPrefix(line, goobject) {
    				return tryGccgo()
    			}
    		case 3:
    			if !bytes.HasPrefix(line, buildid) {
    				// Found the object header, just doesn't have a build id line.
    				// Treat as successful, with empty build id.
    				return "", nil
    			}
    			id, err := strconv.Unquote(string(line[len(buildid):]))
    			if err != nil {
    				return tryGccgo()
    			}
    			return id, nil
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  2. src/strings/builder.go

    package strings
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"unicode/utf8"
    	"unsafe"
    )
    
    // A Builder is used to efficiently build a string using [Builder.Write] methods.
    // It minimizes memory copying. The zero value is ready to use.
    // Do not copy a non-zero Builder.
    type Builder struct {
    	addr *Builder // of receiver, to detect copies by value
    
    	// External users should never get direct access to this buffer, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pkg/http/headers/builder.go

    package headers
    
    import (
    	"net/http"
    )
    
    // Builder for HTTP headers.
    type Builder struct {
    	headers http.Header
    }
    
    // New Builder for HTTP headers.
    func New() *Builder {
    	return &Builder{
    		headers: make(http.Header),
    	}
    }
    
    // Get returns the current value for the key.
    func (b *Builder) Get(key string) string {
    	return b.headers.Get(key)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config/builder.go

    func (b *Builder) Output(out config.Plan) *Builder {
    	b.t.Helper()
    
    	checkNotNil("out", out)
    
    	ret := b.Copy()
    	ret.out = out
    	return ret
    }
    
    // Context returns a copy of this Builder with the given context set.
    func (b *Builder) Context(t framework.TestContext) *Builder {
    	checkNotNil("t", t)
    	out := b.Copy()
    	out.t = t
    	return out
    }
    
    // Source returns a copy of this Builder with the given Source objects added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/buildid/buildid.go

    	telemetry.CountFlags("buildid/flag:", *flag.CommandLine)
    	if flag.NArg() != 1 {
    		usage()
    	}
    
    	file := flag.Arg(0)
    	id, err := buildid.ReadFile(file)
    	if err != nil {
    		log.Fatal(err)
    	}
    	if !*wflag {
    		fmt.Printf("%s\n", id)
    		return
    	}
    
    	// Keep in sync with src/cmd/go/internal/work/buildid.go:updateBuildID
    
    	f, err := os.Open(file)
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. prow/buildx-create

    fi
    
    export DOCKER_CLI_EXPERIMENTAL=enabled
    if ! docker buildx ls | grep -q container-builder; then
      docker buildx create --driver-opt network=host,image=gcr.io/istio-testing/buildkit:v0.11.0 --name container-builder --buildkitd-flags="--debug"
      # Pre-warm the builder. If it fails, fetch logs, but continue
      docker buildx inspect --bootstrap container-builder || docker logs buildx_buildkit_container-builder0 || true
    fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 21:24:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/dist/buildgo.go

    	return buf.String()
    }
    
    // mkzcgo writes zcgo.go for the go/build package:
    //
    //	package build
    //	const defaultCGO_ENABLED = <CGO_ENABLED>
    //
    // It is invoked to write go/build/zcgo.go.
    func mkzcgo(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package build\n")
    	fmt.Fprintln(&buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:44:00 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Builder.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 927 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/model-builder-plugin/build.gradle

    plugins {
        id 'java-gradle-plugin'
    }
    
    group = 'reporters'
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            'model-builder-plugin' {
                id = 'reporters.model.builder'
                implementationClass = 'reporters.ModelBuilderPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 287 bytes
    - Viewed (0)
Back to top