Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 321 for managed (0.34 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

         * This class makes it a bit easier to use {@link MethodHandles.Lookup}.
         * In order to access a method, a lookup object which is accessible to this method must be provided.
         * Usually, this class and the target Gradle-managed class loader exist in the same module, so everything works.
         * Otherwise, an {@link IllegalAccessException} will be thrown, and {@link ClassLoader} class will be used as the lookup object.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/volume/util/util.go

    	// ControllerManagedAttachAnnotation is the key of the annotation on Node
    	// objects that indicates attach/detach operations for the node should be
    	// managed by the attach/detach controller
    	ControllerManagedAttachAnnotation string = "volumes.kubernetes.io/controller-managed-attach-detach"
    
    	// MountsInGlobalPDPath is name of the directory appended to a volume plugin
    	// name to create the place for volume mounts in the global PD path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. pkg/volume/downwardapi/downwardapi.go

    // downward API volumes are always ReadOnlyManaged
    func (d *downwardAPIVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    }
    
    // SetUp puts in place the volume plugin.
    // This function is not idempotent by design. We want the data to be refreshed periodically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_test.go

    			config: extenderNegativeWeight,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "extenders[0].weight",
    				},
    			},
    		},
    		"extender-duplicate-managed-resources": {
    			config: extenderDuplicateManagedResource,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "extenders[0].managedResources[1].name",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    }
    
    const (
    	// VolumeLifecyclePersistent explicitly confirms that the driver implements
    	// the full CSI spec. It is the default when CSIDriverSpec.VolumeLifecycleModes is not
    	// set. Such volumes are managed in Kubernetes via the persistent volume
    	// claim mechanism and have a lifecycle that is independent of the pods which
    	// use them.
    	VolumeLifecyclePersistent VolumeLifecycleMode = "Persistent"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. pkg/volume/configmap/configmap.go

    }
    
    var _ volume.Mounter = &configMapVolumeMounter{}
    
    func (sv *configMapVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    }
    
    func wrappedVolumeSpec() volume.Spec {
    	// This is the spec for the volume that this plugin wraps.
    	return volume.Spec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
          and issue tracking systems that are managed by, or on behalf of, the
          Licensor for the purpose of discussing and improving the Work, but
          excluding communication that is conspicuously marked or otherwise
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	// testing the validation webhook.
    	AlwaysReject = "internal.istio.io/webhook-always-reject"
    
    	ManagedGatewayLabel               = "gateway.istio.io/managed"
    	UnmanagedGatewayController        = "istio.io/unmanaged-gateway"
    	ManagedGatewayControllerLabel     = "istio.io-gateway-controller"
    	ManagedGatewayMeshControllerLabel = "istio.io-mesh-controller"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/validation/validation.go

    			errs = append(errs, validationErrors...)
    			if extenderManagedResources.Has(resource.Name) {
    				errs = append(errs, field.Invalid(managedResourcesPath.Child("name"),
    					resource.Name, "duplicate extender managed resource name"))
    			}
    			extenderManagedResources.Insert(resource.Name)
    		}
    	}
    	if binders > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    		"The value portion of the label which will be set by the race repair if label pods is true")
    	registerStringParameter(constants.RepairNodeName, "", "The name of the managed node (will manage all nodes if unset)")
    	registerStringParameter(constants.RepairSidecarAnnotation, "sidecar.istio.io/status",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top