Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for c404 (0.11 sec)

  1. src/net/http/client_test.go

    		`GET / ""`,
    		`POST /?code=304 "c304"`,
    		`POST /?code=305 "c305"`,
    		`POST /?code=307&next=303,308,302 "c307"`,
    		`POST /?code=303&next=308,302 "c307"`,
    		`GET /?code=308&next=302 ""`,
    		`GET /?code=302 "c307"`,
    		`GET / ""`,
    		`POST /?code=308&next=302,301 "c308"`,
    		`POST /?code=302&next=301 "c308"`,
    		`GET /?code=301 ""`,
    		`GET / ""`,
    		`POST /?code=404 "c404"`,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. hack/verify-licenses.sh

            fi
            continue
        fi
    
        if [[ "$(http_code "${LICENSE_URL}")" != 404 ]]; then
            echo "${GO_PACKAGE}  ${LICENSE_NAME}  ${LICENSE_URL}" >> "${ARTIFACTS}"/approved_licenses.dump
            continue
        fi
    
        # The URL 404'ed.  Try parent-paths.
    
        #echo -e "DBG: err 404 ${LICENSE_URL}"
        dir="$(dirname "${LICENSE_URL}")"
        file="$(basename "${LICENSE_URL}")"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

                // 404
                throw responseManager.new404("Thumbnail for " + form.docId + " is not found.");
            }
    
            final File thumbnailFile = thumbnailManager.getThumbnailFile(doc);
            if (thumbnailFile == null) {
                if (fessConfig.isThumbnailEnabled()) {
                    thumbnailManager.offer(doc);
                }
                // 404
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    	SYS_MSGSND                       = 4400
    	SYS_MSGRCV                       = 4401
    	SYS_MSGCTL                       = 4402
    	SYS_CLOCK_GETTIME64              = 4403
    	SYS_CLOCK_SETTIME64              = 4404
    	SYS_CLOCK_ADJTIME64              = 4405
    	SYS_CLOCK_GETRES_TIME64          = 4406
    	SYS_CLOCK_NANOSLEEP_TIME64       = 4407
    	SYS_TIMER_GETTIME64              = 4408
    	SYS_TIMER_SETTIME64              = 4409
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/RegexRuleTest.java

            responseData.setHttpStatusCode(404);
            responseData.setUrl("http://example.com/");
            responseData.setMimeType("text/plain");
            return responseData;
        }
    
        private ResponseData getTestData4() {
            final ResponseData responseData = new ResponseData();
            responseData.setHttpStatusCode(404);
            responseData.setUrl("https://example.com/");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. docs_src/dependencies/tutorial008d.py

            raise InternalError(
                f"The portal gun is too dangerous to be owned by {username}"
            )
        if item_id != "plumbus":
            raise HTTPException(
                status_code=404, detail="Item not found, there's only a plumbus here"
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 694 bytes
    - Viewed (0)
  7. docs_src/dependencies/tutorial008d_an.py

            raise InternalError(
                f"The portal gun is too dangerous to be owned by {username}"
            )
        if item_id != "plumbus":
            raise HTTPException(
                status_code=404, detail="Item not found, there's only a plumbus here"
            )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 744 bytes
    - Viewed (0)
  8. tests/test_tutorial/test_dependencies/test_tutorial008c.py

        client = TestClient(app)
        return client
    
    
    def test_get_no_item(client: TestClient):
        response = client.get("/items/foo")
        assert response.status_code == 404, response.text
        assert response.json() == {"detail": "Item not found, there's only a plumbus here"}
    
    
    def test_get(client: TestClient):
        response = client.get("/items/plumbus")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_bigger_applications/test_main_an.py

    
    def test_items_bar_token_jessica(client: TestClient):
        response = client.get(
            "/items/bar?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 404
        assert response.json() == {"detail": "Item not found"}
    
    
    def test_items_plumbus_with_no_token(client: TestClient):
        response = client.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

    @needs_py39
    def test_items_bar_token_jessica(client: TestClient):
        response = client.get(
            "/items/bar?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 404
        assert response.json() == {"detail": "Item not found"}
    
    
    @needs_py39
    def test_items_plumbus_with_no_token(client: TestClient):
        response = client.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top