Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 195 for groupSet (0.18 sec)

  1. src/runtime/mcache.go

    //
    // mcaches are allocated from non-GC'd memory, so any heap pointers
    // must be specially handled.
    type mcache struct {
    	_ sys.NotInHeap
    
    	// The following members are accessed on every malloc,
    	// so they are grouped here for better caching.
    	nextSample uintptr // trigger heap sample after allocating this many bytes
    	scanAlloc  uintptr // bytes of scannable heap allocated
    
    	// Allocator cache for tiny objects w/o pointers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_configuration]]
    == Configuration
    
    A configuration is a named set of <<#sub:terminology_dependency,dependencies>> grouped together for a specific goal.
    Configurations provide access to the underlying, resolved <<#sub:terminology_module,modules>> and their artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    b
    """) == rendersTasks
    
            where:
            tasks                      | rendersTasks
            TASKS_REPORT_TASK          | false
            TASKS_DETAILED_REPORT_TASK | true
        }
    
        def "renders grouped task with dependencies in detailed report running #tasks"() {
            given:
            buildFile << """
                task a {
                    group = '$GROUP'
                }
    
                task b {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/trace/regions.go

      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    </style>
    <body>
    <h1>Regions</h1>
    
    Below is a table containing a summary of all the user-defined regions in the trace.
    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    The `IstioOperatorSpec` API is intended to replace the installation and K8s parts of Helm values.yaml.
    
    ### Features and components
    
    The operator has a very similar structure to istio/installer: components are grouped into features.
    `IstioOperatorSpec` defines functional settings at the feature level. Functional settings are those that performs some
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. src/go/doc/doc.go

    	// provided to NewFromFiles.
    	Examples []*Example
    
    	importByName map[string]string
    	syms         map[string]bool
    }
    
    // Value is the documentation for a (possibly grouped) var or const declaration.
    type Value struct {
    	Doc   string
    	Names []string // var or const names in declaration order
    	Decl  *ast.GenDecl
    
    	order int
    }
    
    // Type is the documentation for a type declaration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/iter.go

    }
    
    // Next returns f(i.input[i.Pos():n]), where n is a boundary of i.input.
    // For any input a and b for which f(a) == f(b), subsequent calls
    // to Next will return the same segments.
    // Modifying runes are grouped together with the preceding starter, if such a starter exists.
    // Although not guaranteed, n will typically be the smallest possible n.
    func (i *Iter) Next() []byte {
    	return i.next(i)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/signature.go

    	if list == nil {
    		return
    	}
    
    	var named, anonymous bool
    
    	var typ Type
    	var prev syntax.Expr
    	for i, field := range list {
    		ftype := field.Type
    		// type-check type of grouped fields only once
    		if ftype != prev {
    			prev = ftype
    			if t, _ := ftype.(*syntax.DotsType); t != nil {
    				ftype = t.Elem
    				if variadicOk && i == len(list)-1 {
    					variadic = true
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/deployment/builder.go

    	// if the Config passed to With does not explicitly choose a cluster.
    	clusters cluster.Clusters
    
    	// configs contains configurations to be built, expanded per-cluster and grouped by cluster Kind.
    	configs []echo.Config
    	// refs contains the references to assign built Instances to.
    	// The length of each refs slice should match the length of the corresponding cluster slice.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    	if a.Type().Alignment() != b.Type().Alignment() {
    		return a.Type().Alignment() > b.Type().Alignment()
    	}
    
    	// Sort normal variables before open-coded-defer slots, so that the
    	// latter are grouped together and near the top of the frame (to
    	// minimize varint encoding of their varp offset).
    	if a.OpenDeferSlot() != b.OpenDeferSlot() {
    		return a.OpenDeferSlot()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top