Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for groupSet (0.21 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    </style></head><body>"); list.document.writeln(text); list.document.writeln("</body></html>"); list.document.close(); list.focus(); } //--> Analysis of Date: Summary no class cycles class cycle class cycles class layers classes (using external classes) grouped in packages no package cycles package cycle package cycles no package packages Type Number of classes Averaged (maximum) size in bytes Averaged (maximum) number of usage by other classes Averaged (maximum) number of used internal classes Averaged...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 23.4K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    type EndpointSliceCache struct {
    	// lock protects trackerByServiceMap.
    	lock sync.Mutex
    
    	// trackerByServiceMap is the basis of this cache. It contains endpoint
    	// slice trackers grouped by service name and endpoint slice name. The first
    	// key represents a namespaced service name while the second key represents
    	// an endpoint slice name. Since endpoints can move between slices, we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    func GoroutinesHandlerFunc(summaries map[trace.GoID]*trace.GoroutineSummary) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		// goroutineGroup describes a group of goroutines grouped by name.
    		type goroutineGroup struct {
    			Name     string        // Start function.
    			N        int           // Total number of goroutines in this 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/printer/testdata/declarations.input

    	var _ interface{}
    	var _ *interface{}
    	var _ []interface{}
    	var _ map[string]interface{}
    	var _ chan interface{}
    	var _ func() interface{}
    }
    
    
    // don't lose blank lines in grouped declarations
    const (
    	_ int = 0
    	_ float = 1
    
    	_ string = "foo"
    
    	_ = iota
    	_
    	
    	// a comment
    	_
    
    	_
    )
    
    
    type (
    	_ int
    	_ struct {}
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    			// - for stdlib package: prefer first import spec.
    			// - for third party package: prefer first third party import spec.
    			// We cannot use last import spec as best match for third party package
    			// because grouped imports are usually placed last by goimports -local
    			// flag.
    			// See issue #19190.
    			seenAnyThirdParty := false
    			for j, spec := range gen.Specs {
    				impspec := spec.(*ast.ImportSpec)
    				p := importPath(impspec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

            }
    
            // Preserve logging of headers for progress operations started outside of the build operation executor as was done in Gradle 3.x
            // Basically, if we see an operation with a logging header and it's not grouped, just log it
            if (!isGrouped && GUtil.isTrue(startEvent.getLoggingHeader())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

            for (String ignoredKey : collectedIgnoredKeys) {
                verificationsBuilder.addIgnoredKey(new IgnoredKey(ignoredKey, KEY_NOT_DOWNLOADED));
            }
            PgpKeyGrouper grouper = new PgpKeyGrouper(verificationsBuilder, entriesToBeWritten);
            grouper.performPgpKeyGrouping();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top