Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 156 for opens (0.06 sec)

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

    			continue
    		}
    		if err != nil {
    			return
    		}
    		return FileHandle{fh}, int(mid), nil
    	}
    }
    
    // OpenByHandleAt wraps the open_by_handle_at system call; it opens a
    // file via a handle as previously returned by NameToHandleAt.
    func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, err error) {
    	return openByHandleAt(mountFD, handle.fileHandle, flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg.run(args...)
    
    	switch runtime.GOOS {
    	case "linux", "android", "freebsd":
    		f, err := elf.Open(obj)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer f.Close()
    		if f.Type != elf.ET_DYN {
    			t.Errorf("PIE type must be ET_DYN, but %s", f.Type)
    		}
    	case "darwin", "ios":
    		f, err := macho.Open(obj)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/os/os_test.go

    		}
    	}
    
    	// Test that Open does not accept backslash as separator.
    	d := DirFS(".")
    	_, err = d.Open(`testdata\dirfs`)
    	if err == nil {
    		t.Fatalf(`Open testdata\dirfs succeeded`)
    	}
    
    	// Test that Open does not open Windows device files.
    	_, err = d.Open(`NUL`)
    	if err == nil {
    		t.Errorf(`Open NUL succeeded`)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    			correct_state	: function (obj) {
    				obj = this._get_node(obj);
    				if(!obj || obj === -1) { return false; }
    				obj.removeClass("jstree-closed jstree-open").addClass("jstree-leaf").children("ul").remove();
    				this.__callback({ "obj" : obj });
    			},
    			// open/close
    			open_node	: function (obj, callback, skip_animation) {
    				obj = this._get_node(obj);
    				if(!obj.length) { return false; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    				t.Errorf("open %s: Symbols() expected ErrNoSymbols, have nil", tt.file)
    			}
    			if symbols != nil {
    				t.Errorf("open %s: Symbols() expected no symbols, have %v", tt.file, symbols)
    			}
    		} else {
    			if err != nil {
    				t.Errorf("open %s: Symbols() unexpected error %v", tt.file, err)
    			}
    			if !slices.Equal(symbols, tt.symbols) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js.map

    const Selector = {\n    LI           : '.nav-item',\n    LINK         : '.nav-link',\n    TREEVIEW_MENU: '.nav-treeview',\n    OPEN         : '.menu-open',\n    DATA_WIDGET  : '[data-widget=\"treeview\"]'\n  }\n\n  const ClassName = {\n    LI               : 'nav-item',\n    LINK             : 'nav-link',\n    TREEVIEW_MENU    : 'nav-treeview',\n    OPEN             : 'menu-open',\n    SIDEBAR_COLLAPSED: 'sidebar-collapse'\n  }\n\n  const Default = {\n    trigger              : `${Selector.DATA_WIDGET}...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  7. internal/s3select/select_test.go

    			testdataFile := "testdata/testdata.parquet"
    			file, err := os.Open(testdataFile)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			s3Select, err := NewS3Select(bytes.NewReader(testCase.requestXML))
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			if err = s3Select.Open(file); err != nil {
    				t.Fatal(err)
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    MINIO_NOTIFY_POSTGRES_MAX_OPEN_CONNECTIONS (number)             maximum number of open connections to the database, defaults to '2'
    ```
    
    > NOTE: If the `max_open_connections` key or the environment variable `MINIO_NOTIFY_POSTGRES_MAX_OPEN_CONNECTIONS` is set to `0`, There will be no limit set on the number of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. configure.py

      # Write tools/python_bin_path.sh
      with open(
          os.path.join(_TF_WORKSPACE_ROOT, 'tools', 'python_bin_path.sh'),
          'w') as f:
        f.write('export PYTHON_BIN_PATH="{}"'.format(python_bin_path))
    
    
    def reset_tf_configure_bazelrc():
      """Reset file that contains customized config settings."""
      open(_TF_BAZELRC, 'w').close()
    
    
    def cleanup_makefile():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_function_test.cc

        }
        return out;
      }
    
      void Define(int num_opers, const std::vector<TF_Operation*>& opers,
                  const std::vector<TF_Operation*>& inputs,
                  const std::vector<TF_Operation*>& outputs,
                  const std::vector<string>& output_names,
                  bool expect_failure = false) {
        DefineT(num_opers, opers, ToOutput(inputs), ToOutput(outputs), output_names,
                expect_failure);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
Back to top