Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 566 for Closest (0.11 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/toggleDisabled.js

    ed")}).find("*[data-validation]").valAttr("event","keyup change").on("validation",function(b,c){if(!f){f=!0;var g=a(this).closest("form");c&&d(g,this,h)?e(g,"enabled"):e(g,"disabled"),f=!1}}).on("afterValidation",k).on("blur",function(){a(this).valAttr("have-been-blurred",1)}).each(function(){var b=a(this),c=b.attr("data-validation");c.indexOf("checkbox_group")>-1&&b.closest("form").find('input[name="'+b.attr("name")+'"]').each(function(){a(this).on("change",function(){b.validate()})})}),i.find(...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/main/resources/footer.html

        if (!Element.prototype.matches) {
            Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
        }
        // Polyfill Element.closest()
        if (!Element.prototype.closest) {
            Element.prototype.closest = function (s) {
                var el = this;
                if (!document.documentElement.contains(el)) return null;
                do {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

        }
    
        def "chooses closest API"() {
            when:
            def consumer = versionAttribute('7.2')
            def producer = [
                versionAttribute('6.0'),
                versionAttribute('7.0'),
                versionAttribute('7.1'), // 7.1 is the closest compatible (i.e. lower) version to 7.2 in this list
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/MultipleCandidatesDetails.java

         */
        Set<T> getCandidateValues();
    
        /**
         * Calling this method indicates that the candidate is the closest match. It is allowed to call this method several times with
         * different values, in which case it indicates that multiple candidates are equally compatible.
         *
         * @param candidate The closest match. Must be present in {@link #getCandidateValues()}.
         */
        void closestMatch(T candidate);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 11 17:38:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    		var locs []*profile.Location
    		var match bool
    		for i := range keys {
    			// Loop backwards, ensuring the first tag is closest to the root,
    			// and the last tag is closest to the leaves.
    			k := keys[len(keys)-1-i]
    			values := formatLabelValues(s, k, outputUnit)
    			if len(values) > 0 {
    				match = true
    			}
    			locKey := locKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. cmd/import-boss/README.md

    contain rules which are evaluated against each dependency of the package in
    question.
    
    Evaluation starts with the rules file closest to the package.  If that file
    makes a determination to allow or forbid the import, evaluation is done.  If
    the import does not match any rule, the next-closest rules file is consulted,
    and so forth.  If the rules files are exhausted and no determination has been
    made, the import will be flagged as an error.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. test-site/public/javascripts/suggestor.js

                                    }
                                });
                                $liEle.hover(function() {
                                    listSelNum = $(this).closest("ol").children("li").index(this) + 1;
                                    $(this).closest("ol").children("li").each(function(i){
                                        if(i == (listSelNum-1)) {
                                            if(typeof listSelectedCssInfo === 'undefined') {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/suggestor.js

                        function() {
                          listSelNum =
                            $(this)
                              .closest("ol")
                              .children("li")
                              .index(this) + 1;
                          $(this)
                            .closest("ol")
                            .children("li")
                            .each(function(i) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. src/main/webapp/js/help.js

        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
        if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
          $("#searchOptions").removeClass("active");
        }
      });
    
      $("[data-toggle='control-options']").click(function(e) {
        e.preventDefault();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

    $(document).ready(function () {
    
        // Attach controls for column groups in tables
        var controls = $("div#controls");
        var groups = [];
        var slices = [];
        $("tr.control-groups").closest("table").find("tr").each(function() {
            var row = $(this);
            if (row.hasClass('control-groups')) {
                var currentCol = 0;
                slices = [];
                row.find("th").each(function(){
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top