Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 60 for existants (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/fr/docs/alternatives.md

    La principale fonctionnalité que j'ai emprunté à Django REST Framework était la documentation automatique des API.
    
    Puis j'ai découvert qu'il existait une norme pour documenter les API, en utilisant JSON (ou YAML, une extension de JSON) appelée Swagger.
    
    Il existait déjà une interface utilisateur Web pour les API Swagger. Donc, être capable de générer une documentation
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 17:48:49 GMT 2025
    - 27.5K bytes
    - Click Count (0)
  2. cmd/object-api-multipart_test.go

    	_, err = obj.NewMultipartUpload(context.Background(), bucket, object, opts)
    	if err == nil {
    		t.Fatalf("%s: Expected to fail since the NewMultipartUpload is initialized on a non-existent bucket.", instanceType)
    	}
    	if errMsg != err.Error() {
    		t.Errorf("%s, Expected to fail with Error \"%s\", but instead found \"%s\".", instanceType, errMsg, err.Error())
    	}
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 89.4K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

         * We overload this because we want readAndXWireFormat to
         * read the parameter words and bytes. This is so when
         * commands are batched together we can recursivly call
         * readAndXWireFormat without reading the non-existent header.
         */
    
        @Override
        public int decode(final byte[] buffer, int bufferIndex) throws SMBProtocolDecodingException {
            final int start = this.headerStart = bufferIndex;
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriterTest.java

        }
    
        @Test
        public void test_deleteNonExistent() throws Exception {
            SuggestWriterResult result = writer.delete(runner.client(), suggester.settings(), suggester.getIndex(), "non-existent-id");
    
            assertNotNull(result);
            assertFalse(result.hasFailure());
        }
    
        @Test
        public void test_deleteByQuery() throws Exception {
            SuggestItem[] items = new SuggestItem[3];
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 18.2K bytes
    - Click Count (0)
  5. docs/es/docs/help-fastapi.md

        * También puedes ayudar a revisar las traducciones creadas por otros.
    * Para proponer nuevas secciones de documentación.
    * Para corregir un issue/bug existente.
        * Asegúrate de agregar tests.
    * Para agregar una nueva funcionalidad.
        * Asegúrate de agregar tests.
        * Asegúrate de agregar documentación si es relevante.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 10:15:01 GMT 2025
    - 14.8K bytes
    - Click Count (0)
  6. docs/pt/docs/help-fastapi.md

        * Você também pode ajudar a revisar as traduções criadas por outras pessoas.
    * Para propor novas seções de documentação.
    * Para corrigir uma issue/bug existente.
        * Garanta que você adicione testes.
    * Para adicionar uma nova funcionalidade.
        * Garanta que você adicione testes.
        * Garanta que você adicione documentação se for relevante.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

            assertTrue(result); // Should still return true even with no matches
        }
    
        @Test(expected = SuggesterException.class)
        public void testDeleteByQueryWithInvalidIndex() {
            // Test delete with non-existent index
            SuggestUtil.deleteByQuery(client, settings, "nonexistent_index", QueryBuilders.matchAllQuery());
        }
    
        @Test
        public void testDeleteScrollContext() {
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 26.7K bytes
    - Click Count (0)
  8. cmd/erasure-multipart.go

    			return nil, err
    		}
    
    		// if object doesn't exist return error for If-Match conditional requests
    		// If-None-Match should be allowed to proceed for non-existent objects
    		if err != nil && opts.HasIfMatch && (isErrObjectNotFound(err) || isErrVersionNotFound(err)) {
    			return nil, err
    		}
    	}
    
    	userDefined := cloneMSS(opts.UserDefined)
    	if opts.PreserveETag != "" {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 47.1K bytes
    - Click Count (0)
  9. cmd/object-api-putobject_test.go

    		// Case with invalid object names.
    		4: {bucketName: bucket, inputData: []byte(""), expectedError: ObjectNameInvalid{Bucket: bucket, Object: ""}},
    
    		// Valid object and bucket names but non-existent bucket.
    		5: {bucketName: "abc", objName: "def", inputData: []byte(""), expectedError: BucketNotFound{Bucket: "abc"}},
    
    		// Input to replicate Md5 mismatch.
    		6: {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 25.8K bytes
    - Click Count (0)
  10. src/archive/tar/common.go

    	ErrWriteAfterClose = errors.New("archive/tar: write after close")
    	ErrInsecurePath    = errors.New("archive/tar: insecure file path")
    	errMissData        = errors.New("archive/tar: sparse file references non-existent data")
    	errUnrefData       = errors.New("archive/tar: sparse file contains unreferenced data")
    	errWriteHole       = errors.New("archive/tar: write non-NUL byte in sparse hole")
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Oct 07 19:46:36 GMT 2025
    - 24.5K bytes
    - Click Count (0)
Back to Top