Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 737 for pieces (0.13 sec)

  1. pilot/pkg/networking/core/httproute.go

    	partsProxyDomain := strings.Split(proxyDomain, ".")
    	partsFQDNInReverse := slices.Reverse(partsFQDN)
    	partsProxyDomainInReverse := slices.Reverse(partsProxyDomain)
    	var sharedSuffixesInReverse []string // pieces shared between proxy and svc. e.g., local,cluster,svc
    
    	for i := 0; i < min(len(partsFQDNInReverse), len(partsProxyDomainInReverse)); i++ {
    		if partsFQDNInReverse[i] == partsProxyDomainInReverse[i] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

    import javax.annotation.Nullable;
    import java.util.function.BiFunction;
    
    /**
     * <p>The internal view of a {@link Provider}.</p>
     *
     * <p>A {@code Provider<T>} has several different pieces of state associated with it:</p>
     *
     * <ul>
     *     <li>The "value" of the provider, which is the object returned by {@link #get()} and its variants.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    //
    //	x = x[1:]
    //
    // it is important to generate code like:
    //
    //	base, len, cap = pieces of x[1:]
    //	OpVarDef x
    //	x = {base, len, cap}
    //
    // If instead the generated code looked like:
    //
    //	OpVarDef x
    //	base, len, cap = pieces of x[1:]
    //	x = {base, len, cap}
    //
    // then the liveness analysis would decide the previous value of x was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    	// Names is a copy of NamedValues.Keys. We keep a separate list
    	// of keys to make iteration order deterministic.
    	Names []*LocalSlot
    	// Canonicalize root/top-level local slots, and canonicalize their pieces.
    	// Because LocalSlot pieces refer to their parents with a pointer, this ensures that equivalent slots really are equal.
    	CanonicalLocalSlots  map[LocalSlot]*LocalSlot
    	CanonicalLocalSplits map[LocalSlotSplitKey]*LocalSlot
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    We will cover how to add dependencies between projects within a multi-build project.
    
    Specifying dependencies for your Swift project requires two pieces of information:
    
     * Identifying information for the dependency (project path, Maven GAV)
     * What it’s needed for, e.g. compilation, linking, runtime or all of the above.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/dwarfgen/dwinl.go

    			} else {
    				// Variable can't be found in the pre-inline dcl list.
    				// In the top-level case (ii=0) this can happen
    				// because a composite variable was split into pieces,
    				// and we're looking at a piece. We can also see
    				// return temps (~r%d) that were created during
    				// lowering, or unnamed params ("_").
    				v.ChildIndex = int32(synthCount)
    				synthCount++
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/type.go

    // there is exactly one *_type per Go type, so that pointer equality
    // can be used to test if types are equal. There is one place that
    // breaks this assumption: buildmode=shared. In this case a type can
    // appear as two different pieces of memory. This is hidden from the
    // runtime and reflect package by the per-module typemap built in
    // typelinksinit. It uses typesEqual to map types from later modules
    // back into earlier ones.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Joiner.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class Joiner {
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(String separator) {
        return new Joiner(separator);
      }
    
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(char separator) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. src/text/template/parse/lex.go

    		return l.errorf("bad character %#U", r)
    	}
    	return l.emit(typ)
    }
    
    // atTerminator reports whether the input is at valid termination character to
    // appear after an identifier. Breaks .X.Y into two pieces. Also catches cases
    // like "$x+2" not being acceptable without a space, in case we decide one
    // day to implement arithmetic.
    func (l *lexer) atTerminator() bool {
    	r := l.peek()
    	if isSpace(r) {
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    We will cover how to add dependencies between projects within a multi-build project.
    
    Specifying dependencies for your {cpp} project requires two pieces of information:
    
     * Identifying information for the dependency (project path, Maven GAV)
     * What it’s needed for, e.g. compilation, linking, runtime or all of the above.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top