Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for overlapping (1.36 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            """
        }
    
        void withParallelThreads(int threadCount) {
            executer.beforeExecute {
                withArgument("--max-workers=$threadCount")
            }
        }
    
        def "overlapping outputs prevent parallel execution"() {
            given:
            withParallelThreads(2)
    
            and:
            buildFile << """
                aPing.outputs.dir "dir"
                bPing.outputs.file "dir/file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("samples-dir", extension.getUserManual().getStagedDocumentation().get().getAsFile()); // TODO:
                task.attributes(attributes);
            });
    
            // Avoid overlapping outputs by copying exactly what we want from other intermediate tasks
            TaskProvider<Sync> userguide = tasks.register("userguide", Sync.class, task -> {
                task.setGroup("documentation");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * immutable system properties that need to match on both sides.
         * <p>
         * System properties can be also defined in the build scripts (and in the gradle.properties file), or with a JVM argument. In case of an overlapping system property definition the precedence is as follows:
         * <ul>
         *     <li>{@code withSystemProperties(...)} (highest)</li>
         *     <li>{@code addJvmArguments(...)} and {@code setJvmArguments(...)}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    =====
    [source,groovy]
    ----
    .
    ├── gradle.properties
    └── settings.gradle
    ├── subproject-a
    │   └── build.gradle
    └── subproject-b
        └── build.gradle
    ----
    =====
    ====
    
    == Avoid overlapping task outputs
    
    Tasks should define inputs and outputs to get the performance benefits of <<incremental_build.adoc#incremental_build,incremental build functionality>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    					// New group-version, just append
    					existing.Versions = append(existing.Versions, v)
    				}
    
    				sourcesUsed[gv] = key.source
    				groupsToUse[key.name] = existing
    			}
    			// Check to see if we have overlapping versions. If we do, take the one
    			// with highest source precedence
    		} else {
    			groupsToUse[key.name] = *group.DeepCopy()
    			for _, v := range group.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. pkg/api/pod/warnings.go

    						// HostPort = 0 is redundant with any other value, which is odd but not really dangerous.  HostIP doesn't matter here.
    						warnings = append(warnings, fmt.Sprintf("%s: overlapping port definition with %s", fldPath.Child("ports").Index(i), other.field))
    					} else if a, b := port.HostIP == "", other.port.HostIP == ""; port.HostPort == other.port.HostPort && ((a || b) && !(a && b)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/api/pod/warnings_test.go

    						{ContainerPort: 80, Protocol: api.ProtocolUDP, HostIP: "10.0.0.1"},
    					},
    				}},
    			}},
    			expected: []string{
    				`spec.containers[0].ports[1]: overlapping port definition with spec.containers[0].ports[0]`,
    				`spec.containers[0].ports[1]: hostIP set without hostPort: {Name: HostPort:0 ContainerPort:80 Protocol:UDP HostIP:10.0.0.1}`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    // and eliminate the direct coupling to a struct type.  Users may wish to duplicate this type in their own packages
    // as per the golang type overlapping.
    type RESTClientGetter interface {
    	// ToRESTConfig returns restconfig
    	ToRESTConfig() (*rest.Config, error)
    	// ToDiscoveryClient returns discovery client
    	ToDiscoveryClient() (discovery.CachedDiscoveryInterface, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // the runtime mapping with file offset mapOff and memory size mapSz. We skip
    // over segments zero file size because their file offset values are unreliable.
    // Even if overlapping, a segment is not selected if its aligned file offset is
    // greater than the mapping file offset, or if the mapping includes the last
    // page of the segment, but not the full segment and the mapping includes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    // block in the source.
    func (f *File) statementBoundary(s ast.Stmt) token.Pos {
    	// Control flow statements are easy.
    	switch s := s.(type) {
    	case *ast.BlockStmt:
    		// Treat blocks like basic blocks to avoid overlapping counters.
    		return s.Lbrace
    	case *ast.IfStmt:
    		found, pos := hasFuncLiteral(s.Init)
    		if found {
    			return pos
    		}
    		found, pos = hasFuncLiteral(s.Cond)
    		if found {
    			return pos
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top