Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,101 for Managed (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	// the Runner.
    	level int
    
    	// selfPath contains all the elements of the path that identify the phase into
    	// the workflow managed by the Runner.
    	selfPath []string
    
    	// generatedName is the full name of the phase, that corresponds to the absolute
    	// path of the phase in the workflow managed by the Runner.
    	generatedName string
    
    	// use is the phase usage string that will be printed in the workflow help.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

        }
    
        def "can define a FunctionalSourceSet as a property of a managed type"() {
            buildFile << """
            apply plugin: 'language-base'
    
            @Managed
            interface BuildType {
                //Readonly
                FunctionalSourceSet getSources()
            }
    
            class Rules extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

                        theshort = "${8 + 13}"
                        theShort = "${21 + 34}"
                        thebyte = "55"
                        theByte = "89"
                        thechar = "${'managed'[3]}"
                        theCharacter = "${'managed'[4]}"
                        theString = "${'bar/fooooo' - 'ooo'}"
                        theThing = "${Thing.valueOf('NOT_A_TOASTER')}"
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleInputDetectionIntegrationSpec.groovy

    class ModelDslRuleInputDetectionIntegrationSpec extends AbstractIntegrationSpec {
    
        def "can reference input using dollar method expression - #syntax"() {
            when:
            buildScript """
              @Managed
              interface Thing {
                String getValue(); void setValue(String str)
              }
    
              model {
                thing(Thing) {
                    value = "foo"
                }
                tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top