Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,705 for grouped (0.39 sec)

  1. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    	for i, slice := range slices {
    		if slice.Name == sliceToRemove.Name {
    			return append(slices[:i], slices[i+1:]...)
    		}
    	}
    	return slices
    }
    
    // toSliceByAddrType returns lists of EndpointSlices grouped by address.
    func toSlicesByAddrType(slices []*discovery.EndpointSlice) slicesByAddrType {
    	byAddrType := slicesByAddrType{}
    	for _, slice := range slices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/trace/goroutines.go

    		}
    		// Accumulate groups by Name.
    		groupsByName := make(map[string]goroutineGroup)
    		for _, summary := range summaries {
    			group := groupsByName[summary.Name]
    			group.Name = summary.Name
    			group.N++
    			group.ExecTime += summary.ExecTime
    			groupsByName[summary.Name] = group
    		}
    		var groups []goroutineGroup
    		for _, group := range groupsByName {
    			groups = append(groups, group)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            renderer.onOutput(event('un-grouped error', LogLevel.ERROR))
            renderer.onOutput(complete('status'))
            renderer.restore(snapshot) // close console to flush
    
            then:
            output.toString().readLines() == ['', '> description status', 'info']
            error.toString().readLines() == ['un-grouped error', 'error']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.h

    #include "xla/statusor.h"
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    #include "tensorflow/core/graph/algorithm.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // The attribute that marks certain inputs to a Node as required to be a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/metrics/cache.go

    	// lock protects changes to numEndpoints and cache.
    	lock sync.Mutex
    	// numEndpoints represents the total number of endpoints stored in
    	// EndpointSlices.
    	numEndpoints int
    	// cache stores a EndpointPortCache grouped by NamespacedNames representing
    	// Services.
    	cache map[types.NamespacedName]*EndpointPortCache
    }
    
    // EndpointPortCache tracks values for total numbers of desired endpoints as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/go/format/format.go

    			// Not an import declaration, so we're done.
    			// Imports are always first.
    			return false
    		}
    		if d.Lparen.IsValid() {
    			// For now assume all grouped imports are unsorted.
    			// TODO(gri) Should check if they are sorted already.
    			return true
    		}
    		// Ungrouped imports are sorted by default.
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         */
        String getBuilderId();
    
        /**
         *
         * @param toolchains all toolchains grouped by type
         * @return this request
         * @since 3.3.0
         */
        MavenExecutionRequest setToolchains(Map<String, List<ToolchainModel>> toolchains);
    
        /**
         *
         * @return all toolchains grouped by type, never {@code null}
         * @since 3.3.0
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * Indicates whether the tests should be grouped by instances. Grouping by instances will result in resolving test method dependencies for each instance instead of running the dependees of all
         * instances before running the dependants.
         *
         * Not required.
         *
         * If not present, the tests will not be grouped by instances.
         */
        @Internal
        public boolean isGroupByInstances() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/go/printer/testdata/declarations.input

    }
    
    
    // no tabs for single or ungrouped decls
    func _() {
    	const xxxxxx = 0
    	type x int
    	var xxx int
    	var yyyy float = 3.14
    	var zzzzz = "bar"
    
    	const (
    		xxxxxx = 0
    	)
    	type (
    		x int
    	)
    	var (
    		xxx int
    	)
    	var (
    		yyyy float = 3.14
    	)
    	var (
    		zzzzz = "bar"
    	)
    }
    
    // tabs for multiple or grouped decls
    func _() {
    	// no entry has a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    			line := fset.Position(pos).Line
    			if lastLine > 0 && pos > 0 && line-lastLine > 1 {
    				groups = append(groups, group)
    				group = []*ast.ImportSpec{}
    			}
    			group = append(group, importSpec)
    			lastLine = line
    		}
    		groups = append(groups, group)
    	}
    
    	return groups
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
Back to top