Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for overlapping (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/unicode/letter.go

    // code points within the set. The ranges are listed in two slices
    // to save space: a slice of 16-bit ranges and a slice of 32-bit ranges.
    // The two slices must be in sorted order and non-overlapping.
    // Also, R32 should contain only values >= 0x10000 (1<<16).
    type RangeTable struct {
    	R16         []Range16
    	R32         []Range32
    	LatinOffset int // number of entries in R16 with Hi <= MaxLatin1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K 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. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    	starResourceErr                = "use '*.' to encrypt all the resources from core API group or *.* to encrypt all resources"
    	overlapErr                     = "using overlapping resources such as 'secrets' and '*.' in the same resource list is not allowed as they will be masked"
    	nonRESTAPIResourceErr          = "resources which do not have REST API/s cannot be encrypted"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/mgcstack.go

    		x.next = nil
    		s.head = x
    		s.tail = x
    	}
    	if x.nobj > 0 && uint32(addr-s.stack.lo) < x.obj[x.nobj-1].off+x.obj[x.nobj-1].size {
    		throw("objects added out of order or overlapping")
    	}
    	if x.nobj == len(x.obj) {
    		// full buffer - allocate a new buffer, add to end of linked list
    		y := (*stackObjectBuf)(unsafe.Pointer(getempty()))
    		y.next = nil
    		x.next = y
    		s.tail = y
    		x = y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top