Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for overlapping (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            then:
            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("project 'sub' not found in project ':other-build'.")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache.go

    				}
    			}
    		}
    
    		endpointInfo := newBaseEndpointInfo(endpoint.Addresses[0], portNum, isLocal,
    			ready, serving, terminating, zoneHints)
    
    		// This logic ensures we're deduplicating potential overlapping endpoints
    		// isLocal should not vary between matching endpoints, but if it does, we
    		// favor a true value here if it exists.
    		if _, exists := endpointSet[endpointInfo.String()]; !exists || isLocal {
    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/strings/strings.go

    	for i := 0; i < n-1; i++ {
    		_, size := utf8.DecodeRuneInString(s)
    		a[i] = s[:size]
    		s = s[size:]
    	}
    	if n > 0 {
    		a[n-1] = s
    	}
    	return a
    }
    
    // Count counts the number of non-overlapping instances of substr in s.
    // If substr is an empty string, Count returns 1 + the number of Unicode code points in s.
    func Count(s, substr string) int {
    	// special case
    	if len(substr) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_simulation_test.go

    						Protocol:   simulation.HTTP,
    					},
    					Result: simulation.Result{
    						Error: simulation.ErrNoListener,
    					},
    				},
    			},
    		},
    		simulationTest{
    			name: "multiple overlapping services",
    			config: createGatewayWithServiceSelector("gateway", "istio-ingressgateway.istio-system.svc.cluster.local,ingress.com", `
    port:
     number: 80
     name: http-80
     protocol: HTTP
    hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            when:
            succeeds "a", "-Ptext=newtext"
    
            then:
            result.assertTasksNotSkipped(":a")
        }
    
        def "multiple tasks can generate into overlapping output directories"() {
            writeDirTransformerTask()
    
            buildFile << '''
    task a(type: DirTransformerTask) {
        inputDir = file('src/a')
        outputDir = file('build')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    	End *Event
    
    	GoroutineExecStats
    }
    
    // GoroutineExecStats contains statistics about a goroutine's execution
    // during a period of time.
    type GoroutineExecStats struct {
    	// These stats are all non-overlapping.
    	ExecTime          time.Duration
    	SchedWaitTime     time.Duration
    	BlockTimeByReason map[string]time.Duration
    	SyscallTime       time.Duration
    	SyscallBlockTime  time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        @Flaky(because = "https://github.com/gradle/gradle-private/issues/4206")
        def "cacheability for a task with overlapping outputs is OVERLAPPING_OUTPUTS"() {
            buildFile """
                task cacheable(type: Cacheable)
                task cacheableWithOverlap(type: Cacheable) {
                    outputFile = cacheable.outputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/intervals.go

    // require that the two intervals either overlap or are adjacent.
    func (i1 *Interval) MergeInto(i2 Interval) error {
    	if !i1.Overlaps(i2) && !i1.adjacent(i2) {
    		return fmt.Errorf("merge method invoked on non-overlapping/non-adjacent")
    	}
    	i1.st = imin(i1.st, i2.st)
    	i1.en = imax(i1.en, i2.en)
    	return nil
    }
    
    // IntervalsBuilder is a helper for constructing intervals based on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top