Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NOP (0.13 sec)

  1. guava-tests/test/com/google/common/collect/ImmutableListCopyOfConcurrentlyModifiedInputTest.java

        runConcurrentlyMutatedTest(elements(), ops(add(1), nop()), wrap);
    
        runConcurrentlyMutatedTest(elements(), ops(add(1), remove()), wrap);
    
        runConcurrentlyMutatedTest(elements(), ops(nop(), add(1)), wrap);
    
        runConcurrentlyMutatedTest(elements(1), ops(remove(), nop()), wrap);
    
        runConcurrentlyMutatedTest(elements(1), ops(remove(), add(2)), wrap);
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableListCopyOfConcurrentlyModifiedInputTest.java

        runConcurrentlyMutatedTest(elements(), ops(add(1), nop()), wrap);
    
        runConcurrentlyMutatedTest(elements(), ops(add(1), remove()), wrap);
    
        runConcurrentlyMutatedTest(elements(), ops(nop(), add(1)), wrap);
    
        runConcurrentlyMutatedTest(elements(1), ops(remove(), nop()), wrap);
    
        runConcurrentlyMutatedTest(elements(1), ops(remove(), add(2)), wrap);
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                            try {
                                buf.append(URLEncoder.encode(String.valueOf(c), Constants.UTF_8));
                            } catch (final UnsupportedEncodingException e) {
                                // NOP
                            }
                        }
                    }
                    hash = buf.toString();
                } else {
                    hash = StringUtil.EMPTY;
                }
            } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                        } else {
                            encodedBuf.append(converted);
                        }
                    } catch (final UnsupportedEncodingException e) {
                        // NOP
                    }
                }
            }
    
            final String id = encodedBuf.toString();
            return MessageDigestUtil.digest(ComponentUtil.getFessConfig().getIndexIdDigestAlgorithm(), id);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
Back to top