Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for overlapping (0.47 sec)

  1. src/go/types/typeset.go

    	// of a method I.m's Func Object of an interface I is the same as that of
    	// the method m in an interface that embeds interface I. On the other hand,
    	// if a method is embedded via multiple overlapping embedded interfaces, we
    	// don't provide a guarantee which "original m" got chosen for the embedding
    	// interface. See also go.dev/issue/34421.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    	// This test case inspired by issue 67261, in which the linker
    	// produces a set of sections for -buildmode=pie that confuse the
    	// "strip" command, due to overlapping extents. The test first
    	// verifies that we don't have any overlapping PROGBITS/DYNAMIC
    	// sections, then runs "strip" on the resulting binary.
    
    	dir := t.TempDir()
    	src := filepath.Join(dir, "e.go")
    	binFile := filepath.Join(dir, "e.exe")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.VirtualServiceIneffectiveMatch, "VirtualService non-method-get"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-single-match"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-two-matches"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-mathes-with-different-methods"},
    		},
    	},
    	{
    		name: "host defined in virtualservice not found in the gateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/features/experimental.go

    		"If enabled, istiod will persist the oldest first heuristic for subtly conflicting traffic policy selection"+
    			"(such as with overlapping wildcard hosts)").Get()
    
    	Enable100ContinueHeaders = env.Register("ENABLE_100_CONTINUE_HEADERS", true,
    		"If enabled, istiod will proxy 100-continue headers as is").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top