Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for overlapping (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. istioctl/pkg/precheck/precheck.go

    				res := ObjectToInstance(vs)
    				messages.Add(msg.NewUpdateIncompatibility(res,
    					"PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING", "1.20",
    					"previously, VirtualServices with overlapping wildcard hosts would have the oldest "+
    						"VirtualService take precedence. Now, the most specific VirtualService will win", "1.20"),
    				)
    				continue
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.yaml

        code: IST0131
        level: Info
        description: "A VirtualService rule match duplicates a match in a previous rule."
        template: "VirtualService rule %v match %v is not used (duplicate/overlapping match in rule %v)."
        args:
          - name: ruleno
            type: string
          - name: matchno
            type: string
          - name: dupno
            type: string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Splitter.java

    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.regex.Pattern;
    import javax.annotation.CheckForNull;
    
    /**
     * Extracts non-overlapping substrings from an input string, typically by recognizing appearances of
     * a <i>separator</i> sequence. This separator can be specified as a single {@linkplain #on(char)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. src/runtime/memmove_test.go

    			sz := uintptr(n * PtrSize)
    			name := fmt.Sprint(sz)
    			if backward {
    				name += "-backward"
    			} else {
    				name += "-forward"
    			}
    			t.Run(name, func(t *testing.T) {
    				// Use overlapping src and dst to force forward/backward copy.
    				var s [100]*int
    				src := s[n-1 : 2*n-1]
    				dst := s[:n]
    				if backward {
    					src, dst = dst, src
    				}
    				for i := range src {
    					src[i] = &x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top