Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 321 for managed (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    println(instance.name) // Prints: myName
    ----
    
    [[managed_types]]
    == Using Gradle Managed Types
    
    A managed type as an abstract class or interface with no fields and whose properties are all managed.
    These types have their state entirely managed by Gradle.
    
    For example, this managed type is defined as an interface:
    
    [source,java]
    .Resource.java
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/gateway_test.go

    apiVersion: v1
    kind: Service
    metadata:
      name: managed-owner-istio
    spec:
      ports:
      - appProtocol: http
        name: default
        port: 80
      selector:
        gateway.networking.k8s.io/gateway-name: managed-owner
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: managed-owner-istio
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: managed-owner
      replicas: 1
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                }
    
                if (managedPublicType && !isManaged(internalView)) {
                    throw new IllegalArgumentException(String.format("Internal view '%s' registered for managed type '%s' must be managed", internalView, publicType));
                }
                internalViewRegistrations.add(new InternalViewRegistration<V>(source, internalView));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. samples/addons/prometheus.yaml

        app.kubernetes.io/component: server
        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
        app.kubernetes.io/version: v2.52.0
        helm.sh/chart: prometheus-25.21.0
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: prometheus
      name: prometheus
      namespace: istio-system
      annotations:
        {}
    ---
    # Source: prometheus/templates/cm.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	readwriter certificateReadWriter
    }
    
    // NewManager return a new certificate renewal manager ready for handling certificates in the cluster
    func NewManager(cfg *kubeadmapi.ClusterConfiguration, kubernetesDir string) (*Manager, error) {
    	rm := &Manager{
    		cfg:           cfg,
    		kubernetesDir: kubernetesDir,
    		certificates:  map[string]*CertificateRenewHandler{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

        private static final Type STRING = getType(String.class);
        private static final Type CLASS_GENERATING_LOADER = getType(ClassGeneratingLoader.class);
        private static final Type MANAGED = getType(Managed.class);
        private static final String[] INTERFACES_FOR_ABSTRACT_CLASS = {MANAGED.getInternalName()};
        private static final String RETURN_VOID = getMethodDescriptor(Type.VOID_TYPE);
        private static final String RETURN_STRING = getMethodDescriptor(STRING);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/debug/garbage.go

    //
    // The input limit is provided as bytes, and includes all memory
    // mapped, managed, and not released by the Go runtime. Notably, it
    // does not account for space used by the Go binary and memory
    // external to Go, such as memory managed by the underlying system
    // on behalf of the process, or memory managed by non-Go code inside
    // the same process. Examples of excluded memory sources include: OS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return true, ""
    	}
    	obj := store.Get(name, namespace)
    	if obj == nil {
    		// no object, we can manage it
    		return true, ""
    	}
    	_, managed := obj.GetLabels()[constants.ManagedGatewayLabel]
    	// If object already exists, we can only manage it if it has the label
    	return managed, obj.GetResourceVersion()
    }
    
    // setGatewayNameLabel sets either the new or deprecated gateway name label
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top