Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 566 for Closest (0.79 sec)

  1. src/main/webapp/js/index.js

        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
        if (!$(e.target).closest("#searchOptions, #searchOptionsButton").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)
  2. staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go

    			Data: float64(math.MaxFloat64),
    			Out:  strconv.FormatFloat(math.MaxFloat64, 'g', -1, 64),
    		},
    		{
    			// Closest to zero without losing precision
    			In:   `2.2250738585072014e-308`,
    			Data: float64(2.2250738585072014e-308),
    			Out:  `2.2250738585072014e-308`,
    		},
    
    		{
    			// float64 closest to zero
    			In:   `4.940656458412465441765687928682213723651e-324`,
    			Data: float64(math.SmallestNonzeroFloat64),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotWatchedDirectoryFinder.java

         * so we learn if the file itself disappears or gets modified.
         * For directories, we only watch the directory itself, as we get
         * events for that.
         * In case of a missing file we need to find the closest existing
         * ancestor to watch so we can learn if the missing file respawns.
         */
        public static File getDirectoryToWatch(FileSystemLocationSnapshot snapshot) {
            File path = new File(snapshot.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/policy_options.go

    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	PreferClosestNUMANodes string = "prefer-closest-numa-nodes"
    )
    
    var (
    	alphaOptions = sets.New[string]()
    	betaOptions  = sets.New[string](
    		PreferClosestNUMANodes,
    	)
    	stableOptions = sets.New[string]()
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/numa_info.go

    	}
    
    	return numaInfo, nil
    }
    
    func (n *NUMAInfo) Narrowest(m1 bitmask.BitMask, m2 bitmask.BitMask) bitmask.BitMask {
    	if m1.IsNarrowerThan(m2) {
    		return m1
    	}
    	return m2
    }
    
    func (n *NUMAInfo) Closest(m1 bitmask.BitMask, m2 bitmask.BitMask) bitmask.BitMask {
    	// If the length of both bitmasks aren't the same, choose the one that is narrowest.
    	if m1.Count() != m2.Count() {
    		return n.Narrowest(m1, m2)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    tainer:function(b){if(b.valAttr("error-msg-container"))return a(b.valAttr("error-msg-container"));var c=b.parent();return"checkbox"===b.attr("type")&&b.closest(".checkbox").length?c=b.closest(".checkbox").parent():"radio"===b.attr("type")&&b.closest(".radio").length&&(c=b.closest(".radio").parent()),c.closest(".input-group").length&&(c=c.closest(".input-group").parent()),c},applyInputErrorStyling:function(a,b){a.addClass(b.errorElementClass).removeClass(b.successElementClass),this.getParentConta...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

             * <p>
             * The graph is represented as a list of nodes (in no particular order) and their {@link PlannedNode#getNodeDependencies() dependencies}.
             * The dependencies of each node are the closest nodes in the plan whose type is in the given set.
             *
             * @param types an inclusive range-subset of node types starting with the {@link NodeIdentity.NodeType#TASK TASK}, such as {@code [TASK, TRANSFORM_STEP]}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    oggle"===e&&n[e]()})},s(t,null,[{key:"VERSION",get:function(){return"4.0.0"}}]),t}(),p(document).on(O.CLICK_DATA_API,b,function(t){t.preventDefault();var e=t.target;p(e).hasClass(I)||(e=p(e).closest(N)),k._jQueryInterface.call(p(e),"toggle")}).on(O.FOCUS_BLUR_DATA_API,b,function(t){var e=p(t.target).closest(N)[0];p(e).toggleClass(A,/^focus(in)?$/.test(t.type))}),p.fn[m]=k._jQueryInterface,p.fn[m].Constructor=k,p.fn[m].noConflict=function(){return p.fn[m]=y,k._jQueryInterface},k),j=function(t){var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/return.go

    // with a single-pass label/break matching phase.
    
    // hasBreak reports if s is or contains a break statement
    // referring to the label-ed statement or implicit-ly the
    // closest outer breakable statement.
    func hasBreak(s syntax.Stmt, label string, implicit bool) bool {
    	switch s := s.(type) {
    	default:
    		panic("unreachable")
    
    	case *syntax.DeclStmt, *syntax.EmptyStmt, *syntax.ExprStmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/image/color/color.go

    }
    
    // Palette is a palette of colors.
    type Palette []Color
    
    // Convert returns the palette color closest to c in Euclidean R,G,B space.
    func (p Palette) Convert(c Color) Color {
    	if len(p) == 0 {
    		return nil
    	}
    	return p[p.Index(c)]
    }
    
    // Index returns the index of the palette color closest to c in Euclidean
    // R,G,B,A space.
    func (p Palette) Index(c Color) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top