- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,414 for check (0.04 sec)
-
cmd/xl-storage-errors.go
return errors.Is(err, syscall.EIO) } // Check if the given error corresponds to EISDIR (is a directory). func isSysErrIsDir(err error) bool { return errors.Is(err, syscall.EISDIR) } // Check if the given error corresponds to ENOTDIR (is not a directory). func isSysErrNotDir(err error) bool { return errors.Is(err, syscall.ENOTDIR) } // Check if the given error corresponds to the ENAMETOOLONG (name too long).
Registered: 2024-11-03 19:28 - Last Modified: 2023-03-06 16:56 - 3.8K bytes - Viewed (0) -
misc/go_android_exec/exitcode_test.go
t.Errorf("want full output %q, got %q", text, got) } } wantErr = regexp.MustCompile("^no exit code") check("abc") check("exitcode") check("exitcode=") check("exitcode=123\n") wantErr = regexp.MustCompile("^bad exit code: .* value out of range") check("exitcode=999999999999999999999999")
Registered: 2024-11-05 11:13 - Last Modified: 2023-05-03 14:54 - 2.1K bytes - Viewed (0) -
.pre-commit-config.yaml
default_language_version: python: python3.10 repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: check-added-large-files - id: check-toml - id: check-yaml args: - --unsafe - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.7.1 hooks:
Registered: 2024-11-03 07:19 - Last Modified: 2024-10-28 20:31 - 733 bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FakeRoutePlanner.kt
var connectTlsNextPlan: FakePlan? = null fun createRetry(): FakePlan { check(retry == null) return FakePlan(nextPlanId++) .also { retry = it } } fun createConnectTcpNextPlan(): FakePlan { check(connectTcpNextPlan == null) return FakePlan(nextPlanId++) .also { connectTcpNextPlan = it }
Registered: 2024-11-01 11:42 - Last Modified: 2024-04-24 04:40 - 6.2K bytes - Viewed (0) -
.github/workflows/tests.yml
- 9920:5432 # Set health checks to wait until postgres has started options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Set up Go 1.x uses: actions/setup-go@v4 with: go-version: ${{ matrix.go }} - name: Check out code into the Go module directory
Registered: 2024-11-03 09:35 - Last Modified: 2024-09-30 03:21 - 6.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp
<div class="form-check"> <la:checkbox styleId="jobLogging" styleClass="form-check-input" property="jobLogging"/> <label for="jobLogging" class="form-check-label"> <la:message key="labels.enabled"/>
Registered: 2024-10-31 13:40 - Last Modified: 2023-01-16 12:54 - 9.6K bytes - Viewed (0) -
tests/test_infer_param_optionality.py
client = TestClient(app) def test_get_users(): """Check that /users returns expected data""" response = client.get("/users") assert response.status_code == 200, response.text assert response.json() == [{"user_id": "u1"}, {"user_id": "u2"}] def test_get_user(): """Check that /users/{user_id} returns expected data""" response = client.get("/users/abc123")
Registered: 2024-11-03 07:19 - Last Modified: 2023-07-07 17:12 - 13.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http/RealInterceptorChain.kt
@Throws(IOException::class) override fun proceed(request: Request): Response { check(index < interceptors.size) calls++ if (exchange != null) { check(exchange.finder.routePlanner.sameHostAndPort(request.url)) { "network interceptor ${interceptors[index - 1]} must retain the same host and port" } check(calls == 1) {
Registered: 2024-11-01 11:42 - Last Modified: 2024-01-08 01:13 - 4.2K bytes - Viewed (0) -
docs/bucket/replication/setup_ilm_expiry_replication.sh
Registered: 2024-11-03 19:28 - Last Modified: 2024-09-06 09:42 - 12.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt
override fun settings( clearPrevious: Boolean, settings: Settings, ) { check(type == -1) this.type = Http2.TYPE_SETTINGS this.clearPrevious = clearPrevious this.settings = settings } override fun ackSettings() { check(type == -1) this.type = Http2.TYPE_SETTINGS this.ack = true } override fun headers(
Registered: 2024-11-01 11:42 - Last Modified: 2024-04-11 22:09 - 8.7K bytes - Viewed (0)