Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for fortune (0.21 sec)

  1. test/peano.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that heavy recursion works. Simple torture test for
    // segmented stacks: do math in unary by recursion.
    
    package main
    
    import "runtime"
    
    type Number *Number
    
    // -------------------------------------
    // Peano primitives
    
    func zero() *Number {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 30 19:39:18 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeInitializerContext.java

            this.modelType = modelType;
            this.constraints = constraints;
            this.propertyContextOptional = propertyContextOptional;
        }
    
        public static <T> NodeInitializerContext<T> forType(ModelType<T> type) {
            return new NodeInitializerContext<T>(type, Specs.<ModelType<?>>satisfyAll(), Optional.<PropertyContext>absent());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeTraverser.java

     * }</pre>
     *
     * @author Louis Wasserman
     * @since 15.0
     * @deprecated Use {@link com.google.common.graph.Traverser} instead. All instance methods have
     *     their equivalent on the result of {@code Traverser.forTree(tree)} where {@code tree}
     *     implements {@code SuccessorsFunction}, which has a similar API as {@link #children} or can be
     *     the same lambda function as passed into {@link #using(Function)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    func (EndpointSliceList) SwaggerDoc() map[string]string {
    	return map_EndpointSliceList
    }
    
    var map_ForZone = map[string]string{
    	"":     "ForZone provides information about which zones should consume this endpoint.",
    	"name": "name represents the name of the zone.",
    }
    
    func (ForZone) SwaggerDoc() map[string]string {
    	return map_ForZone
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiationScheme.java

        }
    
        @Override
        public Set<Class<? extends Annotation>> getInjectionAnnotations() {
            return injectionAnnotations;
        }
    
        @Override
        public <T> InstanceFactory<T> forType(Class<T> type) {
            return instantiator.factoryFor(type);
        }
    
        @Override
        public InstantiationScheme withServices(ServiceLookup services) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

            // We don't know whether the task is cacheable or not, so we ignore cacheability problems for scheduling
            TypeValidationContext typeValidationContext = validationContext.forType(taskType, false);
            node.getTaskProperties().validateType(typeValidationContext);
            return validationContext;
        }
    
        private void logWarnings(List<? extends Problem> problems) {
            problems.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    func (EndpointSliceList) SwaggerDoc() map[string]string {
    	return map_EndpointSliceList
    }
    
    var map_ForZone = map[string]string{
    	"":     "ForZone provides information about which zones should consume this endpoint.",
    	"name": "name represents the name of the zone.",
    }
    
    func (ForZone) SwaggerDoc() map[string]string {
    	return map_ForZone
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/AbstractNamedDomainObjectContainer.java

        }
    
        protected AbstractNamedDomainObjectContainer(Class<T> type, Instantiator instantiator, CollectionCallbackActionDecorator callbackActionDecorator) {
            super(type, instantiator, Named.Namer.forType(type), callbackActionDecorator);
        }
    
        /**
         * Subclasses need only implement this method as the creation strategy.
         */
        protected abstract T doCreate(String name);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectSet.java

        }
    
        public DefaultNamedDomainObjectSet(Class<? extends T> type, Instantiator instantiator, CollectionCallbackActionDecorator decorator) {
            this(type, instantiator, Named.Namer.forType(type), decorator);
        }
    
        // should be protected, but use of the class generator forces it to be public
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        public DefaultProperty(PropertyHost propertyHost, Class<T> type) {
            super(propertyHost);
            this.type = type;
            this.sanitizer = ValueSanitizers.forType(type);
            init(getDefaultValue());
        }
    
        @Override
        protected ProviderInternal<? extends T> getDefaultValue() {
            return Providers.notDefined();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top