Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,162 for buildID (0.15 sec)

  1. src/cmd/go/internal/list/list.go

            ForTest        string   // package is only for use in named test
            Export         string   // file containing export data (when using -export)
            BuildID        string   // build ID of the compiled package (when using -export)
            Module         *Module  // info about package's containing module, if any (can be nil)
            Match          []string // command-line patterns matching this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

            when:
            succeeds 'publish'
    
            then:
            def module = mavenRepo.module('group', 'root', '1.0')
            module.assertPublished()
            module.parsedModuleMetadata.createdBy.buildId != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	o := rpt.options
    	if len(prof.Mapping) > 0 {
    		if prof.Mapping[0].File != "" {
    			label = append(label, "File: "+filepath.Base(prof.Mapping[0].File))
    		}
    		if prof.Mapping[0].BuildID != "" {
    			label = append(label, "Build ID: "+prof.Mapping[0].BuildID)
    		}
    	}
    	// Only include comments that do not start with '#'.
    	for _, c := range prof.Comments {
    		if !strings.HasPrefix(c, "#") {
    			label = append(label, c)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pcln.go

    		}
    		funcs = append(funcs, s)
    		state.nfunc++
    		if state.firstFunc == 0 {
    			state.firstFunc = s
    		}
    		state.lastFunc = s
    
    		// We need to keep track of all compilation units we see. Some symbols
    		// (eg, go.buildid, _cgoexp_, etc) won't have a compilation unit.
    		cu := ldr.SymUnit(s)
    		if _, ok := seenCUs[cu]; cu != nil && !ok {
    			seenCUs[cu] = struct{}{}
    			cu.PclnIndex = len(compUnits)
    			compUnits = append(compUnits, cu)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== buildSrc can now see included builds from the root
    
    Previously, `buildSrc` was built in such a way that included builds were ignored from the root build.
    
    Since Gradle 6.7, `buildSrc` can see any included build from the root build.
    This may cause dependencies to be substituted from an included build in `buildSrc`.
    This may also change the order in which some builds are executed if an included build is needed by `buildSrc`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pe.go

    				// TODO(cuonglm): remove this hack
    				//
    				// Previously, windows/386 requires underscore prefix on external symbols,
    				// but that's only applied for SHOSTOBJ/SUNDEFEXT or cgo export symbols.
    				// "go.buildid" is STEXT, "type.*" is STYPE, thus they are not prefixed
    				// with underscore.
    				//
    				// In external linking mode, the external linker can't resolve them as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    func NewBuilder(buffer []byte) *Builder {
    	return &Builder{
    		result: buffer,
    	}
    }
    
    // NewFixedBuilder creates a Builder that appends its output into the given
    // buffer. This builder does not reallocate the output buffer. Writes that
    // would exceed the buffer's capacity are treated as an error.
    func NewFixedBuilder(buffer []byte) *Builder {
    	return &Builder{
    		result:    buffer,
    		fixedSize: true,
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/test/framework/components/echo/deployment/builder.go

    	Build() (echo.Instances, error)
    	BuildOrFail(t test.Failer) echo.Instances
    }
    
    var _ Builder = &builder{}
    
    // New builder for echo deployments.
    func New(ctx resource.Context, clusters ...cluster.Cluster) Builder {
    	// use all workload clusters unless otherwise specified
    	if len(clusters) == 0 {
    		clusters = ctx.Clusters()
    	}
    	b := &builder{
    		ctx:        ctx,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top