Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for domeny (0.05 sec)

  1. src/main/resources/fess_label_pl.properties

    labels.employeeNumber=Numer pracownika
    labels.user_telephoneNumber=Numer telefonu
    labels.telephoneNumber=Numer telefonu
    labels.user_homePhone=Telefon (domowy)
    labels.homePhone=Telefon (domowy)
    labels.user_homePostalAddress=Adres pocztowy (domowy)
    labels.homePostalAddress=Adres pocztowy (domowy)
    labels.user_labeledURI=labeledURI
    labels.labeledURI=labeledURI
    labels.user_roomNumber=Numer pokoju
    labels.roomNumber=Numer pokoju
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

            assertEquals("D2guest", permissionHelper.encode("(deny){group}guest"));
            assertEquals("DRguest", permissionHelper.encode("(deny){role}guest"));
    
            assertEquals("(deny){user}guest", permissionHelper.decode("D1guest"));
            assertEquals("(deny){group}guest", permissionHelper.decode("D2guest"));
            assertEquals("(deny){role}guest", permissionHelper.decode("DRguest"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

        protected String userPrefix = "{user}";
    
        /** Prefix used to identify allow permissions */
        protected String allowPrefix = "(allow)";
    
        /** Prefix used to identify deny permissions */
        protected String denyPrefix = "(deny)";
    
        /** System helper for user/group/role search operations */
        @Resource
        protected SystemHelper systemHelper;
    
        /**
         * Default constructor for PermissionHelper.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        /*
         * Note that we do not run this test under Android at the moment. For Android testing, see
         * AbstractFutureDefaultAtomicHelperTest.
         */
    
        // First, ensure that our classloaders are initializing the correct helper versions:
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/PairedStatsAccumulator.java

        checkState(count() > 1);
        return sumOfProductsOfDeltas / (count() - 1);
      }
    
      /**
       * Returns the <a href="http://mathworld.wolfram.com/CorrelationCoefficient.html">Pearson's or
       * product-moment correlation coefficient</a> of the values. The count must greater than one, and
       * the {@code x} and {@code y} values must both have non-zero population variance (i.e. {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        /*
         * Note that we do not run this test under Android at the moment. For Android testing, see
         * AggregateFutureStateDefaultAtomicHelperTest.
         */
    
        // First, ensure that our classloaders are initializing the correct helper versions:
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        /*
         * Note that we do not run this test under Android at the moment. For Android testing, see
         * AbstractFutureDefaultAtomicHelperTest.
         */
    
        // First, ensure that our classloaders are initializing the correct helper versions:
    
        if (isJava8()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/PairedStats.java

        checkState(count() > 1);
        return sumOfProductsOfDeltas / (count() - 1);
      }
    
      /**
       * Returns the <a href="http://mathworld.wolfram.com/CorrelationCoefficient.html">Pearson's or
       * product-moment correlation coefficient</a> of the values. The count must greater than one, and
       * the {@code x} and {@code y} values must both have non-zero population variance (i.e. {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

            assertTrue(pattern.match("/test/path"));
        }
    
        public void test_labelTypePattern_match_multilinePaths() {
            LabelTypePattern pattern = new LabelTypePattern("test", "/test.*\n/another.*", "/exclude.*\n/deny.*");
    
            // Should match first included path
            assertTrue(pattern.match("/test/path"));
    
            // Should match second included path
            assertTrue(pattern.match("/another/path"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

            testData.clear();
            testData.add(createRelatedContent("test", "Updated Content", ""));
            mockBhv.setTestData(testData);
    
            relatedContentHelper.update();
            // Give a moment for async execution
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                // ignore
            }
    
            results = relatedContentHelper.getRelatedContents("test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
Back to top