Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for Style (0.14 sec)

  1. src/main/webapp/js/admin/bootstrap.min.js

    t&&t()},t._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right<window.inn...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    		},
    		add_sheet : function(opts) {
    			var tmp = false, is_new = true;
    			if(opts.str) {
    				if(opts.title) { tmp = $("style[id='" + opts.title + "-stylesheet']")[0]; }
    				if(tmp) { is_new = false; }
    				else {
    					tmp = document.createElement("style");
    					tmp.setAttribute('type',"text/css");
    					if(opts.title) { tmp.setAttribute("id", opts.title + "-stylesheet"); }
    				}
    				if(tmp.styleSheet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy_test.go

    			switch code {
    			case http.StatusEarlyHints:
    				checkLinkHeaders(t, []string{"</style.css>; rel=preload; as=style", "</script.js>; rel=preload; as=script"}, header["Link"])
    			case http.StatusProcessing:
    				checkLinkHeaders(t, []string{"</style.css>; rel=preload; as=style", "</script.js>; rel=preload; as=script", "</foo.js>; rel=preload; as=script"}, header["Link"])
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    		p.exprList(x.Lbrace, x.Elts, 1, commaTerm, x.Rbrace, x.Incomplete)
    		// do not insert extra line break following a /*-style comment
    		// before the closing '}' as it might break the code if there
    		// is no trailing ','
    		mode := noExtraLinebreak
    		// do not insert extra blank following a /*-style comment
    		// before the closing '}' unless the literal is empty
    		if len(x.Elts) > 0 {
    			mode |= noExtraBlank
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    		// So, we mark the object is MIPS I style paired float/double register scheme,
    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    		//       It is not for 'ANY'.
    		// TODO: switch to FPXX after be sure that no odd-number-fpr is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    This will create a tree of all the files and directories in that base directory (but not the base directory itself).
    The following example demonstrates how to use this method and how to filter the files and directories using Ant-style patterns:
    
    ====
    include::sample[dir="snippets/files/fileTrees/kotlin",files="build.gradle.kts[tags=define]"]
    include::sample[dir="snippets/files/fileTrees/groovy",files="build.gradle[tags=define]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	NoClones
    
    	// The NoRust option disables demangling of old-style Rust
    	// mangled names, which can be confused with C++ style mangled
    	// names. New style Rust mangled names are still recognized.
    	NoRust
    
    	// The Verbose option turns on more verbose demangling.
    	Verbose
    
    	// LLVMStyle tries to translate an AST to a string in the
    	// style of the LLVM demangler. This does not affect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    //
    // This controller is intentionally written in a very verbose style. You will
    // notice:
    //
    // 1. Every 'if' statement has a matching 'else' (exception: simple error
    //    checks for a client API call)
    // 2. Things that may seem obvious are commented explicitly
    //
    // We call this style 'space shuttle style'. Space shuttle style is meant to
    // ensure that every branch and condition is considered and accounted for -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. configure.py

        else:
          print('{} is not executable.  Is it the python binary?'.format(
              python_bin_path))
        environ_cp['PYTHON_BIN_PATH'] = ''
    
      # Convert python path to Windows style before checking lib and version
      if is_windows() or is_cygwin():
        python_bin_path = cygpath(python_bin_path)
    
      # Get PYTHON_LIB_PATH
      python_lib_path = environ_cp.get('PYTHON_LIB_PATH')
    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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //     a C-style array.
    // ValuesIn(const Container& container)
    //   - returns a generator producing sequences with elements from
    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
Back to top