- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for Pointers (0.11 sec)
-
CONTRIBUTING.md
- * Why is this change done? What's the use case?
- * For user facing features, what will the API look like?
- * What test cases should it have? What could go wrong?
- * How will it roughly be implemented? We'll happily provide code pointers to save you time.
- We may ask you to answer these questions directly in the GitHub issue or (for large changes) in a shared Google Doc.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0) -
common/config/.golangci.yml
- - ".*\\.gen\\.go"
- exclude-rules:
- # Exclude some linters from running on test files.
- - path: _test\.go$|^tests/|^samples/
- linters:
- - errcheck
- - maligned
- - path: _test\.go$
- text: "dot-imports: should not use dot imports"
- # We need to use the deprecated module since the jsonpb replacement is not backwards compatible.
- - linters:
- - staticcheck
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
- return new Lifecycle.Link() {
- @Override
- public Kind kind() {
- return Kind.AFTER;
- }
- @Override
- public Lifecycle.Pointer pointer() {
- return new Lifecycle.PhasePointer() {
- @Override
- public String phase() {
- return b;
- }
- };
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 19.4K bytes - Viewed (0) -
Makefile
- lint: getdeps ## runs golangci-lint suite of linters
- @echo "Running $@ check"
- @$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
- @command typos && typos ./ || echo "typos binary is not found.. skipping.."
- lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
- @echo "Running $@ check"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 11.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64.s
- SRAW $1, X6 // 1b531340
- // 4.3: Load and Store Instructions (RV64I)
- LD (X5), X6 // 03b30200
- LD 4(X5), X6 // 03b34200
- SD X5, (X6) // 23305300
- SD X5, 4(X6) // 23325300
- // 8.1: Base Counters and Timers (Zicntr)
- RDCYCLE X5 // f32200c0
- RDTIME X5 // f32210c0
- RDINSTRET X5 // f32220c0
- // 13.1: Multiplication Operations
- MUL X5, X6, X7 // b3035302
- MULH X5, X6, X7 // b3135302
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 25 12:05:29 UTC 2024 - 16.8K bytes - Viewed (0) -
src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css
- min-width: 32px;
- width: 32px;
- height: 24px;
- line-height: 24px;
- font-size: 12px;
- border-radius: 4px;
- border: 1px solid transparent;
- white-space: nowrap;
- cursor: pointer;
- }
- .daterangepicker .calendar-table {
- border: 1px solid #fff;
- border-radius: 4px;
- background-color: #fff;
- }
- .daterangepicker .calendar-table table {
- width: 100%;
- margin: 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 7.5K bytes - Viewed (0) -
cmd/xl-storage-disk-id-check.go
- // apiCalls should be placed first so alignment is guaranteed for atomic operations.
- apiCalls [storageMetricLast]uint64
- apiLatencies [storageMetricLast]*lockedLastMinuteLatency
- diskID atomic.Pointer[string]
- storage *xlStorage
- health *diskHealthTracker
- healthCheck bool
- metricsCache *cachevalue.Cache[DiskMetrics]
- diskCtx context.Context
- diskCancel context.CancelFunc
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:56:26 UTC 2024 - 34.5K bytes - Viewed (0) -
src/main/webapp/css/admin/bootstrap.min.css.map
box-shadow(none);\n }\n\n &:not(:disabled):not(.disabled) {\n cursor: if($enable-pointer-cursor-for-buttons, pointer, null);\n\n &:active,\n &.active {\n @include box-shadow($btn-active-box-shadow);\n\n &:focus {\n @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);\n }\n }\n }\n}\n\n// Future-proof disabling of clicks on `<a>` elements\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n\n//\n// Alternate buttons\n//\n\n@each $color, $value...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 639.3K bytes - Viewed (0) -
src/main/webapp/css/admin/bootstrap.min.css
:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 158.5K bytes - Viewed (0)