Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for overlapping (0.25 sec)

  1. 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)
  2. src/strings/replace.go

    	WriteString(w io.Writer, s string) (n int, err error)
    }
    
    // NewReplacer returns a new [Replacer] from a list of old, new string
    // pairs. Replacements are performed in the order they appear in the
    // target string, without overlapping matches. The old string
    // comparisons are done in argument order.
    //
    // NewReplacer panics if given an odd number of arguments.
    func NewReplacer(oldnew ...string) *Replacer {
    	if len(oldnew)%2 == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/base/Splitter.java

    import java.util.List;
    import java.util.Map;
    import java.util.regex.Pattern;
    import java.util.stream.Stream;
    import java.util.stream.StreamSupport;
    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: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/riscv64/asm.go

    				continue
    			}
    			if r.Off() == 0 && ldr.SymType(s) == sym.STEXT {
    				// Use the symbol for the function instead of creating
    				// an overlapping symbol.
    				continue
    			}
    
    			// TODO(jsing): Consider generating ELF symbols without needing
    			// loader symbols, in order to reduce memory consumption. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/writebarrier.go

    		}
    
    		// Note: we can issue the write barrier code in any order. In particular,
    		// it doesn't matter if they are in a different order *even if* they end
    		// up referring to overlapping memory regions. For instance if an OpStore
    		// stores to a location that is later read by an OpMove. In all cases
    		// any pointers we must get into the write barrier buffer still make it,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils.go

    // overlappingStatefulSets sorts a list of StatefulSets by creation timestamp, using their names as a tie breaker.
    // Generally used to tie break between StatefulSets that have overlapping selectors.
    type overlappingStatefulSets []*apps.StatefulSet
    
    func (o overlappingStatefulSets) Len() int { return len(o) }
    
    func (o overlappingStatefulSets) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Range.java

        }
      }
    
      /**
       * Returns the maximal range lying between this range and {@code otherRange}, if such a range
       * exists. The resulting range may be empty if the two ranges are adjacent but non-overlapping.
       *
       * <p>For example, the gap of {@code [1..5]} and {@code (7..10)} is {@code (5..7]}. The resulting
       * range may be empty; for example, the gap between {@code [1..5)} {@code [5..7)} yields the empty
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top