Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 204 for 9110 (0.02 sec)

  1. pom.xml

    			<artifactId>hamcrest</artifactId>
    			<version>2.2</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.mockito</groupId>
    			<artifactId>mockito-core</artifactId>
    			<version>5.11.0</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.testcontainers</groupId>
    			<artifactId>testcontainers</artifactId>
    			<version>1.21.3</version>
    			<scope>test</scope>
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparatorTest.java

            // Leaf nodes (no downstream dependencies)
            assertEquals(1L, weightX, "Project X should have weight 1 (1 + 0)");
            assertEquals(1L, weightY, "Project Y should have weight 1 (1 + 0)");
            assertEquals(1L, weightZ, "Project Z should have weight 1 (1 + 0)");
    
            // Middle nodes
            assertEquals(2L, weightB, "Project B should have weight 2 (1 + max(X=1, Y=1))");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Aug 06 12:03:40 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/Cache.java

       * @since 11.0
       */
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this
      V get(K key, Callable<? extends V> loader) throws ExecutionException;
    
      /**
       * Returns a map of the values associated with {@code keys} in this cache. The returned map will
       * only contain entries which are already present in the cache.
       *
       * @since 11.0
       */
      /*
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. requirements-docs.txt

    jieba==0.42.1
    # For image processing by Material for MkDocs
    pillow==11.3.0
    # For image processing by Material for MkDocs
    cairosvg==2.8.2
    mkdocstrings[python]==0.30.1
    griffe-typingdoc==0.3.0
    griffe-warnings-deprecated==1.1.0
    # For griffe, it formats with black
    black==25.1.0
    mkdocs-macros-plugin==1.4.1
    markdown-include-variants==0.0.8
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 14:39:10 UTC 2025
    - 554 bytes
    - Viewed (0)
  5. compat/maven-repository-metadata/pom.xml

              <version>1.2.0</version>
              <models>
                <model>../../api/maven-api-metadata/src/main/mdo/metadata.mdo</model>
              </models>
              <params>
                <param>forcedIOModelVersion=1.1.0</param>
                <param>packageModelV3=org.apache.maven.artifact.repository.metadata</param>
                <param>packageModelV4=org.apache.maven.api.metadata</param>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. impl/maven-cli/src/test/resources/userHome/.m2/settings.xml

    <settings xmlns="http://maven.apache.org/SETTINGS/1.1.0">
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Jun 16 14:57:14 UTC 2025
    - 70 bytes
    - Viewed (0)
  7. tests/gorm_test.go

    package tests_test
    
    import (
    	"testing"
    
    	"gorm.io/driver/mysql"
    
    	"gorm.io/gorm"
    )
    
    func TestOpen(t *testing.T) {
    	dsn := "gorm:gorm@tcp(localhost:9910)/gorm?loc=Asia%2FHongKong" // invalid loc
    	_, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
    	if err == nil {
    		t.Fatalf("should returns error but got nil")
    	}
    }
    
    func TestReturningWithNullToZeroValues(t *testing.T) {
    	dialect := DB.Dialector.Name()
    	switch dialect {
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Thu Jun 01 07:22:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. tests/test_file_and_form_order_issue_9116.py

    """
    Regression test, Error 422 if Form is declared before File
    See https://github.com/tiangolo/fastapi/discussions/9116
    """
    
    from pathlib import Path
    from typing import Annotated
    
    import pytest
    from fastapi import FastAPI, File, Form
    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    
    @app.post("/file_before_form")
    def file_before_form(
        file: bytes = File(),
        city: str = Form(),
    ):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. tests/tests_test.go

    	"gorm.io/driver/sqlite"
    	"gorm.io/driver/sqlserver"
    	"gorm.io/gorm"
    	"gorm.io/gorm/logger"
    	. "gorm.io/gorm/utils/tests"
    )
    
    var DB *gorm.DB
    var (
    	mysqlDSN     = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    	postgresDSN  = "user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai"
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. .github/workflows/tests.yml

          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=mysql GORM_DSN="gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True" ./tests/tests_all.sh
    
      mariadb:
        strategy:
          matrix:
            dbversion: [ 'mariadb:latest' ]
            go: ['1.24', '1.25']
            platform: [ ubuntu-latest ]
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Mon Sep 08 09:19:22 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top