Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for closeDot (0.2 sec)

  1. pkg/kubelet/cm/topologymanager/numa_info_test.go

    					2: {12, 12, 10, 11},
    					3: {12, 12, 11, 10},
    				},
    			},
    		},
    	}
    
    	for _, tc := range tcases {
    		t.Run(tc.description, func(t *testing.T) {
    
    			result := tc.numaInfo.Closest(tc.candidate, tc.current)
    			if result != tc.current && result != tc.candidate {
    				t.Errorf("Expected result to be either 'current' or 'candidate' hint")
    			}
    			if tc.expected == "current" && result != tc.current {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

          ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          if (activeMenuHdr != e.target.closest('.menu-item')) {
            cancelActiveMenu();
          }
        }, { passive: true, capture: true });
      }
    
      // If there is an active menu and an up event inside, retract the menu.
      document.addEventListener('mouseup', (e) => {
        if (activeMenu == e.target.closest('.submenu')) {
          cancelActiveMenu();
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    			return
    		}
    	}
    }
    
    // checkTagDuplicates checks a single struct field tag to see if any tags are
    // duplicated. nearest is the field that's closest to the field being checked,
    // while still being part of the top-level struct type.
    func checkTagDuplicates(pass *analysis.Pass, tag, key string, nearest, field *types.Var, seen *namesSeen, level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

            then:
            def e2 = thrown(IllegalStateException)
            e2.message == "Unknown detail level for node types: [TRANSFORM_STEP]"
        }
    
        def "plan node dependencies include transitively closest identifiable nodes"() {
            def taskConverter = new ToTestPlannedNodeConverter(TestTaskNode, NodeType.TASK)
            def collector = new PlannedNodeGraph.Collector(new ToPlannedNodeConverterRegistry([taskConverter]))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/dom.go

    				changed = true
    			}
    		}
    		if !changed {
    			break
    		}
    	}
    	// Set idom of entry block to nil instead of itself.
    	idom[f.Entry.ID] = nil
    	return idom
    }
    
    // intersect finds the closest dominator of both b and c.
    // It requires a postorder numbering of all the blocks.
    func intersect(b, c *Block, postnum []int, idom []*Block) *Block {
    	// TODO: This loop is O(n^2). It used to be used in nilcheck,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

            return new DefaultBuildIdentifier(absoluteBuildPath);
        }
    
        private Path assignPath(BuildState owner, String name, File dir) {
            // Get the closest ancestor build of the build directory which we are currently adding
            Optional<Map.Entry<File, NestedBuildState>> parentBuild = nestedBuildsByRootDir.entrySet().stream()
                .filter(entry -> isPrefix(entry.getKey(), dir))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/Quantiles.java

       * value returned by this method is the {@code i} in that range such that {@code allRequired[i]}
       * is as close as possible to the center of the range [{@code from}, {@code to}]. Choosing the
       * value closest to the center of the range first is the most efficient strategy because it
       * minimizes the size of the subranges from which the remaining selections must be done.
       */
      private static int chooseNextSelection(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    		for _, v := range strings.Split(v, "-") {
    			b.AddVariant(v)
    		}
    	}
    	for _, e := range tag.Extensions() {
    		b.AddExt(e)
    	}
    	return t
    }
    
    // FromTag reports closest matching ID for an internal language Tag.
    func FromTag(t language.Tag) (id ID, exact bool) {
    	// TODO: perhaps give more frequent tags a lower index.
    	// TODO: we could make the indexes stable. This will excluded some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/math/big/rat_test.go

    	}
    }
    
    func TestFloat32Distribution(t *testing.T) {
    	// Generate a distribution of (sign, mantissa, exp) values
    	// broader than the float32 range, and check Rat.Float32()
    	// always picks the closest float32 approximation.
    	var add = []int64{
    		0,
    		1,
    		3,
    		5,
    		7,
    		9,
    		11,
    	}
    	var winc, einc = uint64(5), 15 // quick test (~60ms on x86-64)
    	if *long {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
Back to top