Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,235 for Managed (0.16 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeImplementationClassCachingSpec.groovy

     * limitations under the License.
     */
    
    package org.gradle.model.managed
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class ManagedTypeImplementationClassCachingSpec extends AbstractIntegrationSpec {
    
        def "managed type implementation class is generated once for each type and reused"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. samples/addons/loki.yaml

    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
        app.kubernetes.io/name: loki
        app.kubernetes.io/instance: loki
        app.kubernetes.io/version: "3.0.0"
        app.kubernetes.io/managed-by: Helm
    automountServiceAccountToken: true
    ---
    # Source: loki/templates/config.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: loki
      namespace: istio-system
      labels:
        helm.sh/chart: loki-6.6.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomManagedBinaryIntegrationTest.groovy

    class CustomManagedBinaryIntegrationTest extends AbstractIntegrationSpec {
        def "setup"() {
            buildFile << """
    @Managed
    interface SampleBinary extends BinarySpec {
        String getVersion()
        void setVersion(String version)
    }
    """
        }
    
        def "custom managed binary type can be registered and created"() {
            when:
            buildWithCustomBinaryPlugin()
    
            and:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	// If no node with the name nodeName exists in list of nodes managed by the
    	// attach/detach attached controller, an error is returned.
    	AddPod(podName types.UniquePodName, pod *v1.Pod, volumeSpec *volume.Spec, nodeName k8stypes.NodeName) (v1.UniqueVolumeName, error)
    
    	// DeleteNode removes the given node from the list of nodes managed by the
    	// attach/detach controller.
    	// If the node does not exist this is a no-op.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

        targetPort: 15008
      selector:
        gateway.networking.k8s.io/gateway-name: reviews
      sessionAffinity: None
      type: ClusterIP
    ---
    # managed gateway, should not generate warning
    apiVersion: v1
    kind: Service
    metadata:
      annotations:
        test: test
      labels:
        gateway.istio.io/managed: istio.io-gateway-controller
      name: gateway-istio
      namespace: istio-ingress
    spec:
      ports:
      - appProtocol: tcp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. samples/addons/kiali.yaml

        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    ...
    ---
    # Source: kiali-server/templates/configmap.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kiali
      namespace: istio-system
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Unmanaged.java

    import java.lang.annotation.Target;
    
    /**
     * Indicates that a property of a managed model element is explicitly of an unmanaged type.
     * <p>
     * This annotation must be present on the <b>getter</b> of the property for the unmanaged type.
     * If the annotation is not present for a property that is not a managed type, a fatal error will occur.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/EnumsInManagedModelIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.model.managed
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class EnumsInManagedModelIntegrationTest extends AbstractIntegrationSpec {
    
        def "can use enums in managed model elements"() {
            when:
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

                @Managed
                interface SampleComponentSpec extends UnmanagedComponentSpec {
                    String getPublicData()
                    void setPublicData(String data)
                }
    
                @Managed
                interface InternalSampleSpec {
                    String getPublicData()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/markdown/MarkdownSourceSet.groovy

    package sample.markdown
    
    import org.gradle.language.base.LanguageSourceSet
    import org.gradle.model.Managed
    
    // tag::markdown-lang-declaration[]
    @Managed
    interface MarkdownSourceSet extends LanguageSourceSet {
        boolean isGenerateIndex()
        void setGenerateIndex(boolean generateIndex)
    
        boolean isSmartQuotes()
        void setSmartQuotes(boolean smartQuotes)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 400 bytes
    - Viewed (0)
Back to top