Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,831 for managed (0.19 sec)

  1. platforms/documentation/docs/src/snippets/modelRules/initializationRuleRunsBeforeConfigurationRules/groovy/build.gradle

    @Managed
    interface Person {
        void setFirstName(String n);
    
        String getFirstName()
    
        void setLastName(String n);
    
        String getLastName()
    }
    
    // tag::configure-and-create-rules[]
    model {
        person {
            println "configuring person"
            println "last name is $lastName, should be Smythe"
            lastName = "Smythe"
        }
        person(Person) {
            println "creating person"
            firstName = "John"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 679 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/multinetwork.yaml

    kind: Gateway
    metadata:
      annotations:
        gateway.istio.io/controller-version: "5"
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations: {}
      labels:
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
        topology.istio.io/network: network-1
      name: default-istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/deployment/simple.yaml

    kind: Gateway
    metadata:
      annotations:
        gateway.istio.io/controller-version: "5"
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations:
        should: see
      labels:
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
        should: see
      name: default-istio
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/request.go

    // copyWithoutManagedFields will make a deep copy of the specified object and
    // will discard the managed fields from the copy.
    // The specified object is expected to be a meta.Object or a "list".
    // The specified object obj is treated as readonly and hence not mutated.
    // On return, an error is set if the function runs into any error while
    // removing the managed fields, the boolean value is true if the copy has
    // been made successfully, otherwise false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/InternalSession.java

        List<org.eclipse.aether.graph.Dependency> toDependencies(
                Collection<DependencyCoordinate> dependencies, boolean managed);
    
        org.eclipse.aether.graph.Dependency toDependency(DependencyCoordinate dependency, boolean managed);
    
        List<org.eclipse.aether.artifact.Artifact> toArtifacts(Collection<Artifact> artifacts);
    
        org.eclipse.aether.artifact.Artifact toArtifact(Artifact artifact);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:55:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/meta.go

    )
    
    // WipeObjectMetaSystemFields erases fields that are managed by the system on ObjectMeta.
    func WipeObjectMetaSystemFields(meta metav1.Object) {
    	meta.SetCreationTimestamp(metav1.Time{})
    	meta.SetUID("")
    	meta.SetDeletionTimestamp(nil)
    	meta.SetDeletionGracePeriodSeconds(nil)
    	meta.SetSelfLink("")
    }
    
    // FillObjectMetaSystemFields populates fields that are managed by the system on ObjectMeta.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 19 01:47:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    }
    
    // Apply applies the given object on top of the current liveObj, for the
    // given manager and force flag.
    func (f *TestFieldManagerImpl) Apply(obj runtime.Object, manager string, force bool) error {
    	out, err := f.fieldManager.Apply(f.liveObj, obj, manager, force)
    	if err == nil {
    		f.liveObj = out
    	}
    	return err
    }
    
    // Update will updates the managed fields in the liveObj based on the
    // changes performed by the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class CustomBinaryTasksIntegrationTest extends AbstractIntegrationSpec {
    
        def "setup"() {
            buildFile << """
            @Managed interface SampleLibrary extends GeneralComponentSpec {}
            @Managed interface SampleBinary extends BinarySpec {}
    
            class MyComponentBasePlugin extends RuleSource {
                @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/deployment/cluster-ip.yaml

    metadata:
      annotations:
        gateway.istio.io/controller-version: "5"
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations:
        networking.istio.io/service-type: ClusterIP
      labels:
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
      name: default-istio
      namespace: default
      ownerReferences:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

    kind: Gateway
    metadata:
      annotations:
        gateway.istio.io/controller-version: "5"
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations:
        fizz: buzz
      labels:
        foo: bar
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
      name: default-istio
      namespace: default
      ownerReferences:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top