Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 587 for Grappler (0.34 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/GroovyMethods.java

        private static final Set<Equivalence.Wrapper<Method>> OBJECT_METHODS = ImmutableSet.copyOf(
            Iterables.transform(
                Iterables.concat(
                    Arrays.asList(Object.class.getMethods()),
                    Arrays.asList(GroovyObject.class.getMethods())
                ), new Function<Method, Equivalence.Wrapper<Method>>() {
                    @Override
                    public Equivalence.Wrapper<Method> apply(@Nullable Method input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Primitives.java

    /**
     * Contains static utility methods pertaining to primitive types and their corresponding wrapper
     * types.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Primitives {
      private Primitives() {}
    
      /** A map from primitive types to their corresponding wrapper types. */
      private static final Map<Class<?>, Class<?>> PRIMITIVE_TO_WRAPPER_TYPE;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. docs/en/docs/fastapi-people.md

    ## Creator
    
    Hey! ๐Ÿ‘‹
    
    This is me:
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/wrapper/simple/tests/wrapperCommandLine.sample.conf

    # tag::cli[]
    # gradle wrapper --gradle-version=4.0 --distribution-type=all
    # end::cli[]
    executable: gradle
    args: "wrapper --gradle-version=4.0 --distribution-type=all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 213 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/PhasedActionAwareConsumerConnection.java

            }
        }
    
        @Nullable
        private static <T> IntermediateResultHandler<? super T> getHandler(@Nullable PhasedBuildAction.BuildActionWrapper<T> wrapper) {
            return wrapper == null ? null : wrapper.getHandler();
        }
    
        private static InternalPhasedAction getPhasedAction(PhasedBuildAction phasedBuildAction, File rootDir, VersionDetails versionDetails) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-model-task.out

              | Creator: 	Project.<init>.tasks.updateDaemonJvm()
              | Rules:
                 โคท copyToTaskContainer
        + wrapper
              | Type:   	org.gradle.api.tasks.wrapper.Wrapper
              | Value:  	task ':wrapper'
              | Creator: 	Project.<init>.tasks.wrapper()
              | Rules:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/compare/comparator.go

    type Comparator struct {
    	envoy, istiod *configdump.Wrapper
    	w             io.Writer
    	context       int
    	location      string
    }
    
    // NewComparator is a comparator constructor
    func NewComparator(w io.Writer, istiodResponses map[string][]byte, envoyResponse []byte) (*Comparator, error) {
    	c := &Comparator{}
    	for _, resp := range istiodResponses {
    		istiodDump := &configdump.Wrapper{}
    		err := json.Unmarshal(resp, istiodDump)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. docs/de/docs/fastapi-people.md

    Hey! ๐Ÿ‘‹
    
    Das bin ich:
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue22083.go

    // The compiler was panicking on the wrong line number, where
    // the panic was occurring in an inlined call.
    
    package main
    
    import (
    	"runtime/debug"
    	"strings"
    )
    
    type Wrapper struct {
    	a []int
    }
    
    func (w Wrapper) Get(i int) int {
    	return w.a[i]
    }
    
    func main() {
    	defer func() {
    		e := recover()
    		if e == nil {
    			panic("bounds check didn't fail")
    		}
    		stk := string(debug.Stack())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 09:27:37 UTC 2017
    - 791 bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crd/config.go

    )
    
    // IstioKind is the generic Kubernetes API object wrapper
    type IstioKind struct {
    	metav1.TypeMeta
    	metav1.ObjectMeta `json:"metadata"`
    	Spec              json.RawMessage  `json:"spec"`
    	Status            *json.RawMessage `json:"status,omitempty"`
    }
    
    // GetSpec from a wrapper
    func (in *IstioKind) GetSpec() json.RawMessage {
    	return in.Spec
    }
    
    // GetStatus from a wrapper
    func (in *IstioKind) GetStatus() *json.RawMessage {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top