Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for tienes (0.1 sec)

  1. 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)
  2. 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)
  3. cmd/erasure-metadata.go

    		fi.Metadata = make(map[string]string)
    	}
    	fi.Metadata[ReservedMetadataPrefixLower+tierFVMarker] = ""
    }
    
    // SetSkipTierFreeVersion indicates to skip adding a tier free version id.
    // Note: Used only when expiring tiered objects and the remote content has
    // already been scheduled for deletion
    func (fi *FileInfo) SetSkipTierFreeVersion() {
    	if fi.Metadata == nil {
    		fi.Metadata = make(map[string]string)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/dwarfgen/dwinl.go

    				v.IsInAbstract = !synthesized
    			} 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)
  8. android/guava/src/com/google/common/base/Joiner.java

    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a
     * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns
     * them as a {@link String}. Example:
     *
     * <pre>{@code
    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. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    Unlike the methods on the link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] task, link:{groovyDslPath}/org.gradle.api.plugins.jvm.JvmTestSuite.html[JvmTestSuite] methods perform two additional pieces of configuration:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/concepts.md

    * Ein „Init-Container“ in Kubernetes, der vor Ihrem Anwendungs-Container ausgeführt wird
    * Ein Bash-Skript, das die Vorab-Schritte ausführt und dann Ihre Anwendung startet
        * Sie benötigen immer noch eine Möglichkeit, *dieses* Bash-Skript zu starten/neu zu starten, Fehler zu erkennen, usw.
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top