Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for nonexistent1 (0.15 sec)

  1. testing/internal-testing/src/test/groovy/org/gradle/test/precondition/PredicateFileTest.groovy

            when:
            checkValidCombinations(["nonexistent"])
    
            then:
            final ex = thrown(IllegalArgumentException)
            ex.message.startsWith("Requested requirements [nonexistent] were not in the list of accepted combinations")
        }
    
        def "throws exception when single values are not found"() {
            when:
            checkValidCombinations(["nonexistent1", "nonexistent2"])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_bad_domain.txt

    
    # 'get -d' should be similarly definitive
    
    go get ./useappengine  # TODO(#41315): This should fail.
     # stderr '^useappengine[/\\]x.go:2:8: cannot find package$'
    
    ! go get  ./usenonexistent
    stderr '^go: x/usenonexistent imports\n\tnonexistent.rsc.io: cannot find module providing package nonexistent.rsc.io$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/svn/nonexistent.txt

    Bryan C. Mills <******@****.***> 1662034934 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 190 bytes
    - Viewed (0)
  4. tests/test_tutorial/test_security/test_tutorial003.py

        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Invalid authentication credentials"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    def test_incorrect_token_type():
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_security/test_tutorial003_an_py310.py

        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Invalid authentication credentials"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    @needs_py310
    def test_incorrect_token_type(client: TestClient):
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_security/test_tutorial003_py310.py

        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Invalid authentication credentials"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    @needs_py310
    def test_incorrect_token_type(client: TestClient):
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_security/test_tutorial003_an.py

        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Invalid authentication credentials"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    def test_incorrect_token_type():
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_security/test_tutorial003_an_py39.py

        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Invalid authentication credentials"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    @needs_py39
    def test_incorrect_token_type(client: TestClient):
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_svn.txt

    # Attempting to get a nonexistent module using svn should fail with a
    # reasonable message instead of a panic.
    ! go mod download vcs-test.golang.org/svn/nonexistent.svn@latest
    ! stderr panic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/run_wildcard.txt

    env GO111MODULE=off
    
    # Fix for https://github.com/golang/go/issues/28696:
    # go run x/... should not panic when directory x doesn't exist.
    
    ! go run nonexistent/...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 219 bytes
    - Viewed (0)
Back to top