- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 737 for skip (0.02 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/skip/Skip.java
/** * A {@link RestTestTransform} that injects a skip into a REST test. */ public class Skip implements RestTestTransformGlobalSetup, RestTestTransformByParentObject { private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false); private final String skipReason; private final String testName; public Skip(String testName, String skipReason) {Created: 2026-04-08 16:19 - Last Modified: 2021-09-30 16:30 - 4K bytes - Click Count (0) -
android/guava/src/com/google/common/io/ByteArrayDataInput.java
@CanIgnoreReturnValue // to skip some bytes @Override short readShort(); @CanIgnoreReturnValue // to skip some bytes @Override int readUnsignedShort(); @CanIgnoreReturnValue // to skip some bytes @Override char readChar(); @CanIgnoreReturnValue // to skip some bytes @Override int readInt(); @CanIgnoreReturnValue // to skip some bytes @Override long readLong();
Created: 2026-04-03 12:43 - Last Modified: 2024-12-27 20:25 - 2.7K bytes - Click Count (0) -
tests/test_dependency_overrides.py
Created: 2026-04-05 07:19 - Last Modified: 2026-02-17 09:59 - 11.2K bytes - Click Count (0) -
android/guava/src/com/google/common/io/LittleEndianDataInputStream.java
*/ @CanIgnoreReturnValue // to skip some bytes @Override public char readChar() throws IOException { return (char) readUnsignedShort(); } @CanIgnoreReturnValue // to skip a byte @Override public byte readByte() throws IOException { return (byte) readUnsignedByte(); } @CanIgnoreReturnValue // to skip a byte @Override
Created: 2026-04-03 12:43 - Last Modified: 2025-02-12 03:49 - 7.3K bytes - Click Count (0) -
docs_src/dependency_testing/tutorial001_an_py310.py
from typing import Annotated from fastapi import Depends, FastAPI from fastapi.testclient import TestClient app = FastAPI() async def common_parameters(q: str | None = None, skip: int = 0, limit: int = 100): return {"q": q, "skip": skip, "limit": limit} @app.get("/items/") async def read_items(commons: Annotated[dict, Depends(common_parameters)]): return {"message": "Hello Items!", "params": commons}
Created: 2026-04-05 07:19 - Last Modified: 2023-03-18 12:29 - 1.5K bytes - Click Count (0) -
docs_src/query_params/tutorial001_py310.py
Created: 2026-04-05 07:19 - Last Modified: 2026-02-12 13:19 - 250 bytes - Click Count (0) -
cmd/encryption-v1_test.go
} return o, l, skip, sn, ps } for i, test := range testMPs { { // nil range o, l, skip, sn, ps, err := test.oi.GetDecryptedRange(nil) if err != nil { t.Errorf("Case %d: unexpected err: %v", i, err) } if o != 0 || l != esum(test.oi) || skip != 0 || sn != 0 || ps != 0 { t.Errorf("Case %d: test failed: %d %d %d %d %d", i, o, l, skip, sn, ps) } }Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 19.9K bytes - Click Count (0) -
internal/grid/msg_gen_test.go
if err != nil { t.Fatal(err) } if len(left) > 0 { t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left) } left, err = msgp.Skip(bts) if err != nil { t.Fatal(err) } if len(left) > 0 { t.Errorf("%d bytes left over after Skip(): %q", len(left), left) } } func BenchmarkMarshalMsgconnectReq(b *testing.B) { v := connectReq{} b.ReportAllocs() b.ResetTimer()Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 12.9K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/feature/FeatureInjector.java
} } return teardownNodeParent; } /** * The name of the feature to skip. These are defined in org.elasticsearch.test.rest.yaml.Features and found in the tests at * as the value of skip.feature. For example this method should return "allowed_warnings" : * <pre> * skip: * features: allowed_warnings * </pre> */ @InternalCreated: 2026-04-08 16:19 - Last Modified: 2021-06-01 09:19 - 5.8K bytes - Click Count (0) -
cmd/bucket-replication-utils_gen_test.go
if err != nil { t.Fatal(err) } if len(left) > 0 { t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left) } left, err = msgp.Skip(bts) if err != nil { t.Fatal(err) } if len(left) > 0 { t.Errorf("%d bytes left over after Skip(): %q", len(left), left) } } func BenchmarkMarshalMsgBucketReplicationResyncStatus(b *testing.B) { v := BucketReplicationResyncStatus{} b.ReportAllocs()Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 23K bytes - Click Count (0)