Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 215 for SetMode (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*File).Open", Method, 0},
    		{"(*File).OpenRaw", Method, 17},
    		{"(*File).SetModTime", Method, 0},
    		{"(*File).SetMode", Method, 0},
    		{"(*FileHeader).FileInfo", Method, 0},
    		{"(*FileHeader).ModTime", Method, 0},
    		{"(*FileHeader).Mode", Method, 0},
    		{"(*FileHeader).SetModTime", Method, 0},
    		{"(*FileHeader).SetMode", Method, 0},
    		{"(*ReadCloser).Close", Method, 0},
    		{"(*ReadCloser).Open", Method, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/path-operation-advanced-configuration.md

        {!> ../../../docs_src/path_operation_advanced_configuration/tutorial007_pv1.py!}
        ```
    
    !!! info
        In Pydantic Version 1 hieß die Methode zum Abrufen des JSON-Schemas für ein Modell `Item.schema()`, in Pydantic Version 2 heißt die Methode `Item.model_json_schema()`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pkg/volume/util/hostutil/fake_hostutil.go

    // Not implemented for testing
    func (hu *FakeHostUtil) GetSELinuxSupport(pathname string) (bool, error) {
    	return false, nil
    }
    
    // GetMode returns permissions of pathname.
    // Not implemented for testing
    func (hu *FakeHostUtil) GetMode(pathname string) (os.FileMode, error) {
    	return 0, errors.New("not implemented")
    }
    
    // GetSELinuxMountContext returns value of -o context=XYZ mount option on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    	if kubeClient == nil {
    		return nil
    	}
    
    	logger := klog.FromContext(ctx)
    	logger = klog.LoggerWithName(logger, "node resources controller")
    	ctx = klog.NewContext(ctx, logger)
    
    	c := &nodeResourcesController{
    		ctx:        ctx,
    		kubeClient: kubeClient,
    		getNode:    getNode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBinder.java

                @Override
                public void execute(ModelBinding modelBinding) {
                    ModelNodeInternal node = modelBinding.getNode();
                    BindingPredicate predicate = modelBinding.getPredicate();
                    if (node.isAtLeast(predicate.getState())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/main/java/org/myorg/tasks/UrlVerify.java

        @TaskAction
        public void verify() {
            String url = getUrl().get();
            try {
                HttpResponse httpResponse = httpCaller.get(url);
    
                if (httpResponse.getCode() != 200) {
                    throw new GradleException(String.format("Failed to resolve url '%s' (%s)", url, httpResponse.toString()));
                }
            } catch (HttpCallException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pkg/volume/util/hostutil/hostutil_unsupported.go

    // GetSELinuxSupport always returns an error on unsupported platforms
    func (hu *HostUtil) GetSELinuxSupport(pathname string) (bool, error) {
    	return false, errUnsupported
    }
    
    // GetMode always returns an error on unsupported platforms
    func (hu *HostUtil) GetMode(pathname string) (os.FileMode, error) {
    	return 0, errUnsupported
    }
    
    func getDeviceNameFromMount(mounter mount.Interface, mountPath, pluginMountDir string) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/Destination.java

     */
    public enum Destination implements Serializable {
    
        StdOut(0),
        StdErr(1);
    
        private final int code;
    
         Destination(int code) {
            this.code = code;
        }
    
        public int getCode() {
            return code;
        }
    
        public static Destination fromCode(int code) {
            for (Destination d : Destination.values()) {
                if (d.code == code) {
                     return d;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/LockOptions.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache;
    
    public interface LockOptions {
    
        FileLockManager.LockMode getMode();
    
        boolean isUseCrossVersionImplementation();
    
        /**
         * Creates a copy of this options instance using the given mode.
         *
         * @param mode the mode to overwrite the current mode with
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 982 bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil.go

    	GetOwner(pathname string) (int64, int64, error)
    	// GetSELinuxSupport returns true if given path is on a mount that supports
    	// SELinux.
    	GetSELinuxSupport(pathname string) (bool, error)
    	// GetMode returns permissions of the path.
    	GetMode(pathname string) (os.FileMode, error)
    	// GetSELinuxMountContext returns value of -o context=XYZ mount option on
    	// given mount point.
    	GetSELinuxMountContext(pathname string) (string, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top