Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,235 for Managed (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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 (1)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.state.Managed;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static org.gradle.api.internal.lambdas.SerializableLambdas.bifunction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// +optional
    	OmitStages []Stage
    
    	// OmitManagedFields indicates whether to omit the managed fields of the request
    	// and response bodies from being written to the API audit log.
    	// This is used as a global default - a value of 'true' will omit the managed fileds,
    	// otherwise the managed fields will be included in the API audit log.
    	// Note that this can also be specified per rule in which case the value specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. releasenotes/notes/istiod-cluster-metric.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Added** a new metric (`istiod_managed_clusters`) to `istiod` to track the number of clusters managed by an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 23 01:50:36 UTC 2021
    - 209 bytes
    - Viewed (0)
  9. 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)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             */
            @Nullable
            byte[] getHashBytes();
    
            /**
             * The hash of the classloader that loaded the task implementation.
             * <p>
             * Null if the classloader is not managed by Gradle.
             */
            @Nullable
            byte[] getClassLoaderHashBytes();
    
    
            /**
             * The hashes of the classloader that loaded each of the task's actions.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top