Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for fails (0.03 sec)

  1. codeql.yml

    om/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs L74: # queries: security-extended,security-and-quality L75: L76: # If the analyze step fails for one of the languages you are analyzing with L77: # "We were unable to automatically build your code", modify the matrix above L78: # to set the build mode to "manual" for that language. Then modify this step L79: # to build your code....
    github.com/codelibs/fess/.github/workflows/code...
    Wed Aug 14 23:51:19 UTC 2024
      4.4K bytes
  2. GeneralTests.java

    getItemEndpointSuffix() { L63: return ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>();...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.6K bytes
  3. StopwordsTests.java

    L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.it.admin.dict; L17: L18:import static org.junit.jupiter.api.Assertions.fail; L19: L20:import java.util.HashMap; L21:import java.util.Map; L22: L23:import org.junit.jupiter.api.Tag; L24:import org.junit.jupiter.api.Test; L25: L26:@Tag("it") L27:public class StopwordsTests extends DictCrudTestBase { L28: L29: private static...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.3K bytes
  4. LogTests.java

    getItemEndpointSuffix() { L62: return ITEM_ENDPOINT_SUFFIX; L63: } L64: L65: @Override L66: protected Map<String, Object> createTestParam(int id) { L67: fail(); // Unreachable L68: return null; L69: } L70: L71: @Override L72: protected Map<String, Object> getUpdateMap() { L73: fail(); // Unreachable L74: return null; L75: } L76: L77: @Override L78: protected void testRead() { L79: final Map<String, Object> searchBody = new HashMap<>();...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.5K bytes
  5. CurlTest.java

    express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.curl; L17: L18:import static org.junit.Assert.assertTrue; L19:import static org.junit.Assert.fail; L20: L21:import java.util.logging.Level; L22:import java.util.logging.Logger; L23: L24:import org.junit.Test; L25: L26:public class CurlTest { L27: private static final Logger logger = Logger.getLogger(CurlTest.class.getName()); L28: L29: @Test...
    github.com/codelibs/curl4j/src/test/java/org/co...
    Mon Nov 14 21:05:19 UTC 2022
      2.5K bytes
  6. RoleQueryHelperTest.java

    assertEquals(3, roleSet.size()); L94: assertTrue(roleSet.contains("role1")); L95: assertTrue(roleSet.contains("role2")); L96: assertTrue(roleSet.contains("role3")); L97: L98: getMockRequest().setParameter("fess2", "fail"); L99: roleSet = buildByParameter(roleQueryHelperImpl, getMockRequest()); L100: assertEquals(0, roleSet.size()); L101: L102: roleQueryHelperImpl.parameterKey = "fess3"; L103: L104: roleQueryHelperImpl.encryptedParameterValue...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.2K bytes
  7. BackupTests.java

    getItemEndpointSuffix() { L62: return ITEM_ENDPOINT_SUFFIX; L63: } L64: L65: @Override L66: protected Map<String, Object> createTestParam(int id) { L67: fail(); // Unreachable L68: return null; L69: } L70: L71: @Override L72: protected Map<String, Object> getUpdateMap() { L73: fail(); // Unreachable L74: return null; L75: } L76: L77: @Override L78: protected void testRead() { L79: final Map<String, Object> searchBody = new HashMap<>();...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.5K bytes
  8. SuggestTests.java

    getItemEndpointSuffix() { L63: return ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>();...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.7K bytes
  9. DictTests.java

    getItemEndpointSuffix() { L63: return ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>();...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.7K bytes
  10. DefaultQueryBuilderTest.java

    public void test_invalid_null() { L23: try { L24: new DefaultQueryBuilder(null); L25: fail(); L26: } catch (IllegalArgumentException e) { L27: // nothing L28: } L29: } L30: L31: public void test_invalid_query() { L32: try { L33: new DefaultQueryBuilder(QueryBuilders.matchAllQuery()); L34: fail(); L35: } catch (IllegalArgumentException e) { L36: // nothing L37: } L38: } L39:}...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 11 08:26:36 UTC 2024
      1.2K bytes
Back to top