Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 118 for pathconf (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go

    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Pathconf(path string, name int) (val int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go

    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Pathconf(path string, name int) (val int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/path_config.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    struct PathConfig {
      string output_path;
      std::vector<string> op_names;
      std::vector<string> api_dirs;
      string tf_prefix_dir;
      string tf_root_dir;
      string tf_output_dir;
    
      explicit PathConfig() = default;
      explicit PathConfig(const string &output_dir, const string &source_dir,
                          const string &api_dir_list,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/SingleProjectTaskReportModelTest.groovy

            then:
            model.groups == ['group', ''] as Set
            def tasks = model.getTasksForGroup('') as List
            tasks*.path == [pathOf(task1), pathOf(task3), pathOf(task4), pathOf(task5)]
            def t = tasks.first()
            t.path == pathOf(task1)
        }
    
        def addsAGroupWhenThereAreNoTasksWithAGroup() {
            def task1 = task('task1')
            def task2 = task('task2', task1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 17:20:29 UTC 2020
    - 4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/cpp_generator.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    
    namespace tensorflow {
    namespace generator {
    
    class CppGenerator {
     public:
      explicit CppGenerator(cpp::CppConfig cpp_config, PathConfig path_config);
      SourceCode HeaderFileContents() const;
      SourceCode SourceFileContents() const;
      string HeaderFileName() const;
      string SourceFileName() const;
      void WriteHeaderFile() const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/common/path_config.cc

    #include <iostream>
    
    #include "absl/strings/str_join.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    PathConfig::PathConfig(const string& output_dir, const string& source_dir,
                           const string& api_dir_list,
                           const std::vector<string> op_names)
        : output_path(output_dir), op_names(op_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/generate_cpp_main.cc

        op_names_.assign((*argv) + 1, (*argv) + (*argc));
      }
    
      generator::cpp::CppConfig CppConfig() {
        return generator::cpp::CppConfig(category_);
      }
    
      generator::PathConfig PathConfig() {
        return generator::PathConfig(output_dir_, source_dir_, api_dirs_,
                                     op_names_);
      }
    
     private:
      std::vector<tensorflow::Flag> Flags() {
        return {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleDetectionIntegrationSpec.groovy

                    "a.b.c",
                    "a.b.c.d",
                    'a."b".c."d"'
            ]
        }
    
        def "only literal property paths are allowed - #pathCode"() {
            when:
            buildScript """
                model {
                    $pathCode {
    
                    }
                }
            """
    
            then:
            fails "tasks"
            failure.assertHasLineNumber 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), func ParseSocketControlMessage([]uint8) ([]SocketControlMessage, error)
    pkg syscall (freebsd-386-cgo), func ParseUnixRights(*SocketControlMessage) ([]int, error)
    pkg syscall (freebsd-386-cgo), func Pathconf(string, int) (int, error)
    pkg syscall (freebsd-386-cgo), func Pipe([]int) error
    pkg syscall (freebsd-386-cgo), func Pread(int, []uint8, int64) (int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/common/controller.h

    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    class Controller {
     public:
      explicit Controller(PathConfig path_config, Env* env = Env::Default());
      virtual ~Controller();
      const void WriteFile(const string& file_path, const SourceCode& code) const;
      const std::vector<OpSpec>& GetModelOps() const;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top