Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for setOption (0.32 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

        HashMap options = null;
        UUID uuid = null;
        int major;
        int minor;
    
        DcerpcBinding(String proto, String server) {
            this.proto = proto;
            this.server = server;
        }
    
        void setOption(String key, Object val) throws DcerpcException {
            if (key.equals("endpoint")) {
                endpoint = val.toString();
                String lep = endpoint.toLowerCase();
                if (lep.startsWith("\\pipe\\")) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.h

      void FlushCaches(TransactionToken* token) override;
      Status SetOption(const std::string& name,
                       const std::vector<string>& values) override;
      Status SetOption(const std::string& name,
                       const std::vector<int64_t>& values) override;
      Status SetOption(const std::string& name,
                       const std::vector<double>& values) override;
    
     private:
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcBinding.java

         */
        int getMajor () {
            return this.major;
        }
    
    
        /**
         * @return the minor
         */
        int getMinor () {
            return this.minor;
        }
    
    
        void setOption ( String key, Object val ) throws DcerpcException {
            if ( key.equals("endpoint") ) {
                this.endpoint = val.toString();
                String lep = this.endpoint.toLowerCase(Locale.ENGLISH);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem.cc

      return ret;
    }
    
    void ModularFileSystem::FlushCaches(TransactionToken* token) {
      if (ops_->flush_caches != nullptr) ops_->flush_caches(filesystem_.get());
    }
    
    Status ModularFileSystem::SetOption(const std::string& name,
                                        const std::vector<string>& values) {
      if (ops_->set_filesystem_configuration == nullptr) {
        return errors::Unimplemented(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 23.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

                            String val = str.substring(mark, si).trim();
                            if (key == null)
                                key = "endpoint";
                            binding.setOption(key, val);
                            key = null;
                        }
                        break;
                    default:
                        si = arr.length;
                }
    
                si++;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                        mark = si + 1;
                        if ( key == null )
                            key = "endpoint";
                        if ( binding != null ) {
                            binding.setOption(key, val);
                        }
                        key = null;
                    }
                    break;
                default:
                    si = arr.length;
                }
    
                si++;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java

            url = "smb1://" + binding.server + "/IPC$/" + binding.endpoint.substring(6);
    
            String params = "", server, address;
            server = (String)binding.getOption("server");
            if (server != null)
                params += "&server=" + server;
            address = (String)binding.getOption("address");
            if (server != null)
                params += "&address=" + address;
            if (params.length() > 0)
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

            String params = "";
            String server = (String) binding.getOption("server");
            if ( server != null ) {
                params += "&server=" + server;
            }
            String address = (String) binding.getOption("address");
            if ( address != null ) {
                params += "&address=" + address;
            }
            if ( params.length() > 0 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jan 26 11:51:07 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (linux-386), const PTRACE_POKEUSR ideal-int
    pkg syscall (linux-386), const PTRACE_SETFPREGS ideal-int
    pkg syscall (linux-386), const PTRACE_SETFPXREGS ideal-int
    pkg syscall (linux-386), const PTRACE_SETOPTIONS ideal-int
    pkg syscall (linux-386), const PTRACE_SETREGS ideal-int
    pkg syscall (linux-386), const PTRACE_SETREGSET ideal-int
    pkg syscall (linux-386), const PTRACE_SETSIGINFO ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. api/go1.1.txt

    pkg syscall (linux-386), const PTRACE_POKEUSR = 6
    pkg syscall (linux-386), const PTRACE_SETFPREGS = 15
    pkg syscall (linux-386), const PTRACE_SETFPXREGS = 19
    pkg syscall (linux-386), const PTRACE_SETOPTIONS = 16896
    pkg syscall (linux-386), const PTRACE_SETREGS = 13
    pkg syscall (linux-386), const PTRACE_SETREGSET = 16901
    pkg syscall (linux-386), const PTRACE_SETSIGINFO = 16899
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top