Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,235 for Managed (0.14 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider.go

    }
    
    // isPodManagedContainer returns true if the cinfo container is managed by a Pod
    func isPodManagedContainer(cinfo *cadvisorapiv2.ContainerInfo) bool {
    	podName := kubetypes.GetPodName(cinfo.Spec.Labels)
    	podNamespace := kubetypes.GetPodNamespace(cinfo.Spec.Labels)
    	managed := podName != "" && podNamespace != ""
    	if !managed && podName != podNamespace {
    		klog.InfoS(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    		...
    	...
    
    Phases are designed to be reusable across different kubeadm workflows thus allowing
    e.g. reuse of phase certs in both kubeadm init and kubeadm join --control-plane workflows.
    
    Each workflow can be defined and managed using a Runner, that will run all
    the phases according to the given order; nested phases will be executed immediately
    after their parent phase.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/InstanceFactory.java

         */
        @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);
    
        interface ImplementationInfo {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +listType=atomic
      repeated string omitStages = 3;
    
      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top