Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for open_node (0.41 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					obj.children("a").addClass("jstree-loading");
    					this.load_node(obj, function () { t.open_node(obj, callback, skip_animation); }, callback);
    				}
    				else {
    					if(this._get_settings().core.open_parents) {
    						obj.parentsUntil(".jstree",".jstree-closed").each(function () {
    							t.open_node(this, false, true);
    						});
    					}
    					if(s) { obj.children("ul").css("display","none"); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem_helper.cc

      // When creating file, use the same permissions as original
      mode_t open_mode = mode & (S_IRWXU | S_IRWXG | S_IRWXO);
    
      // O_WRONLY | O_CREAT | O_TRUNC:
      //   Open file for write and if file does not exist, create the file.
      //   If file exists, truncate its size to 0.
      int dst_fd = open(dst, O_WRONLY | O_CREAT | O_TRUNC, open_mode);
      if (dst_fd < 0) {
        close(src_fd);
        return -1;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 16 05:36:52 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.h

    #include <fstream>
    #include <string>
    
    class TempFile : public std::fstream {
     public:
      // We should specify openmode each time we call TempFile.
      TempFile(const std::string& temp_file_name, std::ios::openmode mode);
      TempFile(TempFile&& rhs);
      ~TempFile() override;
      const std::string getName() const;
      bool truncate();
    
     private:
      const std::string name_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 26 14:56:58 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/xcode/plugins/XcodePluginTest.groovy

            when:
            child.pluginManager.apply(XcodePlugin)
    
            then:
            child.xcode instanceof XcodeExtension
        }
    
        def "adds 'openXcode' task"() {
            when:
            project.pluginManager.apply(XcodePlugin)
    
            then:
            project.tasks.openXcode != null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/syscall/fs_js.go

    	}
    	return f, nil
    }
    
    func Open(path string, openmode int, perm uint32) (int, error) {
    	if err := checkPath(path); err != nil {
    		return 0, err
    	}
    
    	flags := 0
    	if openmode&O_WRONLY != 0 {
    		flags |= nodeWRONLY
    	}
    	if openmode&O_RDWR != 0 {
    		flags |= nodeRDWR
    	}
    	if openmode&O_CREATE != 0 {
    		flags |= nodeCREATE
    	}
    	if openmode&O_TRUNC != 0 {
    		flags |= nodeTRUNC
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    ====
    
    [[sec:xcode_tasks]]
    == Tasks
    
    The Xcode Plugin adds a number of tasks to your project.
    The main tasks that you will use are the `xcode`, `cleanXcode` and `openXcode` tasks.
    
    The following diagram shows the relationships between tasks added by this plugin.
    
    .Xcode Plugin default task graph
    image::xcode-task-graph.png[]
    
    [[sec:xcode_lifecycle_tasks]]
    === Lifecycle Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.dot

        cppLibrary_xcodeProject[label="xcodeProject"]
      }
    
      {cppApplication_xcodeProject, cppLibrary_xcodeProject} -> xcode [dir=back, style=dashed]
      xcodeWorkspaceWorkspaceSettings -> xcodeWorkspace -> xcode -> openXcode [dir=back]
    
      xcodeWorkspace[label=<xcodeWorkspace>]
    
      xcodeWorkspace -> cleanXcode [style=invis]
      {rank=same xcodeWorkspace cleanXcode}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.cc

    #include "tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.h"
    
    #include <stdio.h>
    
    #include <fstream>
    #include <string>
    #include <utility>
    
    TempFile::TempFile(const std::string& temp_file_name, std::ios::openmode mode)
        : std::fstream(temp_file_name, mode), name_(temp_file_name) {}
    
    TempFile::TempFile(TempFile&& rhs)
        : std::fstream(std::move(rhs)), name_(std::move(rhs.name_)) {}
    
    TempFile::~TempFile() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 26 14:56:58 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. src/syscall/fs_wasip1.go

    }
    
    func Open(path string, openmode int, perm uint32) (int, error) {
    	if path == "" {
    		return -1, EINVAL
    	}
    	dirFd, pathPtr, pathLen := preparePath(path)
    
    	var oflags oflags
    	if (openmode & O_CREATE) != 0 {
    		oflags |= OFLAG_CREATE
    	}
    	if (openmode & O_TRUNC) != 0 {
    		oflags |= OFLAG_TRUNC
    	}
    	if (openmode & O_EXCL) != 0 {
    		oflags |= OFLAG_EXCL
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top