Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for fortune (0.53 sec)

  1. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/NonTransformedModelDslBacking.java

    import org.gradle.util.internal.ClosureBackedAction;
    
    import static org.gradle.model.internal.core.DefaultNodeInitializerRegistry.DEFAULT_REFERENCE;
    import static org.gradle.model.internal.core.NodeInitializerContext.forType;
    
    @NotThreadSafe
    public class NonTransformedModelDslBacking extends GroovyObjectSupport {
    
        // TODO include link to documentation giving more explanation of what's going on here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/Jsr330ConstructorSelector.java

            }
        }
    
        @Override
        public <T> ClassGenerator.GeneratedConstructor<? extends T> forParams(Class<T> type, Object[] params) {
            return forType(type);
        }
    
        @Override
        public <T> ClassGenerator.GeneratedConstructor<? extends T> forType(final Class<T> type) throws UnsupportedOperationException {
            CachedConstructor constructor = constructorCache.get(type, () -> {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:52:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ModelSetModelProjectionTest.groovy

    import org.gradle.model.internal.fixture.ProjectRegistrySpec
    import org.gradle.model.internal.type.ModelType
    import org.gradle.util.internal.ClosureBackedAction
    
    import static org.gradle.model.internal.core.NodeInitializerContext.forType
    
    class ModelSetModelProjectionTest extends ProjectRegistrySpec {
        @Managed
        interface NamedThing {
            String getName()
    
            void setName(String name);
    
            String getValue()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainer.java

            this(type, instantiator, instantiator, Named.Namer.forType(type), callbackDecorator);
        }
    
        public DefaultPolymorphicDomainObjectContainer(Class<T> type, Instantiator instantiator, Instantiator elementInstantiator, CollectionCallbackActionDecorator callbackDecorator) {
            this(type, instantiator, elementInstantiator, Named.Namer.forType(type), callbackDecorator);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/discovery/v1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	// enable topology aware routing. May contain a maximum of 8 entries.
    	// +listType=atomic
    	ForZones []ForZone `json:"forZones,omitempty" protobuf:"bytes,1,name=forZones"`
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    type ForZone struct {
    	// name represents the name of the zone.
    	Name string `json:"name" protobuf:"bytes,1,name=name"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1/types.go

    	// forZones indicates the zone(s) this endpoint should be consumed by to
    	// enable topology aware routing.
    	// +listType=atomic
    	ForZones []ForZone `json:"forZones,omitempty" protobuf:"bytes,1,name=forZones"`
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    type ForZone struct {
    	// name represents the name of the zone.
    	Name string `json:"name" protobuf:"bytes,1,name=name"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

        public FactoryNamedDomainObjectContainer(Class<T> type, Instantiator instantiator, NamedDomainObjectFactory<T> factory, CollectionCallbackActionDecorator collectionCallbackActionDecorator) {
            this(type, instantiator, Named.Namer.forType(type), factory, MutationGuards.identity(), collectionCallbackActionDecorator);
        }
    
        /**
         * <p>Creates a container that instantiates using the given factory.<p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top