Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for Managed (0.18 sec)

  1. pkg/volume/testing/testing.go

    	}
    	if volumeName == "" {
    		volumeName = spec.Name()
    	}
    	return volumeName, nil
    }
    
    func (_ *FakeVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       false,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    }
    
    func (fv *FakeVolume) SetUp(mounterArgs volume.MounterArgs) error {
    	fv.Lock()
    	defer fv.Unlock()
    	err := fv.setupInternal(mounterArgs)
    	fv.SetUpCallCount++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nodeConditionTypes := []v1.NodeConditionType{
    			v1.NodeReady,
    			v1.NodeMemoryPressure,
    			v1.NodeDiskPressure,
    			v1.NodePIDPressure,
    			// We don't change 'NodeNetworkUnavailable' condition, as it's managed on a control plane level.
    			// v1.NodeNetworkUnavailable,
    		}
    
    		nowTimestamp := nc.now()
    		for _, nodeConditionType := range nodeConditionTypes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                Version.V20,
                                prefix + prefix2 + "type",
                                key,
                                "must be 'pom' to import the managed dependencies.",
                                dependency);
                    } else if (dependency.getClassifier() != null
                            && !dependency.getClassifier().isEmpty()) {
                        addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				ContainerPath:  terminationMessagePath,
    				SelinuxRelabel: selinuxRelabel,
    			})
    		}
    	}
    
    	return volumeMounts
    }
    
    // getKubeletContainers lists containers managed by kubelet.
    // The boolean parameter specifies whether returns all containers including
    // those already exited and dead containers (used for garbage collection).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		Description:    "Unknown tag directive.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidEncryptionMethod: {
    		Code:           "InvalidArgument",
    		Description:    "Server Side Encryption with AWS KMS managed key requires HTTP header x-amz-server-side-encryption : aws:kms",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncompatibleEncryptionMethod: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    				finishUpdate(ctx, false)
    			}()
    		}
    
    		if err := rest.BeforeUpdate(e.UpdateStrategy, ctx, obj, existing); err != nil {
    			return nil, nil, err
    		}
    
    		// Ignore changes that only affect managed fields timestamps.
    		// FieldManager can't know about changes like normalized fields, defaulted
    		// fields and other mutations.
    		obj, err = fieldmanager.IgnoreManagedFieldsTimestampsTransformer(ctx, obj, existing)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    // DaemonSetSpec is the specification of a daemon set.
    type DaemonSetSpec struct {
    	// A label query over pods that are managed by the daemon set.
    	// Must match in order to be controlled.
    	// If empty, defaulted to labels on Pod template.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    And as a last resort, you may be able to view the plugin's source code to find out what it does, but that shouldn't be necessary in the majority of cases.
    
    ==== Tasks
    
    Tasks are not managed through a container-based project extension, but they are part of a container that behaves in a similar way.
    This means that you can configure tasks in the same way as you do for source sets, as you can see in this example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	work.nwait = ^uint32(0)
    }
    
    // gcBgMarkWorkerNode is an entry in the gcBgMarkWorkerPool. It points to a single
    // gcBgMarkWorker goroutine.
    type gcBgMarkWorkerNode struct {
    	// Unused workers are managed in a lock-free stack. This field must be first.
    	node lfnode
    
    	// The g of this worker.
    	gp guintptr
    
    	// Release this m on park. This is used to communicate with the unlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    or migrate to link:jvm_test_suite_plugin.html[Test Suites], where these dependencies are managed automatically.
    
    ===== Test Suites
    
    Builds that use test suites will not be affected by this change.
    Test suites manage the test
    framework dependencies automatically and do not require dependencies to be explicitly declared.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top