Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,831 for managed (0.33 sec)

  1. pkg/kubelet/config/sources.go

    type SourcesReadyFn func(sourcesSeen sets.Set[string]) bool
    
    // SourcesReady tracks the set of configured sources seen by the kubelet.
    type SourcesReady interface {
    	// AddSource adds the specified source to the set of sources managed.
    	AddSource(source string)
    	// AllReady returns true if the currently configured sources have all been seen.
    	AllReady() bool
    }
    
    // NewSourcesReady returns a SourcesReady with the specified function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/ManagedNamedTest.groovy

            when:
            registry.registerWithInitializer("bar", NamedThingInterface, nodeInitializerRegistry)
    
            then:
            registry.realize("bar", NamedThingInterface).name == "bar"
        }
    
    
        @Managed
        static abstract class NonNamedThing {
            abstract String getName()
    
            abstract void setName(String name)
        }
    
        def "named struct does not have name populated if does not implement named"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/InstanceFactory.java

        /**
         * Return information about the implementation of an unmanaged type.
         */
        @Nullable
        <S extends T> ImplementationInfo getImplementationInfo(ModelType<S> publicType);
    
        /**
         * Return information about the implementation of a managed type with an unmanaged super-type.
         */
        <S extends T> ImplementationInfo getManagedSubtypeImplementationInfo(ModelType<S> publicType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/BinaryTasks.java

     * {@link org.gradle.platform.base.BinaryTasks} annotation.
     *
     * <pre class='autoTested'>
     * {@literal @}Managed interface SampleComponent extends ComponentSpec {}
     * {@literal @}Managed interface SampleBinary extends BinarySpec {}
     *
     * apply plugin: MyCustomBinariesPlugin
     *
     * class MyCustomBinaryCreationTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. releasenotes/notes/mesh-expansion.yaml

    issue:
    - 25933
    
    releaseNotes:
    - |
      **Added** port 15012 to the default list of ports for the `istio-ingressgateway` Service.
    - |
      **Deprecated** installation flags `values.global.meshExpansion.enabled` in favor of user-managed config and `values.gateways.istio-ingressgateway.meshExpansionPorts` in favor of `components.ingressGateways[name=istio-ingressgateway].k8s.service.ports`
    
    upgradeNotes:
    - title: Avoid use of mesh expansion installation flags
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/model/NamedObjectInstantiatorTest.groovy

            !n1.is(factory.named(Named, "a"))
            !n2.is(factory.named(Named, "b"))
    
            n1 instanceof Managed
        }
    
        def "can unpack and recreate instance of subtype of Named"() {
            expect:
            def n1 = factory.named(CustomNamed, "a")
            n1 instanceof Managed
            n1.publicType() == CustomNamed
            n1.isImmutable()
            def state = n1.unpackState()
            state == "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml

      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>build</groupId>
              <artifactId>managed-plugin</artifactId>
              <executions>
                <execution>
                  <phase>test</phase>
                </execution>
                <execution>
                  <phase>test</phase>
                </execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 31 11:27:00 UTC 2010
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/readOnlyManagedProperty/groovy/settings.gradle

    rootProject.name = 'managed-property'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    These types are commonly used in Gradle plugins and build scripts to manage collections of objects, such as tasks, configurations, or custom domain objects.
    
    [[domainobjectset]]
    == 1. `DomainObjectSet`
    
    A link:{javadocPath}/org/gradle/api/DomainObjectSet.html[`DomainObjectSet`] simply holds a set of configurable objects.
    
    Compared to `NamedDomainObjectContainer`, a `DomainObjectSet` doesn't manage the objects in the collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. samples/security/spire/clusterspiffeid.yaml

    kind: ClusterSPIFFEID
    metadata:
      name: example
    spec:
      spiffeIDTemplate: "spiffe://{{ .TrustDomain }}/ns/{{ .PodMeta.Namespace }}/sa/{{ .PodSpec.ServiceAccountName }}"
      podSelector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 285 bytes
    - Viewed (0)
Back to top