Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for disposal (0.11 sec)

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

    i"},d="alert",m="fade",p="show",v=function(){function i(t){this._element=t}var t=i.prototype;return t.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},t.dispose=function(){g.removeData(this._element,a),this._element=null},t._getRootElement=function(t){var e=_.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n=n||g(t).closest("."+d)[0]},t._triggerCloseEvent=function(t){var e=g.Event(f.CLOSE);return...
    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. src/main/webapp/js/admin/bootstrap.min.js

    i"},d="alert",m="fade",p="show",v=function(){function i(t){this._element=t}var t=i.prototype;return t.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},t.dispose=function(){g.removeData(this._element,a),this._element=null},t._getRootElement=function(t){var e=_.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n=n||g(t).closest("."+d)[0]},t._triggerCloseEvent=function(t){var e=g.Event(f.CLOSE);return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    		wbBufFlush1(pp)
    
    		// Flush the gcWork, since this may create global work
    		// and set the flushedWork flag.
    		//
    		// TODO(austin): Break up these workbufs to
    		// better distribute work.
    		pp.gcw.dispose()
    		// Collect the flushedWork flag.
    		if pp.gcw.flushedWork {
    			atomic.Xadd(&gcMarkDoneFlushed, 1)
    			pp.gcw.flushedWork = false
    		}
    	})
    
    	if gcMarkDoneFlushed != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                return 1;
            } finally {
                if (localContainer != null) {
                    localContainer.dispose();
                }
            }
        }
    
        void initialize(CliRequest cliRequest) throws ExitException {
            if (cliRequest.workingDirectory == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    			workFlushed += gcw.heapScanWork
    			gcw.heapScanWork = 0
    		}
    	}
    
    	// Unlike gcDrain, there's no need to flush remaining work
    	// here because this never flushes to bgScanCredit and
    	// gcw.dispose will flush any remaining work to scanWork.
    
    	return workFlushed + gcw.heapScanWork
    }
    
    // scanblock scans b as scanobject would, but using an explicit
    // pointer bitmap instead of the heap bitmap.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `forkEvery` — default: 0 (no maximum)::
    This property specifies the maximum number of test classes that Gradle should run on a test process before its disposed of and a fresh one created. This is mainly used as a way to manage leaky tests or frameworks that have static state that can't be cleared or reset between tests.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    If the local keyring file isn't regularly updated, using <<sec:local-keyring,key export>>, then it may be that your CI builds, for example, would reach out to key servers too often (especially if you use disposable containers for builds).
    
    To avoid this, Gradle offers the ability to disallow use of key servers altogether: only the local keyring file would be used, and if a key is missing from this file, the build will fail.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top