Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for recid1 (0.29 sec)

  1. tests/migrate_test.go

    		type MigrateDecimalColumn struct {
    			RecID1 int64 `gorm:"column:recid1;type:decimal(9,0);not null" json:"recid1"`
    			RecID2 int64 `gorm:"column:recid2;type:decimal(8);not null" json:"recid2"`
    			RecID3 int64 `gorm:"column:recid3;type:decimal(8,1);not null" json:"recid3"`
    		}
    		type MigrateDecimalColumn2 struct {
    			RecID1 int64 `gorm:"column:recid1;type:decimal(8);not null" json:"recid1"`
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 65.2K bytes
    - Viewed (0)
  2. 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)
  3. docs/es/docs/tutorial/middleware.md

    ///
    
    ## Crear un middleware
    
    Para crear un middleware usas el decorador `@app.middleware("http")` encima de una función.
    
    La función middleware recibe:
    
    * La `request`.
    * Una función `call_next` que recibirá la `request` como parámetro.
        * Esta función pasará la `request` a la correspondiente *path operation*.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/encoder.md

    Para eso, **FastAPI** proporciona una función `jsonable_encoder()`.
    
    ## Usando el `jsonable_encoder`
    
    Imaginemos que tienes una base de datos `fake_db` que solo recibe datos compatibles con JSON.
    
    Por ejemplo, no recibe objetos `datetime`, ya que no son compatibles con JSON.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "format": "time_series",
              "instant": false,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{bucket,range}}",
              "refId": "A",
              "step": 300
            }
          ],
          "title": "Object Size Distribution",
          "type": "bargauge"
        },
        {
          "datasource": {
            "type": "prometheus",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 101.9K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

              "expr": "sum by (server) (minio_node_replication_average_active_workers{job=\"$scrape_jobs\"})",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{server}}",
              "refId": "A"
            }
          ],
          "title": "Avg. Active Workers",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 57.5K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "expr": "sum by (server) (minio_cluster_replication_received_bytes{job=\"$scrape_jobs\"})",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{server}}",
              "refId": "A"
            }
          ],
          "title": "Received Data",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 71.2K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/features/TesterAnnotation.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Use this to meta-annotate {@code XxxFeature.Require} annotations, so that those annotations can
     * be used to decide whether to apply a test to a given class-under-test.
     *
     * <p>This is needed because annotations can't implement interfaces, which is also why reflection is
     * used to extract values from the properties of the various annotations.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{instance}}",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Uptime",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 93.1K bytes
    - Viewed (0)
  10. 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)
Back to top