Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for recid1 (0.17 sec)

  1. src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java

            // Test registration with null/empty values
            String regId1 = mockService.registerWitness(null, "192.168.1.100", 1);
            assertNotNull(regId1);
    
            String regId2 = mockService.registerWitness("", "192.168.1.100", 1);
            assertNotNull(regId2);
    
            String regId3 = mockService.registerWitness("\\\\server\\share", null, 1);
            assertNotNull(regId3);
    
            assertEquals(3, mockService.getRegistrationCount());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            generator.available = true;
            generator.target = true;
            generator.task = new Tuple3<>("generator1", "docid1", "path1");
            thumbnailManager.add(generator);
    
            Map<String, Object> docMap = new HashMap<>();
            docMap.put("_id", "docid1");
            docMap.put("url", "http://example.com");
    
            boolean result = thumbnailManager.offer(docMap);
            assertTrue(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/node/minio-node.json

              "hide": false,
              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Total Drives",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  4. tests/create_test.go

    	}
    
    	// case 2: create from *map[string]interface{}
    	record1 := map[string]interface{}{"name": "create_from_map_with_table_1", "age": 18}
    	tableDB2 := DB.Table("users")
    	if err := tableDB2.Create(&record1).Error; err != nil {
    		t.Fatalf("failed to create data from map, got error: %v", err)
    	}
    	if _, ok := record1["@id"]; !ok && supportLastInsertID {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 09:55:20 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/security/oauth2-scopes.md

    Ahora revisemos esos cambios paso a paso.
    
    ## Esquema de seguridad OAuth2
    
    El primer cambio es que ahora estamos declarando el esquema de seguridad OAuth2 con dos scopes disponibles, `me` y `items`.
    
    El parámetro `scopes` recibe un `dict` con cada scope como clave y la descripción como valor:
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[63:66] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                byte[] buffer = new byte[10];
                SMBUtil.writeInt2(4, buffer, 0);
    
                // When
                int read1 = response1.readBytesWireFormat(buffer, 0);
                int read2 = response2.readBytesWireFormat(buffer, 0);
    
                // Then
                assertEquals(4, read1);
                assertEquals(4, read2);
            }
        }
    
        @Nested
        @DisplayName("Edge case tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/bigger-applications.md

    Os parâmetros `prefix`, `tags`, `responses` e `dependencies` são (como em muitos outros casos) apenas um recurso do **FastAPI** para ajudar a evitar duplicação de código.
    
    ///
    
    ### Importar as dependências
    
    Este código reside no módulo `app.routers.items`, o arquivo `app/routers/items.py`.
    
    E precisamos obter a função de dependência do módulo `app.dependencies`, o arquivo `app/dependencies.py`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  8. docs/tr/docs/alternatives.md

    pek de kolay değil.
    
    Biraz daha detaylı ayarlamalara gerek duyuyor. Ayrıca <abbr title="ASGI (Asynchronous Server Gateway Interface): Asenkron Sunucu Ağ Geçidi Arabirimi, asenkron Python web uygulamaları geliştirmek için yeni standart.">ASGI</abbr> yerine <abbr title="WSGI (Web Server Gateway Interface): Web Sunucusu Ağ Geçidi Arabirimi, Pythonda senkron web uygulamaları geliştirmek için eski standart.">WSGI</abbr>'a dayanıyor. Yani Uvicorn, Starlette ve Sanic gibi araçların yüksek performansından...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java

            // When - simulate multiple concurrent reads on same response object
            int read1 = response.readBytesWireFormat(buffer, 0);
            int read2 = response.readBytesWireFormat(buffer, 0);
            int read3 = response.readBytesWireFormat(buffer, 0);
    
            // Then - all reads should return same result
            assertEquals(4, read1);
            assertEquals(4, read2);
            assertEquals(4, read3);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/https.md

    The browser would then communicate with that IP address on **port 443** (the HTTPS port).
    
    The first part of the communication is just to establish the connection between the client and the server and to decide the cryptographic keys they will use, etc.
    
    <img src="/img/deployment/https/https02.drawio.svg">
    
    This interaction between the client and the server to establish the TLS connection is called the **TLS handshake**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 14.3K bytes
    - Viewed (0)
Back to top