Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for one_of (0.15 sec)

  1. .github/workflows/labeler.yml

        needs:
          - labeler
        permissions:
          pull-requests: read
        runs-on: ubuntu-latest
        steps:
          - uses: docker://agilepathway/pull-request-label-checker:latest
            with:
              one_of: breaking,security,feature,bug,refactor,upgrade,docs,lang-all,internal
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 07 20:11:20 UTC 2024
    - 828 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

            assertEquals("1.024KB", MemoryUtil.byteCountToDisplaySize(FileUtils.ONE_KB));
            assertEquals("999.999KB", MemoryUtil.byteCountToDisplaySize(999_999L));
            assertEquals("1000KB", MemoryUtil.byteCountToDisplaySize(1000_000L));
            assertEquals("1.024MB", MemoryUtil.byteCountToDisplaySize(FileUtils.ONE_MB));
            assertEquals("976.562MB", MemoryUtil.byteCountToDisplaySize(999_999_999L));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/DialectVersion.java

         *            may be null for open end
         * @return range of versions
         */
        public static Set<DialectVersion> range ( DialectVersion min, DialectVersion max ) {
            EnumSet<DialectVersion> vers = EnumSet.noneOf(DialectVersion.class);
            for ( DialectVersion ver : values() ) {
    
                if ( min != null && !ver.atLeast(min) ) {
                    continue;
                }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/EnumMultisetTest.java

        assertEquals(0, ms.count(Color.BLUE));
        assertEquals(1, ms.count(Color.YELLOW));
        assertEquals(2, ms.count(Color.RED));
      }
    
      public void testIllegalCreate() {
        Collection<Color> empty = EnumSet.noneOf(Color.class);
        assertThrows(IllegalArgumentException.class, () -> EnumMultiset.create(empty));
      }
    
      public void testCreateEmptyWithClass() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java

        private List<ModelProblem> problems;
    
        private String source;
    
        private Model sourceModel;
    
        private Model rootModel;
    
        private Set<ModelProblem.Severity> severities = EnumSet.noneOf(ModelProblem.Severity.class);
    
        DefaultModelProblemCollector(ModelBuildingResult result) {
            this.result = result;
            this.problems = result.getProblems();
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel-cni-lifecycle.md

    1. CNI sends the current state of all pods on the node. Ztunnel establishes listeners in each pod running on the node, and marks itself "ready".
    1. At this point, we have both Ztunnels listening. New connections will be assigned to _either one_.
    1. Shortly after, Kubernetes will start terminating `ztunnel-old`. It does this initially by sending a `SIGTERM`. `ztunnel-old` will catch this, and start "draining".
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top