Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 31 for Mismatch (0.07 seconds)

  1. utils/utils_test.go

    	return got, want
    }
    
    func TestFileWithLineNumWrappedCallRegression(t *testing.T) {
    	got, want := fileWithLineNumWrappedOuterForTest()
    	if got != want {
    		t.Fatalf("FileWithLineNum wrapped caller mismatch, got %s, want %s", got, want)
    	}
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:31:30 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            final boolean result = testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            assertFalse(result);
            // Backup indices should be cleaned up on count mismatch
            assertTrue(testClient.deletedIndices.size() > 0);
        }
    
        @Test
        public void test_reindexConfigIndices_deleteFailureAfterRebuild() {
            testClient.existsIndexResult = true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  3. docs/ko/docs/advanced/generate-clients.md

    그리고 백엔드 코드를 업데이트한 뒤 프론트엔드를 **재생성(regenerate)**하면, 새 *경로 처리*가 메서드로 추가되고 기존 것은 제거되며, 그 밖의 변경 사항도 생성된 코드에 반영됩니다. 🤓
    
    이는 무언가 변경되면 그 변경이 클라이언트 코드에도 자동으로 **반영**된다는 뜻입니다. 또한 클라이언트를 **빌드(build)**하면 사용된 데이터가 **불일치(mismatch)**할 경우 오류가 발생합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            updateItem2.setNewOutput("r");
    
            // First update should succeed
            charMappingFile.update(updateItem1);
    
            // Second update should fail due to mismatch
            try {
                charMappingFile.update(updateItem2);
                fail("Should throw DictionaryException");
            } catch (DictionaryException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/hash/BloomFilterTest.java

            bf.writeTo(out);
            int actualSize = out.size();
            assertThat(bf.serializedSize()).isEqualTo(actualSize);
    
            assertWithMessage(
                    "Serialization size mismatch for expectedInsertions=%s, fpp=%s",
                    expectedInsertions, fpp)
                .that(actualSize)
                .isEqualTo(predictedSize);
          }
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 23K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.34.md

    - Added a flag to kubectl version to detect whether a client/server version mismatch was outside the officially supported range. ([#127365](https://github.com/kubernetes/kubernetes/pull/127365), [@omerap12](https://github.com/omerap12))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:19:43 GMT 2026
    - 368.7K bytes
    - Click Count (2)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                        final long backupCount = getDocumentCount(backupIndex);
                        if (backupCount != sourceCount) {
                            logger.warn("[Rebuild] Document count mismatch after reindex: source={}, backup={} for {}", sourceCount,
                                    backupCount, indexName);
                            deleteIndex(backupIndex);
                            success = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  8. docs/tr/docs/advanced/generate-clients.md

    Bu, bir şey değiştiğinde client code'a otomatik olarak **yansıyacağı** anlamına gelir. Ayrıca client'ı **build** ettiğinizde, kullanılan verilerde bir **uyuşmazlık** (mismatch) varsa hata alırsınız.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  9. RELEASE.md

            Keras models. This may potentially break some users, in case there is a
            mismatch between the shape used when creating `Input` objects in a
            Functional model, and the shape of the data passed to that model. You
            can fix this mismatch by either calling the model with correctly-shaped
            data, or by relaxing `Input` shape assumptions (note that you can pass
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
  10. CHANGELOG/CHANGELOG-1.36.md

    - Added warning when kubectl rollout undo is used on resources managed with kubectl apply to prevent unexpected behavior from annotation mismatch ([#137064](https://github.com/kubernetes/kubernetes/pull/137064), [@olamilekan000](https://github.com/olamilekan000)) [SIG CLI]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 23:38:00 GMT 2026
    - 142.1K bytes
    - Click Count (0)
Back to Top