Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
7
112
repo_url
stringlengths
36
141
action
stringclasses
3 values
title
stringlengths
1
744
labels
stringlengths
4
574
body
stringlengths
9
211k
index
stringclasses
10 values
text_combine
stringlengths
96
211k
label
stringclasses
2 values
text
stringlengths
96
188k
binary_label
int64
0
1
157,543
24,689,214,019
IssuesEvent
2022-10-19 07:13:19
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
Scrollbar ignores ScrollbarTheme widget and always directly use ScrollbarThemeData from Theme widget
framework f: material design f: scrolling has reproducible steps found in release: 3.3 found in release: 3.5
## Steps to Reproduce <!-- Please include full steps to reproduce so that we can reproduce the problem. --> 1. Execute `flutter run` on the code sample <!-- (see "Code sample" section below) --> 2. Pay attention on top and bottom margins of scroll **Expected results:** MainAxisMargin must be 100 **Actual results:** MainAxisMargin equals 10 <details> <summary>Code sample</summary> ```dart void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) => MaterialApp( home: const MyHomePage(), theme: ThemeData( scrollbarTheme: ScrollbarThemeData( mainAxisMargin: 10, thumbVisibility: MaterialStateProperty.all(true), ), ), ); } class MyHomePage extends StatelessWidget { const MyHomePage({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: ScrollbarTheme( data: const ScrollbarThemeData(mainAxisMargin: 100), child: ListView.builder( itemCount: Colors.primaries.length, itemBuilder: (context, index) => Container( height: 400, color: Colors.primaries[index], ), ), ), ); } } ``` </details> <details> <summary>Logs</summary> <!-- Run your application with `flutter run --verbose` and attach all the log output below between the lines with the backticks. If there is an exception, please see if the error message includes enough information to explain how to solve the issue. If there is a crash, please include the entirety of the crash log including the backtrace. --> ``` oleh@Olehs-MBP test2 % flutter run --verbose -d chrome [ +36 ms] executing: sysctl hw.optional.arm64 [ +6 ms] Exit code 0 from: sysctl hw.optional.arm64 [ ] hw.optional.arm64: 1 [ +2 ms] executing: [/Users/oleh/fvm/versions/stable/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +15 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] eb6d86ee27deecba4a83536aa20f366a6044895c [ ] executing: [/Users/oleh/fvm/versions/stable/] git tag --points-at eb6d86ee27deecba4a83536aa20f366a6044895c [ +39 ms] Exit code 0 from: git tag --points-at eb6d86ee27deecba4a83536aa20f366a6044895c [ ] 3.3.4 [ +21 ms] executing: [/Users/oleh/fvm/versions/stable/] git rev-parse --abbrev-ref --symbolic @{upstream} [ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{upstream} [ +1 ms] origin/stable [ ] executing: [/Users/oleh/fvm/versions/stable/] git ls-remote --get-url origin [ +9 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +26 ms] executing: [/Users/oleh/fvm/versions/stable/] git rev-parse --abbrev-ref HEAD [ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ +3 ms] executing: sw_vers -productName [ +10 ms] Exit code 0 from: sw_vers -productName [ ] macOS [ ] executing: sw_vers -productVersion [ +8 ms] Exit code 0 from: sw_vers -productVersion [ ] 12.6 [ ] executing: sw_vers -buildVersion [ +8 ms] Exit code 0 from: sw_vers -buildVersion [ ] 21G115 [ ] executing: uname -m [ +3 ms] Exit code 0 from: uname -m [ ] arm64 [ +22 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +24 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +18 ms] executing: sysctl hw.optional.arm64 [ +3 ms] Exit code 0 from: sysctl hw.optional.arm64 [ ] hw.optional.arm64: 1 [ ] executing: /usr/bin/arch -arm64e xcrun xcodebuild -version [ +143 ms] Exit code 0 from: /usr/bin/arch -arm64e xcrun xcodebuild -version [ +1 ms] Xcode 14.0 Build version 14A309 [ +25 ms] Skipping pub get: version match. [ +61 ms] Generating /Users/oleh/Projects/test2/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +70 ms] Launching lib/main.dart on Chrome in debug mode... [ +43 ms] Updating assets [ +41 ms] Waiting for connection from debug service on Chrome... [ +141 ms] <- reset [ +2 ms] /Users/oleh/fvm/versions/stable/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/oleh/fvm/versions/stable/bin/cache/dart-sdk/bin/snapshots/frontend_server.dart.snapshot --sdk-root /Users/oleh/fvm/versions/stable/bin/cache/flutter_web_sdk/ --incremental --target=dartdevc --debugger-module-names --experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill /var/folders/5t/_9n44y6n1czc5ydpfmkyqs400000gn/T/flutter_tools.sjKujD/flutter_tool.999CQE/app.dill --libraries-spec file:///Users/oleh/fvm/versions/stable/bin/cache/flutter_web_sdk/libraries.json --packages /Users/oleh/Projects/test2/.dart_tool/package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-root /var/folders/5t/_9n44y6n1czc5ydpfmkyqs400000gn/T/flutter_tools.sjKujD/flutter_tools.AewWvj --filesystem-scheme org-dartlang-app --initialize-from-dill build/b1b715402d823b7fd5c2b68d2edcb2ce.cache.dill.track.dill --platform file:///Users/oleh/fvm/versions/stable/bin/cache/flutter_web_sdk/kernel/flutter_ddc_sdk_sound.dill --verbosity=error --sound-null-safety [ +6 ms] <- compile org-dartlang-app:/web_entrypoint.dart [+9146 ms] Waiting for connection from debug service on Chrome... (completed in 9.3s) [ ] Synced 30.6MB. [ ] <- accept [ ] Caching compiled dill [ +44 ms] Using Google Chrome 105.0.5195.125 [ +26 ms] executing: sysctl hw.optional.arm64 [ +3 ms] Exit code 0 from: sysctl hw.optional.arm64 [ ] hw.optional.arm64: 1 [ +5 ms] Found ARM Chrome installation at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome, forcing native launch. [ +231 ms] [CHROME]: [ ] [CHROME]: DevTools listening on ws://127.0.0.1:49609/devtools/browser/5b69c0fa-3c41-42f3-9ce6-035738310c23 [ +364 ms] DwdsInjector: Received request for entrypoint at http://localhost:49599/main_module.bootstrap.js [ +1 ms] MetadataProvider: Loading debug metadata... [ +1 ms] MetadataProvider: Loaded debug metadata for module: web_entrypoint.dart [ ] MetadataProvider: Loaded debug metadata for module: web_plugin_registrant.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/test2/main.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/material.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/widgets.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/will_pop_scope.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/title.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/rendering.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/wrap.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/layer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/painting.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/placeholder_span.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/services.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_layout_metrics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_editing.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/foundation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/unicode.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/synchronous_future.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/stack_frame.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/object.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/meta/meta.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/meta/meta_meta.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/serialization.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/print.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/_platform_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/observer_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/node.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/math.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/licenses.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/key.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/basic_types.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/_isolates_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/consolidate_response.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/collections.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/change_notifier.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/_bitfield_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/annotations.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_editing_delta.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/vector_math/vector_math_64.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/binary_messenger.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/keyboard_key.g.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/keyboard_maps.g.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/scheduler.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/ticker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/priority.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/union_set_controller.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/queue_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/priority_queue.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/list_extensions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/equality.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/comparators.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/algorithms.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/iterable_zip.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/iterable_extensions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/functions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_map.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_iterable.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_iterator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/canonicalized_map.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_formatter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/characters.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/extensions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/characters_impl.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/grapheme_clusters/breaks.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/grapheme_clusters/table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/grapheme_clusters/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/system_sound.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/system_navigator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/system_chrome.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/platform_views.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/gestures.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/velocity_tracker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/lsq_solver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/events.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/gesture_settings.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/team.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/arena.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/pointer_signal_resolver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/pointer_router.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/hit_test.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/resampler.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/converter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/tap.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/recognizer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/scale.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/multitap.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/multidrag.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/drag.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/drag_details.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/monodrag.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/long_press.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/force_press.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/eager.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/mouse_tracking.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/mouse_cursor.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/haptic_feedback.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/font_loader.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/deferred_component.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/basic_types.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/colors.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/stadium_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/rounded_rectangle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/edge_insets.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/circle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/borders.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/border_radius.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/shape_decoration.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/_network_image_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_stream.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_cache.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/shader_warm_up.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/gradient.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/alignment.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/decoration_image.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_fit.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/decoration.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_shadow.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_decoration.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/paint_utilities.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/notched_shapes.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/matrix_utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_resolution.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_decoder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/geometry.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/fractional_offset.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/flutter_logo.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/continuous_rectangle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/clip.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/beveled_rectangle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/semantics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/semantics_service.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/semantics_event.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/semantics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/animation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/tween_sequence.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/listener_helpers.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/curves.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/animation_controller.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/physics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/tolerance.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/spring_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/gravity_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/friction_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/clamped_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/layout_helper.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/box.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/viewport_offset.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/mouse_tracker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/tweens.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/texture.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/table_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/stack.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_persistent_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_padding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_multi_box_adaptor.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_grid.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_fixed_extent_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_fill.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/shifted_box.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/debug_overflow_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/rotated_box.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/proxy_sliver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/proxy_box.dart [ +1 ms] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/platform_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/performance_overlay.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/paragraph.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/list_wheel_viewport.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/list_body.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/image.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/flow.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/flex.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/error.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/editable.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/custom_paint.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/custom_layout.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/animated_size.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_metrics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/visibility.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/value_listenable_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/unique_widget.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/tween_animation_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/texture.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/text_selection_toolbar_layout_delegate.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/status_transitions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/spacer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/slotted_render_object_widget.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_prototype_extent_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_persistent_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_layout_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/layout_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_fill.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/size_changed_layout_notifier.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/single_child_scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_notification_observer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/safe_area.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/reorderable_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/raw_keyboard_listener.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/preferred_size.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/platform_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/page_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/overflow_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/orientation_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/nested_scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/navigation_toolbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/list_wheel_scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/keyboard_listener.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/interactive_viewer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/image_icon.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon_theme_data.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon_data.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/image_filter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/grid_paper.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/form.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/fade_in_image.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/dual_transition_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/draggable_scrollable_sheet.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/drag_target.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/dismissible.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/color_filter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/bottom_navigation_bar_item.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/autocomplete.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/async.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/annotated_region.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_switcher.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_size.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_cross_fade.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/user_accounts_drawer_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/icon_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/typography.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/colors.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/material_state.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/input_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/material_color_utilities.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/score/score.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/utils/math_utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/hct.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/cam_solver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/viewing_conditions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/utils/color_utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/cam16.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/scheme/scheme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/palettes/core_palette.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/palettes/tonal_palette.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_wu.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_map.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_wsmeans.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/point_provider_lab.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/point_provider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_celebi.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/blend/blend.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/tooltip_visibility.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/floating_action_button_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/material_state_mixin.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/curves.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/bottom_sheet_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/tab_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/tab_controller.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/icons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/cupertino.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/thumb_painter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/interface_level.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_selection_toolbar_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_selection_toolbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_form_field_row.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/icons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/desktop_text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/form_row.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/tab_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/route.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/app.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/scrollbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/tab_scaffold.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/bottom_tab_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/switch.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/sliding_segmented_control.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/slider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/segmented_control.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/search_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/refresh.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/activity_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/page_scaffold.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/nav_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/form_section.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/dialog.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/date_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/context_menu_action.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/context_menu.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/drawer_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/toggleable.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/toggle_buttons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/time_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_form_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_selection_toolbar_text_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_selection_toolbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/selectable_text.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/desktop_text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/dialog.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/switch_list_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/switch.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/shadows.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/stepper.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/slider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/selection_area.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/search.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/scrollbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/reorderable_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/refresh_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/progress_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/range_slider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/radio_list_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/radio.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/popup_menu.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/paginated_data_table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/dropdown.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/data_table_source.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/data_table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/checkbox.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/card.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/page.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/outlined_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/no_splash.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/mergeable_material.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/input_date_picker_form_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/date.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/grid_tile_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/grid_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/flutter_logo.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/expansion_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/expansion_panel.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/expand_icon.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/elevated_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/date_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/calendar_date_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/circle_avatar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_input.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_filter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_choice.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_action.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/checkbox_list_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/button_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/bottom_app_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/autocomplete.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/arc.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/app.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/animated_icons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/about.dart [ ] MetadataProvider: Loaded debug metadata (sound null safety) [ +3 ms] DwdsInjector: Injected debugging metadata for entrypoint at http://localhost:49599/main_module.bootstrap.js [+1458 ms] ChromeProxyService: Initializing expression compiler for main_module.bootstrap.js with sound null safety: true [ +30 ms] DevHandler: Debug service listening on ws://127.0.0.1:49626/U_uwnbldP6Q=/ws [ +8 ms] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 9, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 9, params: {streamId: Stdout, includePrivateMembers: false}}}} [ +1 ms] This app is linked to the debug service: ws://127.0.0.1:49626/U_uwnbldP6Q=/ws [ ] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 10, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 10, params: {streamId: Stderr, includePrivateMembers: false}}}} [ +1 ms] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 11, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 11, params: {streamId: Isolate, includePrivateMembers: false}}}} [ +1 ms] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 12, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 12, params: {streamId: Extension, includePrivateMembers: false}}}} [ +2 ms] Debug service listening on ws://127.0.0.1:49626/U_uwnbldP6Q=/ws [ ] 💪 Running with sound null safety 💪 [ +2 ms] 🔥 To hot restart changes while running, press "r" or "R". [ ] For a more detailed help message, press "h". To quit, press "q". [ ] An Observatory debugger and profiler on Chrome is available at: http://127.0.0.1:49626/U_uwnbldP6Q= [ +9 ms] Flutter Web Bootstrap: Programmatic [+1015 ms] The Flutter DevTools debugger and profiler on Chrome is available at: http://127.0.0.1:9102?uri=http://127.0.0.1:49626/U_uwnbldP6Q= ``` <!-- Run `flutter analyze` and attach any output of that command below. If there are any analysis errors, try resolving them before filing this issue. --> ``` oleh@Olehs-MBP test2 % flutter analyze Analyzing test2... No issues found! (ran in 1.3s) ``` <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` oleh@Olehs-MBP test2 % flutter doctor -v [✓] Flutter (Channel stable, 3.3.4, on macOS 12.6 21G115 darwin-arm, locale en-GB) • Flutter version 3.3.4 on channel stable at /Users/oleh/fvm/versions/stable • Upstream repository https://github.com/flutter/flutter.git • Framework revision eb6d86ee27 (6 days ago), 2022-10-04 22:31:45 -0700 • Engine revision c08d7d5efc • Dart version 2.18.2 • DevTools version 2.15.0 [✓] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1) • Android SDK at /Users/oleh/Library/Android/sdk • Platform android-32, build-tools 32.1.0-rc1 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 14.0) • Xcode at /Applications/Xcode.app/Contents/Developer • Build 14A309 • CocoaPods version 1.11.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2021.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) [✓] VS Code (version 1.72.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.50.0 [✓] Connected device (2 available) • macOS (desktop) • macos • darwin-arm64 • macOS 12.6 21G115 darwin-arm • Chrome (web) • chrome • web-javascript • Google Chrome 105.0.5195.125 [✓] HTTP Host Availability • All required HTTP hosts are available • No issues found! ``` </details> <img width="1202" alt="Screenshot 2022-10-10 at 22 15 26" src="https://user-images.githubusercontent.com/17007214/194953414-d4696e8c-3907-41f3-a085-28298177ab76.png">
1.0
Scrollbar ignores ScrollbarTheme widget and always directly use ScrollbarThemeData from Theme widget - ## Steps to Reproduce <!-- Please include full steps to reproduce so that we can reproduce the problem. --> 1. Execute `flutter run` on the code sample <!-- (see "Code sample" section below) --> 2. Pay attention on top and bottom margins of scroll **Expected results:** MainAxisMargin must be 100 **Actual results:** MainAxisMargin equals 10 <details> <summary>Code sample</summary> ```dart void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) => MaterialApp( home: const MyHomePage(), theme: ThemeData( scrollbarTheme: ScrollbarThemeData( mainAxisMargin: 10, thumbVisibility: MaterialStateProperty.all(true), ), ), ); } class MyHomePage extends StatelessWidget { const MyHomePage({super.key}); @override Widget build(BuildContext context) { return Scaffold( body: ScrollbarTheme( data: const ScrollbarThemeData(mainAxisMargin: 100), child: ListView.builder( itemCount: Colors.primaries.length, itemBuilder: (context, index) => Container( height: 400, color: Colors.primaries[index], ), ), ), ); } } ``` </details> <details> <summary>Logs</summary> <!-- Run your application with `flutter run --verbose` and attach all the log output below between the lines with the backticks. If there is an exception, please see if the error message includes enough information to explain how to solve the issue. If there is a crash, please include the entirety of the crash log including the backtrace. --> ``` oleh@Olehs-MBP test2 % flutter run --verbose -d chrome [ +36 ms] executing: sysctl hw.optional.arm64 [ +6 ms] Exit code 0 from: sysctl hw.optional.arm64 [ ] hw.optional.arm64: 1 [ +2 ms] executing: [/Users/oleh/fvm/versions/stable/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +15 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] eb6d86ee27deecba4a83536aa20f366a6044895c [ ] executing: [/Users/oleh/fvm/versions/stable/] git tag --points-at eb6d86ee27deecba4a83536aa20f366a6044895c [ +39 ms] Exit code 0 from: git tag --points-at eb6d86ee27deecba4a83536aa20f366a6044895c [ ] 3.3.4 [ +21 ms] executing: [/Users/oleh/fvm/versions/stable/] git rev-parse --abbrev-ref --symbolic @{upstream} [ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{upstream} [ +1 ms] origin/stable [ ] executing: [/Users/oleh/fvm/versions/stable/] git ls-remote --get-url origin [ +9 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +26 ms] executing: [/Users/oleh/fvm/versions/stable/] git rev-parse --abbrev-ref HEAD [ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ +3 ms] executing: sw_vers -productName [ +10 ms] Exit code 0 from: sw_vers -productName [ ] macOS [ ] executing: sw_vers -productVersion [ +8 ms] Exit code 0 from: sw_vers -productVersion [ ] 12.6 [ ] executing: sw_vers -buildVersion [ +8 ms] Exit code 0 from: sw_vers -buildVersion [ ] 21G115 [ ] executing: uname -m [ +3 ms] Exit code 0 from: uname -m [ ] arm64 [ +22 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +24 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +18 ms] executing: sysctl hw.optional.arm64 [ +3 ms] Exit code 0 from: sysctl hw.optional.arm64 [ ] hw.optional.arm64: 1 [ ] executing: /usr/bin/arch -arm64e xcrun xcodebuild -version [ +143 ms] Exit code 0 from: /usr/bin/arch -arm64e xcrun xcodebuild -version [ +1 ms] Xcode 14.0 Build version 14A309 [ +25 ms] Skipping pub get: version match. [ +61 ms] Generating /Users/oleh/Projects/test2/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +70 ms] Launching lib/main.dart on Chrome in debug mode... [ +43 ms] Updating assets [ +41 ms] Waiting for connection from debug service on Chrome... [ +141 ms] <- reset [ +2 ms] /Users/oleh/fvm/versions/stable/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/oleh/fvm/versions/stable/bin/cache/dart-sdk/bin/snapshots/frontend_server.dart.snapshot --sdk-root /Users/oleh/fvm/versions/stable/bin/cache/flutter_web_sdk/ --incremental --target=dartdevc --debugger-module-names --experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill /var/folders/5t/_9n44y6n1czc5ydpfmkyqs400000gn/T/flutter_tools.sjKujD/flutter_tool.999CQE/app.dill --libraries-spec file:///Users/oleh/fvm/versions/stable/bin/cache/flutter_web_sdk/libraries.json --packages /Users/oleh/Projects/test2/.dart_tool/package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-root /var/folders/5t/_9n44y6n1czc5ydpfmkyqs400000gn/T/flutter_tools.sjKujD/flutter_tools.AewWvj --filesystem-scheme org-dartlang-app --initialize-from-dill build/b1b715402d823b7fd5c2b68d2edcb2ce.cache.dill.track.dill --platform file:///Users/oleh/fvm/versions/stable/bin/cache/flutter_web_sdk/kernel/flutter_ddc_sdk_sound.dill --verbosity=error --sound-null-safety [ +6 ms] <- compile org-dartlang-app:/web_entrypoint.dart [+9146 ms] Waiting for connection from debug service on Chrome... (completed in 9.3s) [ ] Synced 30.6MB. [ ] <- accept [ ] Caching compiled dill [ +44 ms] Using Google Chrome 105.0.5195.125 [ +26 ms] executing: sysctl hw.optional.arm64 [ +3 ms] Exit code 0 from: sysctl hw.optional.arm64 [ ] hw.optional.arm64: 1 [ +5 ms] Found ARM Chrome installation at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome, forcing native launch. [ +231 ms] [CHROME]: [ ] [CHROME]: DevTools listening on ws://127.0.0.1:49609/devtools/browser/5b69c0fa-3c41-42f3-9ce6-035738310c23 [ +364 ms] DwdsInjector: Received request for entrypoint at http://localhost:49599/main_module.bootstrap.js [ +1 ms] MetadataProvider: Loading debug metadata... [ +1 ms] MetadataProvider: Loaded debug metadata for module: web_entrypoint.dart [ ] MetadataProvider: Loaded debug metadata for module: web_plugin_registrant.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/test2/main.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/material.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/widgets.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/will_pop_scope.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/title.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/rendering.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/wrap.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/layer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/painting.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/placeholder_span.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/services.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_layout_metrics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_editing.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/foundation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/unicode.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/synchronous_future.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/stack_frame.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/object.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/meta/meta.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/meta/meta_meta.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/serialization.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/print.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/_platform_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/observer_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/node.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/math.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/licenses.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/key.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/basic_types.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/_isolates_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/consolidate_response.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/collections.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/change_notifier.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/_bitfield_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/foundation/annotations.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_editing_delta.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/vector_math/vector_math_64.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/binary_messenger.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/keyboard_key.g.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/keyboard_maps.g.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/scheduler.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/ticker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/priority.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/scheduler/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/union_set_controller.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/queue_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/priority_queue.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/list_extensions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/equality.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/comparators.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/algorithms.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/iterable_zip.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/iterable_extensions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/functions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_map.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_iterable.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_iterator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/combined_wrappers/combined_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/collection/src/canonicalized_map.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/text_formatter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/characters.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/extensions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/characters_impl.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/grapheme_clusters/breaks.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/grapheme_clusters/table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/characters/src/grapheme_clusters/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/system_sound.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/system_navigator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/system_chrome.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/platform_views.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/gestures.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/velocity_tracker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/lsq_solver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/events.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/gesture_settings.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/team.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/arena.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/pointer_signal_resolver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/pointer_router.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/hit_test.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/resampler.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/converter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/tap.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/recognizer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/scale.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/multitap.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/multidrag.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/drag.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/drag_details.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/monodrag.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/long_press.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/force_press.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/gestures/eager.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/mouse_tracking.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/mouse_cursor.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/haptic_feedback.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/font_loader.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/services/deferred_component.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/basic_types.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/colors.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/stadium_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/rounded_rectangle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/edge_insets.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/circle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/borders.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/border_radius.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/shape_decoration.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/_network_image_web.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_stream.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_cache.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/shader_warm_up.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/gradient.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/alignment.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/decoration_image.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_fit.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/decoration.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_shadow.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_decoration.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/box_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/paint_utilities.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/notched_shapes.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/matrix_utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_resolution.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/image_decoder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/geometry.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/fractional_offset.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/flutter_logo.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/continuous_rectangle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/clip.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/painting/beveled_rectangle_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/semantics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/semantics_service.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/semantics_event.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/semantics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/binding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/semantics/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/animation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/tween_sequence.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/listener_helpers.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/curves.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/animation/animation_controller.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/physics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/tolerance.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/spring_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/gravity_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/friction_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/physics/clamped_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/layout_helper.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/box.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/viewport_offset.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/mouse_tracker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/tweens.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/texture.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/table_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/stack.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_persistent_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_padding.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_multi_box_adaptor.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_grid.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_fixed_extent_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/sliver_fill.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/shifted_box.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/debug_overflow_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/rotated_box.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/proxy_sliver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/proxy_box.dart [ +1 ms] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/platform_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/performance_overlay.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/paragraph.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/list_wheel_viewport.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/list_body.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/image.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/flow.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/flex.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/error.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/editable.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/custom_paint.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/custom_layout.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/rendering/animated_size.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_metrics.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_simulation.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/visibility.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/value_listenable_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/unique_widget.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/tween_animation_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/texture.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/text_selection_toolbar_layout_delegate.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/status_transitions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/spacer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/slotted_render_object_widget.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_prototype_extent_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_persistent_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_layout_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/layout_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/sliver_fill.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/size_changed_layout_notifier.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/single_child_scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/scroll_notification_observer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/safe_area.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/reorderable_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/raw_keyboard_listener.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/preferred_size.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/platform_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/page_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/overflow_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/orientation_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/nested_scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/navigation_toolbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/list_wheel_scroll_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/keyboard_listener.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/interactive_viewer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/image_icon.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon_theme_data.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/icon_data.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/image_filter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/grid_paper.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/form.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/fade_in_image.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/dual_transition_builder.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/draggable_scrollable_sheet.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/drag_target.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/dismissible.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/desktop_text_selection_toolbar_layout_delegate.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/color_filter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/bottom_navigation_bar_item.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/autocomplete.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/async.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/annotated_region.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_switcher.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_size.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/widgets/animated_cross_fade.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/user_accounts_drawer_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/icon_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/typography.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/colors.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/material_state.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/input_border.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/material_color_utilities.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/score/score.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/utils/math_utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/hct.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/cam_solver.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/viewing_conditions.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/utils/color_utils.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/hct/cam16.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/scheme/scheme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/palettes/core_palette.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/palettes/tonal_palette.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_wu.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_map.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_wsmeans.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/point_provider_lab.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/point_provider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/quantize/quantizer_celebi.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/material_color_utilities/blend/blend.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/tooltip_visibility.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/floating_action_button_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/material_state_mixin.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/curves.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/bottom_sheet_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/tab_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/tab_controller.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/icons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/cupertino.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/thumb_painter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_theme.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/interface_level.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_selection_toolbar_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/constants.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_selection_toolbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/debug.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_form_field_row.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/text_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/icons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/desktop_text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/form_row.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/tab_view.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/route.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/app.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/scrollbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/tab_scaffold.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/bottom_tab_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/switch.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/sliding_segmented_control.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/slider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/segmented_control.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/search_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/refresh.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/activity_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/page_scaffold.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/nav_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/form_section.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/dialog.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/date_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/context_menu_action.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/cupertino/context_menu.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/drawer_header.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/toggleable.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/toggle_buttons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/time_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_form_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_selection_toolbar_text_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/text_selection_toolbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/selectable_text.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/desktop_text_selection.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/dialog.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/switch_list_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/switch.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/shadows.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/stepper.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/slider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/selection_area.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/search.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/scrollbar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/reorderable_list.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/refresh_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/progress_indicator.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/range_slider.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/radio_list_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/radio.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/popup_menu.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/paginated_data_table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/dropdown.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/data_table_source.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/data_table.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/checkbox.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/card.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/page.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/outlined_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/no_splash.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/mergeable_material.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/input_date_picker_form_field.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/date.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/grid_tile_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/grid_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/flutter_logo.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/expansion_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/expansion_panel.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/expand_icon.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/elevated_button.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/date_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/calendar_date_picker.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/circle_avatar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_input.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_filter.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_choice.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/chip_action.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/checkbox_list_tile.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/button_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/bottom_app_bar.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/autocomplete.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/arc.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/app.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/animated_icons.dart [ ] MetadataProvider: Loaded debug metadata for module: packages/flutter/src/material/about.dart [ ] MetadataProvider: Loaded debug metadata (sound null safety) [ +3 ms] DwdsInjector: Injected debugging metadata for entrypoint at http://localhost:49599/main_module.bootstrap.js [+1458 ms] ChromeProxyService: Initializing expression compiler for main_module.bootstrap.js with sound null safety: true [ +30 ms] DevHandler: Debug service listening on ws://127.0.0.1:49626/U_uwnbldP6Q=/ws [ +8 ms] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 9, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 9, params: {streamId: Stdout, includePrivateMembers: false}}}} [ +1 ms] This app is linked to the debug service: ws://127.0.0.1:49626/U_uwnbldP6Q=/ws [ ] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 10, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 10, params: {streamId: Stderr, includePrivateMembers: false}}}} [ +1 ms] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 11, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 11, params: {streamId: Isolate, includePrivateMembers: false}}}} [ +1 ms] DevHandler: VmService proxy responded with an error: {jsonrpc: 2.0, id: 12, error: {code: -32601, message: Method not found, data: {jsonrpc: 2.0, method: _setStreamIncludePrivateMembers, id: 12, params: {streamId: Extension, includePrivateMembers: false}}}} [ +2 ms] Debug service listening on ws://127.0.0.1:49626/U_uwnbldP6Q=/ws [ ] 💪 Running with sound null safety 💪 [ +2 ms] 🔥 To hot restart changes while running, press "r" or "R". [ ] For a more detailed help message, press "h". To quit, press "q". [ ] An Observatory debugger and profiler on Chrome is available at: http://127.0.0.1:49626/U_uwnbldP6Q= [ +9 ms] Flutter Web Bootstrap: Programmatic [+1015 ms] The Flutter DevTools debugger and profiler on Chrome is available at: http://127.0.0.1:9102?uri=http://127.0.0.1:49626/U_uwnbldP6Q= ``` <!-- Run `flutter analyze` and attach any output of that command below. If there are any analysis errors, try resolving them before filing this issue. --> ``` oleh@Olehs-MBP test2 % flutter analyze Analyzing test2... No issues found! (ran in 1.3s) ``` <!-- Finally, paste the output of running `flutter doctor -v` here. --> ``` oleh@Olehs-MBP test2 % flutter doctor -v [✓] Flutter (Channel stable, 3.3.4, on macOS 12.6 21G115 darwin-arm, locale en-GB) • Flutter version 3.3.4 on channel stable at /Users/oleh/fvm/versions/stable • Upstream repository https://github.com/flutter/flutter.git • Framework revision eb6d86ee27 (6 days ago), 2022-10-04 22:31:45 -0700 • Engine revision c08d7d5efc • Dart version 2.18.2 • DevTools version 2.15.0 [✓] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1) • Android SDK at /Users/oleh/Library/Android/sdk • Platform android-32, build-tools 32.1.0-rc1 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 14.0) • Xcode at /Applications/Xcode.app/Contents/Developer • Build 14A309 • CocoaPods version 1.11.2 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 2021.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: 🔨 https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.12+0-b1504.28-7817840) [✓] VS Code (version 1.72.0) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 3.50.0 [✓] Connected device (2 available) • macOS (desktop) • macos • darwin-arm64 • macOS 12.6 21G115 darwin-arm • Chrome (web) • chrome • web-javascript • Google Chrome 105.0.5195.125 [✓] HTTP Host Availability • All required HTTP hosts are available • No issues found! ``` </details> <img width="1202" alt="Screenshot 2022-10-10 at 22 15 26" src="https://user-images.githubusercontent.com/17007214/194953414-d4696e8c-3907-41f3-a085-28298177ab76.png">
non_process
scrollbar ignores scrollbartheme widget and always directly use scrollbarthemedata from theme widget steps to reproduce execute flutter run on the code sample pay attention on top and bottom margins of scroll expected results mainaxismargin must be actual results mainaxismargin equals code sample dart void main runapp const myapp class myapp extends statelesswidget const myapp super key override widget build buildcontext context materialapp home const myhomepage theme themedata scrollbartheme scrollbarthemedata mainaxismargin thumbvisibility materialstateproperty all true class myhomepage extends statelesswidget const myhomepage super key override widget build buildcontext context return scaffold body scrollbartheme data const scrollbarthemedata mainaxismargin child listview builder itemcount colors primaries length itembuilder context index container height color colors primaries logs run your application with flutter run verbose and attach all the log output below between the lines with the backticks if there is an exception please see if the error message includes enough information to explain how to solve the issue if there is a crash please include the entirety of the crash log including the backtrace oleh olehs mbp flutter run verbose d chrome executing sysctl hw optional exit code from sysctl hw optional hw optional executing git c log showsignature false log n pretty format h exit code from git c log showsignature false log n pretty format h executing git tag points at exit code from git tag points at executing git rev parse abbrev ref symbolic upstream exit code from git rev parse abbrev ref symbolic upstream origin stable executing git ls remote get url origin exit code from git ls remote get url origin executing git rev parse abbrev ref head exit code from git rev parse abbrev ref head stable executing sw vers productname exit code from sw vers productname macos executing sw vers productversion exit code from sw vers productversion executing sw vers buildversion exit code from sw vers buildversion executing uname m exit code from uname m artifact instance of androidgensnapshotartifacts is not required skipping update artifact instance of androidinternalbuildartifacts is not required skipping update artifact instance of iosengineartifacts is not required skipping update artifact instance of flutterwebsdk is not required skipping update artifact instance of windowsengineartifacts is not required skipping update artifact instance of macosengineartifacts is not required skipping update artifact instance of linuxengineartifacts is not required skipping update artifact instance of linuxfuchsiasdkartifacts is not required skipping update artifact instance of macosfuchsiasdkartifacts is not required skipping update artifact instance of flutterrunnersdkartifacts is not required skipping update artifact instance of flutterrunnerdebugsymbols is not required skipping update artifact instance of androidgensnapshotartifacts is not required skipping update artifact instance of androidinternalbuildartifacts is not required skipping update artifact instance of iosengineartifacts is not required skipping update artifact instance of windowsengineartifacts is not required skipping update artifact instance of macosengineartifacts is not required skipping update artifact instance of linuxengineartifacts is not required skipping update artifact instance of linuxfuchsiasdkartifacts is not required skipping update artifact instance of macosfuchsiasdkartifacts is not required skipping update artifact instance of flutterrunnersdkartifacts is not required skipping update artifact instance of flutterrunnerdebugsymbols is not required skipping update executing sysctl hw optional exit code from sysctl hw optional hw optional executing usr bin arch xcrun xcodebuild version exit code from usr bin arch xcrun xcodebuild version xcode build version skipping pub get version match generating users oleh projects android app src main java io flutter plugins generatedpluginregistrant java launching lib main dart on chrome in debug mode updating assets waiting for connection from debug service on chrome reset users oleh fvm versions stable bin cache dart sdk bin dart disable dart dev users oleh fvm versions stable bin cache dart sdk bin snapshots frontend server dart snapshot sdk root users oleh fvm versions stable bin cache flutter web sdk incremental target dartdevc debugger module names experimental emit debug metadata dflutter web auto detect true output dill var folders t flutter tools sjkujd flutter tool app dill libraries spec file users oleh fvm versions stable bin cache flutter web sdk libraries json packages users oleh projects dart tool package config json ddart vm profile false ddart vm product false enable asserts track widget creation filesystem root var folders t flutter tools sjkujd flutter tools aewwvj filesystem scheme org dartlang app initialize from dill build cache dill track dill platform file users oleh fvm versions stable bin cache flutter web sdk kernel flutter ddc sdk sound dill verbosity error sound null safety compile org dartlang app web entrypoint dart waiting for connection from debug service on chrome completed in synced accept caching compiled dill using google chrome executing sysctl hw optional exit code from sysctl hw optional hw optional found arm chrome installation at applications google chrome app contents macos google chrome forcing native launch devtools listening on ws devtools browser dwdsinjector received request for entrypoint at metadataprovider loading debug metadata metadataprovider loaded debug metadata for module web entrypoint dart metadataprovider loaded debug metadata for module web plugin registrant dart metadataprovider loaded debug metadata for module packages main dart metadataprovider loaded debug metadata for module packages flutter material dart metadataprovider loaded debug metadata for module packages flutter widgets dart metadataprovider loaded debug metadata for module packages flutter src widgets will pop scope dart metadataprovider loaded debug metadata for module packages flutter src widgets title dart metadataprovider loaded debug metadata for module packages flutter rendering dart metadataprovider loaded debug metadata for module packages flutter src rendering wrap dart metadataprovider loaded debug metadata for module packages flutter src rendering layer dart metadataprovider loaded debug metadata for module packages flutter painting dart metadataprovider loaded debug metadata for module packages flutter src painting placeholder span dart metadataprovider loaded debug metadata for module packages flutter services dart metadataprovider loaded debug metadata for module packages flutter src services text layout metrics dart metadataprovider loaded debug metadata for module packages flutter src services text editing dart metadataprovider loaded debug metadata for module packages flutter foundation dart metadataprovider loaded debug metadata for module packages flutter src foundation unicode dart metadataprovider loaded debug metadata for module packages flutter src foundation synchronous future dart metadataprovider loaded debug metadata for module packages flutter src foundation stack frame dart metadataprovider loaded debug metadata for module packages flutter src foundation object dart metadataprovider loaded debug metadata for module packages flutter src foundation constants dart metadataprovider loaded debug metadata for module packages meta meta dart metadataprovider loaded debug metadata for module packages meta meta meta dart metadataprovider loaded debug metadata for module packages flutter src foundation serialization dart metadataprovider loaded debug metadata for module packages flutter src foundation print dart metadataprovider loaded debug metadata for module packages flutter src foundation platform web dart metadataprovider loaded debug metadata for module packages flutter src foundation observer list dart metadataprovider loaded debug metadata for module packages flutter src foundation node dart metadataprovider loaded debug metadata for module packages flutter src foundation math dart metadataprovider loaded debug metadata for module packages flutter src foundation licenses dart metadataprovider loaded debug metadata for module packages flutter src foundation key dart metadataprovider loaded debug metadata for module packages flutter src foundation debug dart metadataprovider loaded debug metadata for module packages flutter src foundation basic types dart metadataprovider loaded debug metadata for module packages flutter src foundation isolates web dart metadataprovider loaded debug metadata for module packages flutter src foundation consolidate response dart metadataprovider loaded debug metadata for module packages flutter src foundation collections dart metadataprovider loaded debug metadata for module packages flutter src foundation change notifier dart metadataprovider loaded debug metadata for module packages flutter src foundation bitfield web dart metadataprovider loaded debug metadata for module packages flutter src foundation binding dart metadataprovider loaded debug metadata for module packages flutter src foundation annotations dart metadataprovider loaded debug metadata for module packages flutter src services text editing delta dart metadataprovider loaded debug metadata for module packages vector math vector math dart metadataprovider loaded debug metadata for module packages flutter src services binary messenger dart metadataprovider loaded debug metadata for module packages flutter src services keyboard key g dart metadataprovider loaded debug metadata for module packages flutter src services keyboard maps g dart metadataprovider loaded debug metadata for module packages flutter scheduler dart metadataprovider loaded debug metadata for module packages flutter src scheduler ticker dart metadataprovider loaded debug metadata for module packages flutter src scheduler binding dart metadataprovider loaded debug metadata for module packages flutter src scheduler priority dart metadataprovider loaded debug metadata for module packages flutter src scheduler debug dart metadataprovider loaded debug metadata for module packages collection src union set controller dart metadataprovider loaded debug metadata for module packages collection src queue list dart metadataprovider loaded debug metadata for module packages collection src priority queue dart metadataprovider loaded debug metadata for module packages collection src utils dart metadataprovider loaded debug metadata for module packages collection src list extensions dart metadataprovider loaded debug metadata for module packages collection src equality dart metadataprovider loaded debug metadata for module packages collection src comparators dart metadataprovider loaded debug metadata for module packages collection src algorithms dart metadataprovider loaded debug metadata for module packages collection src iterable zip dart metadataprovider loaded debug metadata for module packages collection src iterable extensions dart metadataprovider loaded debug metadata for module packages collection src functions dart metadataprovider loaded debug metadata for module packages collection src combined wrappers combined map dart metadataprovider loaded debug metadata for module packages collection src combined wrappers combined iterable dart metadataprovider loaded debug metadata for module packages collection src combined wrappers combined iterator dart metadataprovider loaded debug metadata for module packages collection src combined wrappers combined list dart metadataprovider loaded debug metadata for module packages collection src canonicalized map dart metadataprovider loaded debug metadata for module packages flutter src services text formatter dart metadataprovider loaded debug metadata for module packages characters characters dart metadataprovider loaded debug metadata for module packages characters src extensions dart metadataprovider loaded debug metadata for module packages characters src characters impl dart metadataprovider loaded debug metadata for module packages characters src grapheme clusters breaks dart metadataprovider loaded debug metadata for module packages characters src grapheme clusters table dart metadataprovider loaded debug metadata for module packages characters src grapheme clusters constants dart metadataprovider loaded debug metadata for module packages flutter src services system sound dart metadataprovider loaded debug metadata for module packages flutter src services system navigator dart metadataprovider loaded debug metadata for module packages flutter src services system chrome dart metadataprovider loaded debug metadata for module packages flutter src services platform views dart metadataprovider loaded debug metadata for module packages flutter gestures dart metadataprovider loaded debug metadata for module packages flutter src gestures velocity tracker dart metadataprovider loaded debug metadata for module packages flutter src gestures lsq solver dart metadataprovider loaded debug metadata for module packages flutter src gestures events dart metadataprovider loaded debug metadata for module packages flutter src gestures gesture settings dart metadataprovider loaded debug metadata for module packages flutter src gestures constants dart metadataprovider loaded debug metadata for module packages flutter src gestures team dart metadataprovider loaded debug metadata for module packages flutter src gestures arena dart metadataprovider loaded debug metadata for module packages flutter src gestures debug dart metadataprovider loaded debug metadata for module packages flutter src gestures binding dart metadataprovider loaded debug metadata for module packages flutter src gestures pointer signal resolver dart metadataprovider loaded debug metadata for module packages flutter src gestures pointer router dart metadataprovider loaded debug metadata for module packages flutter src gestures hit test dart metadataprovider loaded debug metadata for module packages flutter src gestures resampler dart metadataprovider loaded debug metadata for module packages flutter src gestures converter dart metadataprovider loaded debug metadata for module packages flutter src gestures tap dart metadataprovider loaded debug metadata for module packages flutter src gestures recognizer dart metadataprovider loaded debug metadata for module packages flutter src gestures scale dart metadataprovider loaded debug metadata for module packages flutter src gestures multitap dart metadataprovider loaded debug metadata for module packages flutter src gestures multidrag dart metadataprovider loaded debug metadata for module packages flutter src gestures drag dart metadataprovider loaded debug metadata for module packages flutter src gestures drag details dart metadataprovider loaded debug metadata for module packages flutter src gestures monodrag dart metadataprovider loaded debug metadata for module packages flutter src gestures long press dart metadataprovider loaded debug metadata for module packages flutter src gestures force press dart metadataprovider loaded debug metadata for module packages flutter src gestures eager dart metadataprovider loaded debug metadata for module packages flutter src services mouse tracking dart metadataprovider loaded debug metadata for module packages flutter src services mouse cursor dart metadataprovider loaded debug metadata for module packages flutter src services haptic feedback dart metadataprovider loaded debug metadata for module packages flutter src services font loader dart metadataprovider loaded debug metadata for module packages flutter src services deferred component dart metadataprovider loaded debug metadata for module packages flutter src painting basic types dart metadataprovider loaded debug metadata for module packages flutter src painting colors dart metadataprovider loaded debug metadata for module packages flutter src painting stadium border dart metadataprovider loaded debug metadata for module packages flutter src painting rounded rectangle border dart metadataprovider loaded debug metadata for module packages flutter src painting edge insets dart metadataprovider loaded debug metadata for module packages flutter src painting circle border dart metadataprovider loaded debug metadata for module packages flutter src painting borders dart metadataprovider loaded debug metadata for module packages flutter src painting border radius dart metadataprovider loaded debug metadata for module packages flutter src painting shape decoration dart metadataprovider loaded debug metadata for module packages flutter src painting network image web dart metadataprovider loaded debug metadata for module packages flutter src painting image stream dart metadataprovider loaded debug metadata for module packages flutter src painting image cache dart metadataprovider loaded debug metadata for module packages flutter src painting binding dart metadataprovider loaded debug metadata for module packages flutter src painting shader warm up dart metadataprovider loaded debug metadata for module packages flutter src painting debug dart metadataprovider loaded debug metadata for module packages flutter src painting gradient dart metadataprovider loaded debug metadata for module packages flutter src painting alignment dart metadataprovider loaded debug metadata for module packages flutter src painting decoration image dart metadataprovider loaded debug metadata for module packages flutter src painting box fit dart metadataprovider loaded debug metadata for module packages flutter src painting decoration dart metadataprovider loaded debug metadata for module packages flutter src painting box shadow dart metadataprovider loaded debug metadata for module packages flutter src painting box decoration dart metadataprovider loaded debug metadata for module packages flutter src painting box border dart metadataprovider loaded debug metadata for module packages flutter src painting paint utilities dart metadataprovider loaded debug metadata for module packages flutter src painting notched shapes dart metadataprovider loaded debug metadata for module packages flutter src painting matrix utils dart metadataprovider loaded debug metadata for module packages flutter src painting image resolution dart metadataprovider loaded debug metadata for module packages flutter src painting image decoder dart metadataprovider loaded debug metadata for module packages flutter src painting geometry dart metadataprovider loaded debug metadata for module packages flutter src painting fractional offset dart metadataprovider loaded debug metadata for module packages flutter src painting flutter logo dart metadataprovider loaded debug metadata for module packages flutter src painting continuous rectangle border dart metadataprovider loaded debug metadata for module packages flutter src painting clip dart metadataprovider loaded debug metadata for module packages flutter src painting beveled rectangle border dart metadataprovider loaded debug metadata for module packages flutter semantics dart metadataprovider loaded debug metadata for module packages flutter src semantics semantics service dart metadataprovider loaded debug metadata for module packages flutter src semantics semantics event dart metadataprovider loaded debug metadata for module packages flutter src semantics semantics dart metadataprovider loaded debug metadata for module packages flutter src semantics binding dart metadataprovider loaded debug metadata for module packages flutter src semantics debug dart metadataprovider loaded debug metadata for module packages flutter animation dart metadataprovider loaded debug metadata for module packages flutter src animation tween sequence dart metadataprovider loaded debug metadata for module packages flutter src animation listener helpers dart metadataprovider loaded debug metadata for module packages flutter src animation curves dart metadataprovider loaded debug metadata for module packages flutter src animation animation controller dart metadataprovider loaded debug metadata for module packages flutter physics dart metadataprovider loaded debug metadata for module packages flutter src physics utils dart metadataprovider loaded debug metadata for module packages flutter src physics tolerance dart metadataprovider loaded debug metadata for module packages flutter src physics spring simulation dart metadataprovider loaded debug metadata for module packages flutter src physics simulation dart metadataprovider loaded debug metadata for module packages flutter src physics gravity simulation dart metadataprovider loaded debug metadata for module packages flutter src physics friction simulation dart metadataprovider loaded debug metadata for module packages flutter src physics clamped simulation dart metadataprovider loaded debug metadata for module packages flutter src rendering layout helper dart metadataprovider loaded debug metadata for module packages flutter src rendering box dart metadataprovider loaded debug metadata for module packages flutter src rendering viewport offset dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver dart metadataprovider loaded debug metadata for module packages flutter src rendering view dart metadataprovider loaded debug metadata for module packages flutter src rendering mouse tracker dart metadataprovider loaded debug metadata for module packages flutter src rendering tweens dart metadataprovider loaded debug metadata for module packages flutter src rendering texture dart metadataprovider loaded debug metadata for module packages flutter src rendering table border dart metadataprovider loaded debug metadata for module packages flutter src rendering table dart metadataprovider loaded debug metadata for module packages flutter src rendering stack dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver persistent header dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver padding dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver multi box adaptor dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver list dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver grid dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver fixed extent list dart metadataprovider loaded debug metadata for module packages flutter src rendering sliver fill dart metadataprovider loaded debug metadata for module packages flutter src rendering shifted box dart metadataprovider loaded debug metadata for module packages flutter src rendering debug overflow indicator dart metadataprovider loaded debug metadata for module packages flutter src rendering selection dart metadataprovider loaded debug metadata for module packages flutter src rendering rotated box dart metadataprovider loaded debug metadata for module packages flutter src rendering proxy sliver dart metadataprovider loaded debug metadata for module packages flutter src rendering proxy box dart metadataprovider loaded debug metadata for module packages flutter src rendering platform view dart metadataprovider loaded debug metadata for module packages flutter src rendering performance overlay dart metadataprovider loaded debug metadata for module packages flutter src rendering paragraph dart metadataprovider loaded debug metadata for module packages flutter src rendering list wheel viewport dart metadataprovider loaded debug metadata for module packages flutter src rendering list body dart metadataprovider loaded debug metadata for module packages flutter src rendering image dart metadataprovider loaded debug metadata for module packages flutter src rendering flow dart metadataprovider loaded debug metadata for module packages flutter src rendering flex dart metadataprovider loaded debug metadata for module packages flutter src rendering error dart metadataprovider loaded debug metadata for module packages flutter src rendering editable dart metadataprovider loaded debug metadata for module packages flutter src rendering custom paint dart metadataprovider loaded debug metadata for module packages flutter src rendering custom layout dart metadataprovider loaded debug metadata for module packages flutter src rendering animated size dart metadataprovider loaded debug metadata for module packages flutter src widgets scroll metrics dart metadataprovider loaded debug metadata for module packages flutter src widgets constants dart metadataprovider loaded debug metadata for module packages flutter src widgets scroll simulation dart metadataprovider loaded debug metadata for module packages flutter src widgets visibility dart metadataprovider loaded debug metadata for module packages flutter src widgets value listenable builder dart metadataprovider loaded debug metadata for module packages flutter src widgets unique widget dart metadataprovider loaded debug metadata for module packages flutter src widgets tween animation builder dart metadataprovider loaded debug metadata for module packages flutter src widgets texture dart metadataprovider loaded debug metadata for module packages flutter src widgets text selection toolbar layout delegate dart metadataprovider loaded debug metadata for module packages flutter src widgets status transitions dart metadataprovider loaded debug metadata for module packages flutter src widgets spacer dart metadataprovider loaded debug metadata for module packages flutter src widgets slotted render object widget dart metadataprovider loaded debug metadata for module packages flutter src widgets sliver prototype extent list dart metadataprovider loaded debug metadata for module packages flutter src widgets sliver persistent header dart metadataprovider loaded debug metadata for module packages flutter src widgets sliver layout builder dart metadataprovider loaded debug metadata for module packages flutter src widgets layout builder dart metadataprovider loaded debug metadata for module packages flutter src widgets sliver fill dart metadataprovider loaded debug metadata for module packages flutter src widgets size changed layout notifier dart metadataprovider loaded debug metadata for module packages flutter src widgets single child scroll view dart metadataprovider loaded debug metadata for module packages flutter src widgets scroll view dart metadataprovider loaded debug metadata for module packages flutter src widgets scroll notification observer dart metadataprovider loaded debug metadata for module packages flutter src widgets safe area dart metadataprovider loaded debug metadata for module packages flutter src widgets reorderable list dart metadataprovider loaded debug metadata for module packages flutter src widgets raw keyboard listener dart metadataprovider loaded debug metadata for module packages flutter src widgets preferred size dart metadataprovider loaded debug metadata for module packages flutter src widgets platform view dart metadataprovider loaded debug metadata for module packages flutter src widgets page view dart metadataprovider loaded debug metadata for module packages flutter src widgets overflow bar dart metadataprovider loaded debug metadata for module packages flutter src widgets orientation builder dart metadataprovider loaded debug metadata for module packages flutter src widgets nested scroll view dart metadataprovider loaded debug metadata for module packages flutter src widgets navigation toolbar dart metadataprovider loaded debug metadata for module packages flutter src widgets list wheel scroll view dart metadataprovider loaded debug metadata for module packages flutter src widgets keyboard listener dart metadataprovider loaded debug metadata for module packages flutter src widgets interactive viewer dart metadataprovider loaded debug metadata for module packages flutter src widgets image icon dart metadataprovider loaded debug metadata for module packages flutter src widgets icon theme data dart metadataprovider loaded debug metadata for module packages flutter src widgets icon theme dart metadataprovider loaded debug metadata for module packages flutter src widgets icon dart metadataprovider loaded debug metadata for module packages flutter src widgets icon data dart metadataprovider loaded debug metadata for module packages flutter src widgets image filter dart metadataprovider loaded debug metadata for module packages flutter src widgets grid paper dart metadataprovider loaded debug metadata for module packages flutter src widgets form dart metadataprovider loaded debug metadata for module packages flutter src widgets fade in image dart metadataprovider loaded debug metadata for module packages flutter src widgets dual transition builder dart metadataprovider loaded debug metadata for module packages flutter src widgets draggable scrollable sheet dart metadataprovider loaded debug metadata for module packages flutter src widgets drag target dart metadataprovider loaded debug metadata for module packages flutter src widgets dismissible dart metadataprovider loaded debug metadata for module packages flutter src widgets desktop text selection toolbar layout delegate dart metadataprovider loaded debug metadata for module packages flutter src widgets color filter dart metadataprovider loaded debug metadata for module packages flutter src widgets bottom navigation bar item dart metadataprovider loaded debug metadata for module packages flutter src widgets autocomplete dart metadataprovider loaded debug metadata for module packages flutter src widgets async dart metadataprovider loaded debug metadata for module packages flutter src widgets annotated region dart metadataprovider loaded debug metadata for module packages flutter src widgets animated switcher dart metadataprovider loaded debug metadata for module packages flutter src widgets animated size dart metadataprovider loaded debug metadata for module packages flutter src widgets animated list dart metadataprovider loaded debug metadata for module packages flutter src widgets animated cross fade dart metadataprovider loaded debug metadata for module packages flutter src material user accounts drawer header dart metadataprovider loaded debug metadata for module packages flutter src material icon button dart metadataprovider loaded debug metadata for module packages flutter src material typography dart metadataprovider loaded debug metadata for module packages flutter src material colors dart metadataprovider loaded debug metadata for module packages flutter src material material state dart metadataprovider loaded debug metadata for module packages flutter src material input border dart metadataprovider loaded debug metadata for module packages flutter src material constants dart metadataprovider loaded debug metadata for module packages material color utilities material color utilities dart metadataprovider loaded debug metadata for module packages material color utilities score score dart metadataprovider loaded debug metadata for module packages material color utilities utils math utils dart metadataprovider loaded debug metadata for module packages material color utilities hct hct dart metadataprovider loaded debug metadata for module packages material color utilities hct cam solver dart metadataprovider loaded debug metadata for module packages material color utilities hct viewing conditions dart metadataprovider loaded debug metadata for module packages material color utilities utils color utils dart metadataprovider loaded debug metadata for module packages material color utilities hct dart metadataprovider loaded debug metadata for module packages material color utilities scheme scheme dart metadataprovider loaded debug metadata for module packages material color utilities palettes core palette dart metadataprovider loaded debug metadata for module packages material color utilities palettes tonal palette dart metadataprovider loaded debug metadata for module packages material color utilities quantize quantizer wu dart metadataprovider loaded debug metadata for module packages material color utilities quantize quantizer map dart metadataprovider loaded debug metadata for module packages material color utilities quantize quantizer dart metadataprovider loaded debug metadata for module packages material color utilities quantize quantizer wsmeans dart metadataprovider loaded debug metadata for module packages material color utilities quantize point provider lab dart metadataprovider loaded debug metadata for module packages material color utilities quantize point provider dart metadataprovider loaded debug metadata for module packages material color utilities quantize quantizer celebi dart metadataprovider loaded debug metadata for module packages material color utilities blend blend dart metadataprovider loaded debug metadata for module packages flutter src material tooltip visibility dart metadataprovider loaded debug metadata for module packages flutter src material floating action button theme dart metadataprovider loaded debug metadata for module packages flutter src material material state mixin dart metadataprovider loaded debug metadata for module packages flutter src material curves dart metadataprovider loaded debug metadata for module packages flutter src material bottom sheet theme dart metadataprovider loaded debug metadata for module packages flutter src material tab indicator dart metadataprovider loaded debug metadata for module packages flutter src material tab controller dart metadataprovider loaded debug metadata for module packages flutter src material icons dart metadataprovider loaded debug metadata for module packages flutter cupertino dart metadataprovider loaded debug metadata for module packages flutter src cupertino thumb painter dart metadataprovider loaded debug metadata for module packages flutter src cupertino text theme dart metadataprovider loaded debug metadata for module packages flutter src cupertino interface level dart metadataprovider loaded debug metadata for module packages flutter src cupertino text selection toolbar button dart metadataprovider loaded debug metadata for module packages flutter src cupertino button dart metadataprovider loaded debug metadata for module packages flutter src cupertino constants dart metadataprovider loaded debug metadata for module packages flutter src cupertino text selection toolbar dart metadataprovider loaded debug metadata for module packages flutter src cupertino text selection dart metadataprovider loaded debug metadata for module packages flutter src cupertino debug dart metadataprovider loaded debug metadata for module packages flutter src cupertino text form field row dart metadataprovider loaded debug metadata for module packages flutter src cupertino text field dart metadataprovider loaded debug metadata for module packages flutter src cupertino icons dart metadataprovider loaded debug metadata for module packages flutter src cupertino desktop text selection dart metadataprovider loaded debug metadata for module packages flutter src cupertino form row dart metadataprovider loaded debug metadata for module packages flutter src cupertino tab view dart metadataprovider loaded debug metadata for module packages flutter src cupertino route dart metadataprovider loaded debug metadata for module packages flutter src cupertino app dart metadataprovider loaded debug metadata for module packages flutter src cupertino scrollbar dart metadataprovider loaded debug metadata for module packages flutter src cupertino tab scaffold dart metadataprovider loaded debug metadata for module packages flutter src cupertino bottom tab bar dart metadataprovider loaded debug metadata for module packages flutter src cupertino switch dart metadataprovider loaded debug metadata for module packages flutter src cupertino sliding segmented control dart metadataprovider loaded debug metadata for module packages flutter src cupertino slider dart metadataprovider loaded debug metadata for module packages flutter src cupertino segmented control dart metadataprovider loaded debug metadata for module packages flutter src cupertino search field dart metadataprovider loaded debug metadata for module packages flutter src cupertino refresh dart metadataprovider loaded debug metadata for module packages flutter src cupertino activity indicator dart metadataprovider loaded debug metadata for module packages flutter src cupertino picker dart metadataprovider loaded debug metadata for module packages flutter src cupertino page scaffold dart metadataprovider loaded debug metadata for module packages flutter src cupertino nav bar dart metadataprovider loaded debug metadata for module packages flutter src cupertino form section dart metadataprovider loaded debug metadata for module packages flutter src cupertino dialog dart metadataprovider loaded debug metadata for module packages flutter src cupertino date picker dart metadataprovider loaded debug metadata for module packages flutter src cupertino context menu action dart metadataprovider loaded debug metadata for module packages flutter src cupertino context menu dart metadataprovider loaded debug metadata for module packages flutter src material drawer header dart metadataprovider loaded debug metadata for module packages flutter src material toggleable dart metadataprovider loaded debug metadata for module packages flutter src material toggle buttons dart metadataprovider loaded debug metadata for module packages flutter src material time picker dart metadataprovider loaded debug metadata for module packages flutter src material text form field dart metadataprovider loaded debug metadata for module packages flutter src material text field dart metadataprovider loaded debug metadata for module packages flutter src material text selection dart metadataprovider loaded debug metadata for module packages flutter src material text selection toolbar text button dart metadataprovider loaded debug metadata for module packages flutter src material text selection toolbar dart metadataprovider loaded debug metadata for module packages flutter src material selectable text dart metadataprovider loaded debug metadata for module packages flutter src material desktop text selection dart metadataprovider loaded debug metadata for module packages flutter src material dialog dart metadataprovider loaded debug metadata for module packages flutter src material switch list tile dart metadataprovider loaded debug metadata for module packages flutter src material switch dart metadataprovider loaded debug metadata for module packages flutter src material shadows dart metadataprovider loaded debug metadata for module packages flutter src material stepper dart metadataprovider loaded debug metadata for module packages flutter src material slider dart metadataprovider loaded debug metadata for module packages flutter src material selection area dart metadataprovider loaded debug metadata for module packages flutter src material search dart metadataprovider loaded debug metadata for module packages flutter src material scrollbar dart metadataprovider loaded debug metadata for module packages flutter src material reorderable list dart metadataprovider loaded debug metadata for module packages flutter src material refresh indicator dart metadataprovider loaded debug metadata for module packages flutter src material progress indicator dart metadataprovider loaded debug metadata for module packages flutter src material range slider dart metadataprovider loaded debug metadata for module packages flutter src material radio list tile dart metadataprovider loaded debug metadata for module packages flutter src material radio dart metadataprovider loaded debug metadata for module packages flutter src material popup menu dart metadataprovider loaded debug metadata for module packages flutter src material paginated data table dart metadataprovider loaded debug metadata for module packages flutter src material dropdown dart metadataprovider loaded debug metadata for module packages flutter src material data table source dart metadataprovider loaded debug metadata for module packages flutter src material data table dart metadataprovider loaded debug metadata for module packages flutter src material checkbox dart metadataprovider loaded debug metadata for module packages flutter src material card dart metadataprovider loaded debug metadata for module packages flutter src material page dart metadataprovider loaded debug metadata for module packages flutter src material outlined button dart metadataprovider loaded debug metadata for module packages flutter src material no splash dart metadataprovider loaded debug metadata for module packages flutter src material mergeable material dart metadataprovider loaded debug metadata for module packages flutter src material input date picker form field dart metadataprovider loaded debug metadata for module packages flutter src material date dart metadataprovider loaded debug metadata for module packages flutter src material grid tile bar dart metadataprovider loaded debug metadata for module packages flutter src material grid tile dart metadataprovider loaded debug metadata for module packages flutter src material flutter logo dart metadataprovider loaded debug metadata for module packages flutter src material expansion tile dart metadataprovider loaded debug metadata for module packages flutter src material expansion panel dart metadataprovider loaded debug metadata for module packages flutter src material expand icon dart metadataprovider loaded debug metadata for module packages flutter src material elevated button dart metadataprovider loaded debug metadata for module packages flutter src material date picker dart metadataprovider loaded debug metadata for module packages flutter src material calendar date picker dart metadataprovider loaded debug metadata for module packages flutter src material circle avatar dart metadataprovider loaded debug metadata for module packages flutter src material chip input dart metadataprovider loaded debug metadata for module packages flutter src material chip dart metadataprovider loaded debug metadata for module packages flutter src material chip filter dart metadataprovider loaded debug metadata for module packages flutter src material chip choice dart metadataprovider loaded debug metadata for module packages flutter src material chip action dart metadataprovider loaded debug metadata for module packages flutter src material checkbox list tile dart metadataprovider loaded debug metadata for module packages flutter src material button bar dart metadataprovider loaded debug metadata for module packages flutter src material bottom app bar dart metadataprovider loaded debug metadata for module packages flutter src material autocomplete dart metadataprovider loaded debug metadata for module packages flutter src material arc dart metadataprovider loaded debug metadata for module packages flutter src material app dart metadataprovider loaded debug metadata for module packages flutter src material animated icons dart metadataprovider loaded debug metadata for module packages flutter src material about dart metadataprovider loaded debug metadata sound null safety dwdsinjector injected debugging metadata for entrypoint at chromeproxyservice initializing expression compiler for main module bootstrap js with sound null safety true devhandler debug service listening on ws u ws devhandler vmservice proxy responded with an error jsonrpc id error code message method not found data jsonrpc method setstreamincludeprivatemembers id params streamid stdout includeprivatemembers false this app is linked to the debug service ws u ws devhandler vmservice proxy responded with an error jsonrpc id error code message method not found data jsonrpc method setstreamincludeprivatemembers id params streamid stderr includeprivatemembers false devhandler vmservice proxy responded with an error jsonrpc id error code message method not found data jsonrpc method setstreamincludeprivatemembers id params streamid isolate includeprivatemembers false devhandler vmservice proxy responded with an error jsonrpc id error code message method not found data jsonrpc method setstreamincludeprivatemembers id params streamid extension includeprivatemembers false debug service listening on ws u ws 💪 running with sound null safety 💪 🔥 to hot restart changes while running press r or r for a more detailed help message press h to quit press q an observatory debugger and profiler on chrome is available at flutter web bootstrap programmatic the flutter devtools debugger and profiler on chrome is available at run flutter analyze and attach any output of that command below if there are any analysis errors try resolving them before filing this issue oleh olehs mbp flutter analyze analyzing no issues found ran in oleh olehs mbp flutter doctor v flutter channel stable on macos darwin arm locale en gb • flutter version on channel stable at users oleh fvm versions stable • upstream repository • framework revision days ago • engine revision • dart version • devtools version android toolchain develop for android devices android sdk version • android sdk at users oleh library android sdk • platform android build tools • java binary at applications android studio app contents jre contents home bin java • java version openjdk runtime environment build • all android licenses accepted xcode develop for ios and macos xcode • xcode at applications xcode app contents developer • build • cocoapods version chrome develop for the web • chrome at applications google chrome app contents macos google chrome android studio version • android studio at applications android studio app contents • flutter plugin can be installed from 🔨 • dart plugin can be installed from 🔨 • java version openjdk runtime environment build vs code version • vs code at applications visual studio code app contents • flutter extension version connected device available • macos desktop • macos • darwin • macos darwin arm • chrome web • chrome • web javascript • google chrome http host availability • all required http hosts are available • no issues found img width alt screenshot at src
0
97,891
12,266,362,966
IssuesEvent
2020-05-07 08:50:02
mozilla-tw/FirefoxLite
https://api.github.com/repos/mozilla-tw/FirefoxLite
closed
[Feature] Landscape mode in Firefox Lite does not have toolbar or url bar
P0 feature need BI audit need design audit size: S
The landscape mode hides toolbar and nav bar immediately without providing any hints, which might be confusing to many landscape mode users.
1.0
[Feature] Landscape mode in Firefox Lite does not have toolbar or url bar - The landscape mode hides toolbar and nav bar immediately without providing any hints, which might be confusing to many landscape mode users.
non_process
landscape mode in firefox lite does not have toolbar or url bar the landscape mode hides toolbar and nav bar immediately without providing any hints which might be confusing to many landscape mode users
0
2,758
5,682,998,835
IssuesEvent
2017-04-13 11:22:59
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
GetProcessesByName_NoSuchProcess_ReturnsEmpty test failing
area-System.Diagnostics.Process blocking-clean-ci
This test is newly added and has been taking out a bunch of runs, e.g. https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_debug_prtest/1701/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_debug_prtest/1702/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_debug_prtest/1704/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_release_prtest/1705/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_release_prtest/1707/ ``` System.Diagnostics.Tests.ProcessTests.GetProcessesByName_NoSuchProcess_ReturnsEmpty(processName: null) [FAIL] Assert.Empty() Failure Stack Trace: at System.Diagnostics.Tests.ProcessTests.GetProcessesByName_NoSuchProcess_ReturnsEmpty(String processName) ```
1.0
GetProcessesByName_NoSuchProcess_ReturnsEmpty test failing - This test is newly added and has been taking out a bunch of runs, e.g. https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_debug_prtest/1701/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_debug_prtest/1702/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_debug_prtest/1704/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_release_prtest/1705/ https://ci.dot.net/job/dotnet_corefx/job/master/job/osx10.12_release_prtest/1707/ ``` System.Diagnostics.Tests.ProcessTests.GetProcessesByName_NoSuchProcess_ReturnsEmpty(processName: null) [FAIL] Assert.Empty() Failure Stack Trace: at System.Diagnostics.Tests.ProcessTests.GetProcessesByName_NoSuchProcess_ReturnsEmpty(String processName) ```
process
getprocessesbyname nosuchprocess returnsempty test failing this test is newly added and has been taking out a bunch of runs e g system diagnostics tests processtests getprocessesbyname nosuchprocess returnsempty processname null assert empty failure stack trace at system diagnostics tests processtests getprocessesbyname nosuchprocess returnsempty string processname
1
20,824
27,580,474,785
IssuesEvent
2023-03-08 15:53:33
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
Process: release criteria for v3.3 and later
Process
This issue covers new processes for releases v3.3 and later. The main slide deck with the final proposal for the TSC, along with justifications, is here: https://docs.google.com/presentation/d/10Q-B0Upv1bBaoQRNM5n9yUEMeXO6NINnFNDkA86RCsM/ Please especially review slide 9, which contains the following new release criteria. (For more information on support tiers, see https://github.com/zephyrproject-rtos/zephyr/issues/38566). - No blocker bugs! - All relevant tests shall pass on Tier 0 platforms - A test subset (TBD) shall pass on Tiers 0 and 1 (at least 1 per architecture/architecture variant/HW feature) - All samples/tests shall build on Tiers 0, 1 and 2 - All code (source files) must build - Long term: Eliminate various warnings - All high and critical static analysis and security issues addressed - Footprint/Performance Tracking (not specific KPIs) - License audit pass - Documentation Completeness and Release Notes - Per Subsystem release criteria + Testing - Reproducible Builds
1.0
Process: release criteria for v3.3 and later - This issue covers new processes for releases v3.3 and later. The main slide deck with the final proposal for the TSC, along with justifications, is here: https://docs.google.com/presentation/d/10Q-B0Upv1bBaoQRNM5n9yUEMeXO6NINnFNDkA86RCsM/ Please especially review slide 9, which contains the following new release criteria. (For more information on support tiers, see https://github.com/zephyrproject-rtos/zephyr/issues/38566). - No blocker bugs! - All relevant tests shall pass on Tier 0 platforms - A test subset (TBD) shall pass on Tiers 0 and 1 (at least 1 per architecture/architecture variant/HW feature) - All samples/tests shall build on Tiers 0, 1 and 2 - All code (source files) must build - Long term: Eliminate various warnings - All high and critical static analysis and security issues addressed - Footprint/Performance Tracking (not specific KPIs) - License audit pass - Documentation Completeness and Release Notes - Per Subsystem release criteria + Testing - Reproducible Builds
process
process release criteria for and later this issue covers new processes for releases and later the main slide deck with the final proposal for the tsc along with justifications is here please especially review slide which contains the following new release criteria for more information on support tiers see no blocker bugs all relevant tests shall pass on tier platforms a test subset tbd shall pass on tiers and at least per architecture architecture variant hw feature all samples tests shall build on tiers and all code source files must build long term eliminate various warnings all high and critical static analysis and security issues addressed footprint performance tracking not specific kpis license audit pass documentation completeness and release notes per subsystem release criteria testing reproducible builds
1
26,448
12,406,250,273
IssuesEvent
2020-05-21 18:47:08
microsoft/vscode-cpptools
https://api.github.com/repos/microsoft/vscode-cpptools
closed
IntelliSense error a value of type "Example *" cannot be assigned to an entity of type "Example *"
Language Service bug more info needed need repro
I'm having similar issues with structs declared within a class, same errors `a value of type "Example *" cannot be assigned to an entity of type "Example *"`, I searched for the error message on Github but only that issue came up as relevant. Had stuff like: ![image](https://user-images.githubusercontent.com/1311555/63047019-73167180-becb-11e9-8662-60ad97b5f319.png) However I closed VSCode and reopened the same file later, they didn't appear again. _Originally posted by @Zylann in https://github.com/microsoft/vscode-cpptools/issues/3700#issuecomment-521369123_
1.0
IntelliSense error a value of type "Example *" cannot be assigned to an entity of type "Example *" - I'm having similar issues with structs declared within a class, same errors `a value of type "Example *" cannot be assigned to an entity of type "Example *"`, I searched for the error message on Github but only that issue came up as relevant. Had stuff like: ![image](https://user-images.githubusercontent.com/1311555/63047019-73167180-becb-11e9-8662-60ad97b5f319.png) However I closed VSCode and reopened the same file later, they didn't appear again. _Originally posted by @Zylann in https://github.com/microsoft/vscode-cpptools/issues/3700#issuecomment-521369123_
non_process
intellisense error a value of type example cannot be assigned to an entity of type example i m having similar issues with structs declared within a class same errors a value of type example cannot be assigned to an entity of type example i searched for the error message on github but only that issue came up as relevant had stuff like however i closed vscode and reopened the same file later they didn t appear again originally posted by zylann in
0
6,344
9,381,719,313
IssuesEvent
2019-04-04 20:21:56
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Total Failure Following Module update
automation/svc cxp process-automation/subsvc triaged
If you update modules to the latest in Azure this breaks the scriping as it fails to understand Start-AzureRmAutomationRunbook -automationAccountName $automationAccountName -Name $runbookName -ResourceGroupName $aroResourceGroupName -Parameters $params Only solution is to delete all, and re-deploy with a new auto account without the updated modules. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 225c9d05-83dd-b006-0025-3753f5ab25bf * Version Independent ID: 9eecef0c-b1cb-1136-faf7-542214492096 * Content: [Start/Stop VMs during off-hours solution](https://docs.microsoft.com/en-us/azure/automation/automation-solution-vm-management#feedback) * Content Source: [articles/automation/automation-solution-vm-management.md](https://github.com/Microsoft/azure-docs/blob/master/articles/automation/automation-solution-vm-management.md) * Service: **automation** * Sub-service: **process-automation** * GitHub Login: @georgewallace * Microsoft Alias: **gwallace**
1.0
Total Failure Following Module update - If you update modules to the latest in Azure this breaks the scriping as it fails to understand Start-AzureRmAutomationRunbook -automationAccountName $automationAccountName -Name $runbookName -ResourceGroupName $aroResourceGroupName -Parameters $params Only solution is to delete all, and re-deploy with a new auto account without the updated modules. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 225c9d05-83dd-b006-0025-3753f5ab25bf * Version Independent ID: 9eecef0c-b1cb-1136-faf7-542214492096 * Content: [Start/Stop VMs during off-hours solution](https://docs.microsoft.com/en-us/azure/automation/automation-solution-vm-management#feedback) * Content Source: [articles/automation/automation-solution-vm-management.md](https://github.com/Microsoft/azure-docs/blob/master/articles/automation/automation-solution-vm-management.md) * Service: **automation** * Sub-service: **process-automation** * GitHub Login: @georgewallace * Microsoft Alias: **gwallace**
process
total failure following module update if you update modules to the latest in azure this breaks the scriping as it fails to understand start azurermautomationrunbook automationaccountname automationaccountname name runbookname resourcegroupname aroresourcegroupname parameters params only solution is to delete all and re deploy with a new auto account without the updated modules document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service automation sub service process automation github login georgewallace microsoft alias gwallace
1
67,009
27,703,100,104
IssuesEvent
2023-03-14 09:25:58
hashicorp/terraform-provider-azurerm
https://api.github.com/repos/hashicorp/terraform-provider-azurerm
closed
Dynamic block for DCR - Insufficient data_flow blocks error, even it is specified
question service/monitor
### Is there an existing issue for this? - [X] I have searched the existing issues ### Community Note <!--- Please keep this note for the community ---> * Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform Version 1.4.0 ### AzureRM Provider Version 3.47.0 ### Affected Resource(s)/Data Source(s) azurerm_monitor_data_collection_rule ### Terraform Configuration Files ```hcl resource "azurerm_monitor_data_collection_rule" "data_collection_rule" { for_each = local.data_collection_rule # required name = each.value.name resource_group_name = each.value.resource_group_name location = each.value.location dynamic "data_flow" { for_each = { for df in each.value.data_flow : df.destinations => df } content { destinations = data_flow.value.destinations streams = data_flow.value.streams } } } ``` ### Debug Output/Panic Output ```shell 2023-03-13T15:43:35.550+0100 [DEBUG] ReferenceTransformer: "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule[\"DCR01\"]" references: [] 2023-03-13T15:43:35.550+0100 [DEBUG] refresh: module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule["DCR01"]: no state, so not refreshing 2023-03-13T15:43:35.554+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule[\"DCR01\"]" error: Invalid object key 2023-03-13T15:43:35.554+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule[\"DCR01\"]" error: Insufficient data_flow blocks 2023-03-13T15:43:35.555+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule (expand)" error: Invalid object key 2023-03-13T15:43:35.556+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule (expand)" error: Insufficient data_flow blocks 2023-03-13T15:43:35.557+0100 [INFO] backend/local: plan operation completed ``` ### Expected Behaviour Hi, appreciate a bit of help here: if we specify dynamic block with at least one data_flow object, there should be a possibility to loop through them. If dynamic is omitted, everything works as expected. It seems that terraform doesn't see required object inside the dynamic block. Reason to do that is that there might be multiple data_flow objects inside dynamic block and we do not want to specify exact number of objects as it may change frequently. ### Actual Behaviour │ Error: Insufficient data_flow blocks │ │ on ..\main.tf line 14, in resource "azurerm_monitor_data_collection_rule" "data_collection_rule": │ 14: resource "azurerm_monitor_data_collection_rule" "data_collection_rule" { │ │ At least 1 "data_flow" blocks are required. ### Steps to Reproduce Use the template here: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/monitor_data_collection_rule Variables.tf: ``` data_flow = list(object({ destinations = list(string) streams = list(string) })) ``` Locals.tf: ``` data_flow = [ { streams = ["Microsoft-InsightsMetrics"] destinations = ["test-destination-metrics"] }, { streams = ["Microsoft-InsightsMetrics", "Microsoft-Syslog", "Microsoft-Perf"] destinations = ["test-destination-log"] } ] ``` Main.tf: ``` dynamic "data_flow" { for_each = { for df in each.value.data_flow : df.destinations => df } content { destinations = data_flow.value.destinations streams = data_flow.value.streams } } ``` ### Important Factoids _No response_ ### References _No response_
1.0
Dynamic block for DCR - Insufficient data_flow blocks error, even it is specified - ### Is there an existing issue for this? - [X] I have searched the existing issues ### Community Note <!--- Please keep this note for the community ---> * Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request * If you are interested in working on this issue or have submitted a pull request, please leave a comment <!--- Thank you for keeping this note for the community ---> ### Terraform Version 1.4.0 ### AzureRM Provider Version 3.47.0 ### Affected Resource(s)/Data Source(s) azurerm_monitor_data_collection_rule ### Terraform Configuration Files ```hcl resource "azurerm_monitor_data_collection_rule" "data_collection_rule" { for_each = local.data_collection_rule # required name = each.value.name resource_group_name = each.value.resource_group_name location = each.value.location dynamic "data_flow" { for_each = { for df in each.value.data_flow : df.destinations => df } content { destinations = data_flow.value.destinations streams = data_flow.value.streams } } } ``` ### Debug Output/Panic Output ```shell 2023-03-13T15:43:35.550+0100 [DEBUG] ReferenceTransformer: "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule[\"DCR01\"]" references: [] 2023-03-13T15:43:35.550+0100 [DEBUG] refresh: module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule["DCR01"]: no state, so not refreshing 2023-03-13T15:43:35.554+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule[\"DCR01\"]" error: Invalid object key 2023-03-13T15:43:35.554+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule[\"DCR01\"]" error: Insufficient data_flow blocks 2023-03-13T15:43:35.555+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule (expand)" error: Invalid object key 2023-03-13T15:43:35.556+0100 [ERROR] vertex "module.dcr.azurerm_monitor_data_collection_rule.data_collection_rule (expand)" error: Insufficient data_flow blocks 2023-03-13T15:43:35.557+0100 [INFO] backend/local: plan operation completed ``` ### Expected Behaviour Hi, appreciate a bit of help here: if we specify dynamic block with at least one data_flow object, there should be a possibility to loop through them. If dynamic is omitted, everything works as expected. It seems that terraform doesn't see required object inside the dynamic block. Reason to do that is that there might be multiple data_flow objects inside dynamic block and we do not want to specify exact number of objects as it may change frequently. ### Actual Behaviour │ Error: Insufficient data_flow blocks │ │ on ..\main.tf line 14, in resource "azurerm_monitor_data_collection_rule" "data_collection_rule": │ 14: resource "azurerm_monitor_data_collection_rule" "data_collection_rule" { │ │ At least 1 "data_flow" blocks are required. ### Steps to Reproduce Use the template here: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/monitor_data_collection_rule Variables.tf: ``` data_flow = list(object({ destinations = list(string) streams = list(string) })) ``` Locals.tf: ``` data_flow = [ { streams = ["Microsoft-InsightsMetrics"] destinations = ["test-destination-metrics"] }, { streams = ["Microsoft-InsightsMetrics", "Microsoft-Syslog", "Microsoft-Perf"] destinations = ["test-destination-log"] } ] ``` Main.tf: ``` dynamic "data_flow" { for_each = { for df in each.value.data_flow : df.destinations => df } content { destinations = data_flow.value.destinations streams = data_flow.value.streams } } ``` ### Important Factoids _No response_ ### References _No response_
non_process
dynamic block for dcr insufficient data flow blocks error even it is specified is there an existing issue for this i have searched the existing issues community note please vote on this issue by adding a thumbsup to the original issue to help the community and maintainers prioritize this request please do not leave or me too comments they generate extra noise for issue followers and do not help prioritize the request if you are interested in working on this issue or have submitted a pull request please leave a comment terraform version azurerm provider version affected resource s data source s azurerm monitor data collection rule terraform configuration files hcl resource azurerm monitor data collection rule data collection rule for each local data collection rule required name each value name resource group name each value resource group name location each value location dynamic data flow for each for df in each value data flow df destinations df content destinations data flow value destinations streams data flow value streams debug output panic output shell referencetransformer module dcr azurerm monitor data collection rule data collection rule references refresh module dcr azurerm monitor data collection rule data collection rule no state so not refreshing vertex module dcr azurerm monitor data collection rule data collection rule error invalid object key vertex module dcr azurerm monitor data collection rule data collection rule error insufficient data flow blocks vertex module dcr azurerm monitor data collection rule data collection rule expand error invalid object key vertex module dcr azurerm monitor data collection rule data collection rule expand error insufficient data flow blocks backend local plan operation completed expected behaviour hi appreciate a bit of help here if we specify dynamic block with at least one data flow object there should be a possibility to loop through them if dynamic is omitted everything works as expected it seems that terraform doesn t see required object inside the dynamic block reason to do that is that there might be multiple data flow objects inside dynamic block and we do not want to specify exact number of objects as it may change frequently actual behaviour │ error insufficient data flow blocks │ │ on main tf line in resource azurerm monitor data collection rule data collection rule │ resource azurerm monitor data collection rule data collection rule │ │ at least data flow blocks are required steps to reproduce use the template here variables tf data flow list object destinations list string streams list string locals tf data flow streams destinations streams destinations main tf dynamic data flow for each for df in each value data flow df destinations df content destinations data flow value destinations streams data flow value streams important factoids no response references no response
0
28,687
2,708,484,742
IssuesEvent
2015-04-08 09:15:56
ondras/wwwsqldesigner
https://api.github.com/repos/ondras/wwwsqldesigner
closed
Missing boolean/bit data type
bug imported Priority-Medium
_From [atrop...@gmail.com](https://code.google.com/u/101131384345788038437/) on November 22, 2009 05:58:00_ The type drop down list doesn't contain a data type for boolean (aka bit) data types. _Original issue: http://code.google.com/p/wwwsqldesigner/issues/detail?id=49_
1.0
Missing boolean/bit data type - _From [atrop...@gmail.com](https://code.google.com/u/101131384345788038437/) on November 22, 2009 05:58:00_ The type drop down list doesn't contain a data type for boolean (aka bit) data types. _Original issue: http://code.google.com/p/wwwsqldesigner/issues/detail?id=49_
non_process
missing boolean bit data type from on november the type drop down list doesn t contain a data type for boolean aka bit data types original issue
0
905
3,368,162,508
IssuesEvent
2015-11-22 19:30:11
pwittchen/kirai
https://api.github.com/repos/pwittchen/kirai
closed
Release 1.4.0
release process
**Initial release notes**: - added support for formatting text in Unix terminal (bold, underline, color and background color) - created separate packages for classes responsible for html formatting and terminal formatting - added `TerminalColor` and `TerminalBgColor` enums with predefined terminal color codes - updated README.md and prepared more code samples - added test coverage with codecov.io **Things to do**: - [x] bump library version - [x] upload archives to Maven Central - [x] close and release artifact on Maven Central - [x] update JavaDoc on gh-pages - [x] update `CHANGELOG.md` after Maven Sync - [x] bump library version in `README.md` - [x] create new GitHub release
1.0
Release 1.4.0 - **Initial release notes**: - added support for formatting text in Unix terminal (bold, underline, color and background color) - created separate packages for classes responsible for html formatting and terminal formatting - added `TerminalColor` and `TerminalBgColor` enums with predefined terminal color codes - updated README.md and prepared more code samples - added test coverage with codecov.io **Things to do**: - [x] bump library version - [x] upload archives to Maven Central - [x] close and release artifact on Maven Central - [x] update JavaDoc on gh-pages - [x] update `CHANGELOG.md` after Maven Sync - [x] bump library version in `README.md` - [x] create new GitHub release
process
release initial release notes added support for formatting text in unix terminal bold underline color and background color created separate packages for classes responsible for html formatting and terminal formatting added terminalcolor and terminalbgcolor enums with predefined terminal color codes updated readme md and prepared more code samples added test coverage with codecov io things to do bump library version upload archives to maven central close and release artifact on maven central update javadoc on gh pages update changelog md after maven sync bump library version in readme md create new github release
1
243,403
20,384,354,211
IssuesEvent
2022-02-22 04:12:03
DnD-Montreal/session-tome
https://api.github.com/repos/DnD-Montreal/session-tome
opened
Cypress Tests for Campaign Enrollment
task test
## Description <!-- Provide a general summary of the feature in the title above --> Write E2E Cypress tests for #251 Campaign Enrollment. ## Possible Implementation <!-- If you have an idea of how to implement the issue, jot it down here - this section is optional --> - Join a campaign - Kick a user from a campaign
1.0
Cypress Tests for Campaign Enrollment - ## Description <!-- Provide a general summary of the feature in the title above --> Write E2E Cypress tests for #251 Campaign Enrollment. ## Possible Implementation <!-- If you have an idea of how to implement the issue, jot it down here - this section is optional --> - Join a campaign - Kick a user from a campaign
non_process
cypress tests for campaign enrollment description write cypress tests for campaign enrollment possible implementation join a campaign kick a user from a campaign
0
1,463
4,044,542,297
IssuesEvent
2016-05-21 11:38:13
sysown/proxysql
https://api.github.com/repos/sysown/proxysql
closed
Implement support for CLIENT_MULTI_STATEMENTS and multiple resultsets.
development enhancement MYSQL PROTOCOL QUERY PROCESSOR ROUTING
ProxySQL currently doesn't support CLIENT_MULTI_STATEMENTS and multiple resultsets. Despite the fact that ProxySQL doesn't list CLIENT_MULTI_STATEMENTS as a capability, some application ignore this and send multiple statements in a single COM_QUERY . Useful links: https://dev.mysql.com/doc/internals/en/multi-resultset.html https://dev.mysql.com/doc/internals/en/capability-flags.html#flag-CLIENT_MULTI_RESULTS https://dev.mysql.com/doc/internals/en/capability-flags.html#flag-CLIENT_MULTI_STATEMENTS https://dev.mysql.com/doc/internals/en/com-query-response.html#packet-COM_QUERY_Response https://dev.mysql.com/doc/internals/en/status-flags.html#flag-SERVER_MORE_RESULTS_EXISTS
1.0
Implement support for CLIENT_MULTI_STATEMENTS and multiple resultsets. - ProxySQL currently doesn't support CLIENT_MULTI_STATEMENTS and multiple resultsets. Despite the fact that ProxySQL doesn't list CLIENT_MULTI_STATEMENTS as a capability, some application ignore this and send multiple statements in a single COM_QUERY . Useful links: https://dev.mysql.com/doc/internals/en/multi-resultset.html https://dev.mysql.com/doc/internals/en/capability-flags.html#flag-CLIENT_MULTI_RESULTS https://dev.mysql.com/doc/internals/en/capability-flags.html#flag-CLIENT_MULTI_STATEMENTS https://dev.mysql.com/doc/internals/en/com-query-response.html#packet-COM_QUERY_Response https://dev.mysql.com/doc/internals/en/status-flags.html#flag-SERVER_MORE_RESULTS_EXISTS
process
implement support for client multi statements and multiple resultsets proxysql currently doesn t support client multi statements and multiple resultsets despite the fact that proxysql doesn t list client multi statements as a capability some application ignore this and send multiple statements in a single com query useful links
1
255,729
27,498,243,242
IssuesEvent
2023-03-05 11:57:55
Mend-developer-platform-load/10991390_1_rerun
https://api.github.com/repos/Mend-developer-platform-load/10991390_1_rerun
opened
depcheck-0.6.7.tgz: 1 vulnerabilities (highest severity is: 5.3)
Mend: dependency security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>depcheck-0.6.7.tgz</b></p></summary> <p></p> <p> <p>Found in HEAD commit: <a href="https://github.com/Mend-developer-platform-load/10991390_1_rerun/commit/63cc642dc826b46126e0cbc53462d212cf48a6aa">63cc642dc826b46126e0cbc53462d212cf48a6aa</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (depcheck version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2020-7608](https://www.mend.io/vulnerability-database/CVE-2020-7608) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.3 | yargs-parser-4.2.1.tgz | Transitive | 0.6.8 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-7608</summary> ### Vulnerable Library - <b>yargs-parser-4.2.1.tgz</b></p> <p>the mighty option parser used by yargs</p> <p>Library home page: <a href="https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz">https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz</a></p> <p> Dependency Hierarchy: - depcheck-0.6.7.tgz (Root Library) - yargs-6.6.0.tgz - :x: **yargs-parser-4.2.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/Mend-developer-platform-load/10991390_1_rerun/commit/63cc642dc826b46126e0cbc53462d212cf48a6aa">63cc642dc826b46126e0cbc53462d212cf48a6aa</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> yargs-parser could be tricked into adding or modifying properties of Object.prototype using a "__proto__" payload. <p>Publish Date: 2020-03-16 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-7608>CVE-2020-7608</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>5.3</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Release Date: 2020-03-16</p> <p>Fix Resolution (yargs-parser): 5.0.0-security.0</p> <p>Direct dependency fix Resolution (depcheck): 0.6.8</p> </p> <p></p> </details>
True
depcheck-0.6.7.tgz: 1 vulnerabilities (highest severity is: 5.3) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>depcheck-0.6.7.tgz</b></p></summary> <p></p> <p> <p>Found in HEAD commit: <a href="https://github.com/Mend-developer-platform-load/10991390_1_rerun/commit/63cc642dc826b46126e0cbc53462d212cf48a6aa">63cc642dc826b46126e0cbc53462d212cf48a6aa</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (depcheck version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2020-7608](https://www.mend.io/vulnerability-database/CVE-2020-7608) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 5.3 | yargs-parser-4.2.1.tgz | Transitive | 0.6.8 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-7608</summary> ### Vulnerable Library - <b>yargs-parser-4.2.1.tgz</b></p> <p>the mighty option parser used by yargs</p> <p>Library home page: <a href="https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz">https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz</a></p> <p> Dependency Hierarchy: - depcheck-0.6.7.tgz (Root Library) - yargs-6.6.0.tgz - :x: **yargs-parser-4.2.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/Mend-developer-platform-load/10991390_1_rerun/commit/63cc642dc826b46126e0cbc53462d212cf48a6aa">63cc642dc826b46126e0cbc53462d212cf48a6aa</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> yargs-parser could be tricked into adding or modifying properties of Object.prototype using a "__proto__" payload. <p>Publish Date: 2020-03-16 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2020-7608>CVE-2020-7608</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>5.3</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Release Date: 2020-03-16</p> <p>Fix Resolution (yargs-parser): 5.0.0-security.0</p> <p>Direct dependency fix Resolution (depcheck): 0.6.8</p> </p> <p></p> </details>
non_process
depcheck tgz vulnerabilities highest severity is vulnerable library depcheck tgz found in head commit a href vulnerabilities cve severity cvss dependency type fixed in depcheck version remediation available medium yargs parser tgz transitive details cve vulnerable library yargs parser tgz the mighty option parser used by yargs library home page a href dependency hierarchy depcheck tgz root library yargs tgz x yargs parser tgz vulnerable library found in head commit a href found in base branch main vulnerability details yargs parser could be tricked into adding or modifying properties of object prototype using a proto payload publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version release date fix resolution yargs parser security direct dependency fix resolution depcheck
0
12,517
14,964,792,378
IssuesEvent
2021-01-27 12:30:03
modi-w/AutoVersionsDB
https://api.github.com/repos/modi-w/AutoVersionsDB
closed
Upgrade to .net 5
area-Core process-ready-for-implementation type-enhancement
**Goal** Upgrade to .Net 5 **Pay Attention** That we should do that after replacing the Winform app with the WPF app. Because we have Winform.Designer app that bases on .net framework (not on .net core), and with .net 5, we cant reference to .net 5 project. **Action Items:** 1. Upgrade all the project to .net 5 2. Resolve all the errors and warnings.
1.0
Upgrade to .net 5 - **Goal** Upgrade to .Net 5 **Pay Attention** That we should do that after replacing the Winform app with the WPF app. Because we have Winform.Designer app that bases on .net framework (not on .net core), and with .net 5, we cant reference to .net 5 project. **Action Items:** 1. Upgrade all the project to .net 5 2. Resolve all the errors and warnings.
process
upgrade to net goal upgrade to net pay attention that we should do that after replacing the winform app with the wpf app because we have winform designer app that bases on net framework not on net core and with net we cant reference to net project action items upgrade all the project to net resolve all the errors and warnings
1
21,098
28,050,015,733
IssuesEvent
2023-03-29 04:29:06
metabase/metabase
https://api.github.com/repos/metabase/metabase
closed
[MLv2] Implement filters
.metabase-lib .Team/QueryProcessor :hammer_and_wrench:
We need to fill out the helper functions in `metabase.lib.filter` and Malli schema in `metabase.lib.schema.filter` for all the various types of filter clauses we support and add tests around them Basically we need the functions that are going to power the QB GUI like <img width="271" alt="image" src="https://user-images.githubusercontent.com/1455846/221663647-15284e0b-7c99-4090-b8c0-946744379c1d.png"> after you click "Add filter". If we can do validation inline, it would be a good thing to do (e.g. if we know that a Field is a `:type/Integer`, we should error if you try to put it in a filter that expects a String expression, a boolean literal should not be allowed in a `:>` filter, etc.). We should also do feature checks against Database metadata where needed, e.g. if a Database doesn't support some specific regex filter and you use the function to add one, it should error. Implementing the list of available filters will be a separate issue
1.0
[MLv2] Implement filters - We need to fill out the helper functions in `metabase.lib.filter` and Malli schema in `metabase.lib.schema.filter` for all the various types of filter clauses we support and add tests around them Basically we need the functions that are going to power the QB GUI like <img width="271" alt="image" src="https://user-images.githubusercontent.com/1455846/221663647-15284e0b-7c99-4090-b8c0-946744379c1d.png"> after you click "Add filter". If we can do validation inline, it would be a good thing to do (e.g. if we know that a Field is a `:type/Integer`, we should error if you try to put it in a filter that expects a String expression, a boolean literal should not be allowed in a `:>` filter, etc.). We should also do feature checks against Database metadata where needed, e.g. if a Database doesn't support some specific regex filter and you use the function to add one, it should error. Implementing the list of available filters will be a separate issue
process
implement filters we need to fill out the helper functions in metabase lib filter and malli schema in metabase lib schema filter for all the various types of filter clauses we support and add tests around them basically we need the functions that are going to power the qb gui like img width alt image src after you click add filter if we can do validation inline it would be a good thing to do e g if we know that a field is a type integer we should error if you try to put it in a filter that expects a string expression a boolean literal should not be allowed in a filter etc we should also do feature checks against database metadata where needed e g if a database doesn t support some specific regex filter and you use the function to add one it should error implementing the list of available filters will be a separate issue
1
780
3,258,641,405
IssuesEvent
2015-10-20 23:38:12
meteor/meteor
https://api.github.com/repos/meteor/meteor
opened
Release 1.2.1
Project:Release Process
This is going to be a relatively small release with no huge headline features, just some nice improvements! - Faster collection inserts on the server - New `ecmascript-runtime` package to replace `ecmascript-collections`, which provides more ES2015 polyfills! - Support for named pipes as a port in production mode, needed for IIS on Windows - Some other issues, going to list them in more detail soon! I'm creating the release branch now, it will be called `release-1.2.1`. ### Todos - [ ] Update History.md - [ ] Establish what QA needs to be done - [ ] Add isues for documentation
1.0
Release 1.2.1 - This is going to be a relatively small release with no huge headline features, just some nice improvements! - Faster collection inserts on the server - New `ecmascript-runtime` package to replace `ecmascript-collections`, which provides more ES2015 polyfills! - Support for named pipes as a port in production mode, needed for IIS on Windows - Some other issues, going to list them in more detail soon! I'm creating the release branch now, it will be called `release-1.2.1`. ### Todos - [ ] Update History.md - [ ] Establish what QA needs to be done - [ ] Add isues for documentation
process
release this is going to be a relatively small release with no huge headline features just some nice improvements faster collection inserts on the server new ecmascript runtime package to replace ecmascript collections which provides more polyfills support for named pipes as a port in production mode needed for iis on windows some other issues going to list them in more detail soon i m creating the release branch now it will be called release todos update history md establish what qa needs to be done add isues for documentation
1
151,887
5,829,394,478
IssuesEvent
2017-05-08 14:29:31
dotkom/onlineweb4
https://api.github.com/repos/dotkom/onlineweb4
closed
Not possible to edit event in Django administration
Location: Admin Package: Event Priority: High Status: Available Type: Bug
## What kind of an issue is this? - [x] Bug report ## What is the expected behaviour? It should be possible to save an event on the event administration page, having filled out all the required fields, and make it not produce a validation error. ## What is the current behaviour? When saving an event in the administration page it does not validate properly, so saving fails. ## How do you reproduce this problem? Try to create an event on the administration page, or edit an existing event. ## Other information Missing all relevant fields for an event, but all the inline fields are included. ![screenshot 2017-03-07 14 43 29](https://cloud.githubusercontent.com/assets/5422571/23658908/8c8c2d7a-0344-11e7-9fe8-06afdc047ceb.png)
1.0
Not possible to edit event in Django administration - ## What kind of an issue is this? - [x] Bug report ## What is the expected behaviour? It should be possible to save an event on the event administration page, having filled out all the required fields, and make it not produce a validation error. ## What is the current behaviour? When saving an event in the administration page it does not validate properly, so saving fails. ## How do you reproduce this problem? Try to create an event on the administration page, or edit an existing event. ## Other information Missing all relevant fields for an event, but all the inline fields are included. ![screenshot 2017-03-07 14 43 29](https://cloud.githubusercontent.com/assets/5422571/23658908/8c8c2d7a-0344-11e7-9fe8-06afdc047ceb.png)
non_process
not possible to edit event in django administration what kind of an issue is this bug report what is the expected behaviour it should be possible to save an event on the event administration page having filled out all the required fields and make it not produce a validation error what is the current behaviour when saving an event in the administration page it does not validate properly so saving fails how do you reproduce this problem try to create an event on the administration page or edit an existing event other information missing all relevant fields for an event but all the inline fields are included
0
100,475
12,528,357,886
IssuesEvent
2020-06-04 09:26:52
greatnewcls/HLNLL3FFR3NVETEIL4MMB55N
https://api.github.com/repos/greatnewcls/HLNLL3FFR3NVETEIL4MMB55N
reopened
oucILbMTrClqwm0IXkqO7CS0fGRFYqPCBbZRglV+KjPZDn0H1SrswwCyrf68kosTRERzst7NofNXr7N2BL6Wf+g/KOT1Jy1K/0mJ7cKPAVOWSD2TNFQBsvk1WplWz/E/+13IorlpC6lWT1iQ+2FrD+pDuHfvYe96hE8yCiH3lZQ=
design
bRspc17bkEiTuNnw8KvVaH3sUhOA1lwR0TB3dYFgDX2a5ZkaGxDlE1nmpGON5NQ46LL8dwWhH5JN2gUpxt4p7PFNWnnVVjDvrLIBnUE3BgVH4PWFi31ygcNf98uJTpHZYBealuVmECyOQ0YBj2TXetAzRo9cKUAv95c8DOpcVODeVNmMLYHKUQ8KA9cd5z8jRrSWBYpjOQwSUYU9ROhCeWMPwaUozK9Kzmq/rm9L8JDTSxHfaFMDrkwtiJRJNkzPoNVGinZSaPLHdVVjI8BZR/rzw8rYuoNxwUwgqY31BoyMCFeWrDtVgbYNeZDr7P7EIYxEbgRlCKsnoDF3Yai9y7rpVbMnw2RvFsPo58lHB2ajUeFzj9poCa7CqqlpgtDZXBAFWL/rwaCgqAnHx4L+GcwhfGkI7VcHLK/pUdx1FZGB8JrKO5tPFcxNM2d5TnNQBxAb5PXCJ0pWcQE1nliql1VKSYpzpfi01cy3Ni6uSkk4DqBUbnHF/sOPe+9ISWsqlynOd1DYxbt0v3rl3buKuzFE9WglkogD9k+9nsLAv38KFFh/Oluyb8Cr1Hd3mxNfUl1HhUWQlAF6cEuSq/h+a6joxlbC3eu0BoGlhpCqdEVdxjdqKeRaMw6MjgIm0JCMxcna5g+X0Nt4/scGm2q/Hb2O4s75Vfk26PLtIbVTiM7oP7a2lf3TRzsUJtOBztarhSoEqzGs+VnzHCYUIztuK/qrPClwyFxiZr/jA0jMBwNIqITknN327XDODTd5K7mfSGaH2gGKMStJ9JkwN8aZFQGGsKUUQcVWADQkaZucB6U4OiNVXEu4t1aDkrPs5QutzwDB+G5EL47gA1SusDo6Byi47tppyyOEwrxcAMskpNr+bUbk/T75ojIE5wyRVBXHV9N5+URiwEZtJbh4cXFG7qCgPQMP6a4qmpL+k/oWsbZKgSKlxkLhTliVVQGNAGAUJIOC/yUbv2MO8yVC7yVBrw==
1.0
oucILbMTrClqwm0IXkqO7CS0fGRFYqPCBbZRglV+KjPZDn0H1SrswwCyrf68kosTRERzst7NofNXr7N2BL6Wf+g/KOT1Jy1K/0mJ7cKPAVOWSD2TNFQBsvk1WplWz/E/+13IorlpC6lWT1iQ+2FrD+pDuHfvYe96hE8yCiH3lZQ= - bRspc17bkEiTuNnw8KvVaH3sUhOA1lwR0TB3dYFgDX2a5ZkaGxDlE1nmpGON5NQ46LL8dwWhH5JN2gUpxt4p7PFNWnnVVjDvrLIBnUE3BgVH4PWFi31ygcNf98uJTpHZYBealuVmECyOQ0YBj2TXetAzRo9cKUAv95c8DOpcVODeVNmMLYHKUQ8KA9cd5z8jRrSWBYpjOQwSUYU9ROhCeWMPwaUozK9Kzmq/rm9L8JDTSxHfaFMDrkwtiJRJNkzPoNVGinZSaPLHdVVjI8BZR/rzw8rYuoNxwUwgqY31BoyMCFeWrDtVgbYNeZDr7P7EIYxEbgRlCKsnoDF3Yai9y7rpVbMnw2RvFsPo58lHB2ajUeFzj9poCa7CqqlpgtDZXBAFWL/rwaCgqAnHx4L+GcwhfGkI7VcHLK/pUdx1FZGB8JrKO5tPFcxNM2d5TnNQBxAb5PXCJ0pWcQE1nliql1VKSYpzpfi01cy3Ni6uSkk4DqBUbnHF/sOPe+9ISWsqlynOd1DYxbt0v3rl3buKuzFE9WglkogD9k+9nsLAv38KFFh/Oluyb8Cr1Hd3mxNfUl1HhUWQlAF6cEuSq/h+a6joxlbC3eu0BoGlhpCqdEVdxjdqKeRaMw6MjgIm0JCMxcna5g+X0Nt4/scGm2q/Hb2O4s75Vfk26PLtIbVTiM7oP7a2lf3TRzsUJtOBztarhSoEqzGs+VnzHCYUIztuK/qrPClwyFxiZr/jA0jMBwNIqITknN327XDODTd5K7mfSGaH2gGKMStJ9JkwN8aZFQGGsKUUQcVWADQkaZucB6U4OiNVXEu4t1aDkrPs5QutzwDB+G5EL47gA1SusDo6Byi47tppyyOEwrxcAMskpNr+bUbk/T75ojIE5wyRVBXHV9N5+URiwEZtJbh4cXFG7qCgPQMP6a4qmpL+k/oWsbZKgSKlxkLhTliVVQGNAGAUJIOC/yUbv2MO8yVC7yVBrw==
non_process
g e sope h vnzhcyuiztuk qrpclwyfxizr bubk k owsbzkgsklxklhtlivvqgnagaujioc
0
80,969
15,594,971,256
IssuesEvent
2021-03-18 14:26:16
AlexRogalskiy/github-action-json-fields
https://api.github.com/repos/AlexRogalskiy/github-action-json-fields
opened
CVE-2021-27290 (Medium) detected in ssri-6.0.1.tgz
security vulnerability
## CVE-2021-27290 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ssri-6.0.1.tgz</b></p></summary> <p>Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.</p> <p>Library home page: <a href="https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz">https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz</a></p> <p>Path to dependency file: github-action-json-fields/package.json</p> <p>Path to vulnerable library: github-action-json-fields/node_modules/npm/node_modules/ssri/package.json</p> <p> Dependency Hierarchy: - npm-7.0.10.tgz (Root Library) - npm-6.14.11.tgz - :x: **ssri-6.0.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/AlexRogalskiy/github-action-json-fields/commit/a4673c15b89b7b2e8bcfce9ca4311fa9987a570f">a4673c15b89b7b2e8bcfce9ca4311fa9987a570f</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression which is vulnerable to a denial of service. Malicious SRIs could take an extremely long time to process, leading to denial of service. This issue only affects consumers using the strict option. <p>Publish Date: 2021-03-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-27290>CVE-2021-27290</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27290">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27290</a></p> <p>Release Date: 2021-03-12</p> <p>Fix Resolution: v8.0.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-27290 (Medium) detected in ssri-6.0.1.tgz - ## CVE-2021-27290 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>ssri-6.0.1.tgz</b></p></summary> <p>Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.</p> <p>Library home page: <a href="https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz">https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz</a></p> <p>Path to dependency file: github-action-json-fields/package.json</p> <p>Path to vulnerable library: github-action-json-fields/node_modules/npm/node_modules/ssri/package.json</p> <p> Dependency Hierarchy: - npm-7.0.10.tgz (Root Library) - npm-6.14.11.tgz - :x: **ssri-6.0.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/AlexRogalskiy/github-action-json-fields/commit/a4673c15b89b7b2e8bcfce9ca4311fa9987a570f">a4673c15b89b7b2e8bcfce9ca4311fa9987a570f</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression which is vulnerable to a denial of service. Malicious SRIs could take an extremely long time to process, leading to denial of service. This issue only affects consumers using the strict option. <p>Publish Date: 2021-03-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-27290>CVE-2021-27290</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27290">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-27290</a></p> <p>Release Date: 2021-03-12</p> <p>Fix Resolution: v8.0.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve medium detected in ssri tgz cve medium severity vulnerability vulnerable library ssri tgz standard subresource integrity library parses serializes generates and verifies integrity metadata according to the sri spec library home page a href path to dependency file github action json fields package json path to vulnerable library github action json fields node modules npm node modules ssri package json dependency hierarchy npm tgz root library npm tgz x ssri tgz vulnerable library found in head commit a href vulnerability details ssri fixed in processes sris using a regular expression which is vulnerable to a denial of service malicious sris could take an extremely long time to process leading to denial of service this issue only affects consumers using the strict option publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
524,496
15,215,136,720
IssuesEvent
2021-02-17 14:04:28
svthalia/concrexit
https://api.github.com/repos/svthalia/concrexit
closed
Staging photos and media do not work
bug priority: medium server
### Describe the bug Staging photos and media do not work ### How to reproduce Steps to reproduce the behaviour: 1. Go to photos on the staging site. 2. I don't see any images loading on the page. 3. Please fix ### Expected behaviour I see photos loading. ### Additional context The images are saved, Wouter checked this.
1.0
Staging photos and media do not work - ### Describe the bug Staging photos and media do not work ### How to reproduce Steps to reproduce the behaviour: 1. Go to photos on the staging site. 2. I don't see any images loading on the page. 3. Please fix ### Expected behaviour I see photos loading. ### Additional context The images are saved, Wouter checked this.
non_process
staging photos and media do not work describe the bug staging photos and media do not work how to reproduce steps to reproduce the behaviour go to photos on the staging site i don t see any images loading on the page please fix expected behaviour i see photos loading additional context the images are saved wouter checked this
0
11,076
13,912,563,036
IssuesEvent
2020-10-20 19:03:49
zephyrproject-rtos/zephyr
https://api.github.com/repos/zephyrproject-rtos/zephyr
closed
2.4 Release Checklist
Meta area: Process
- [x] Major enhancements: - See https://github.com/zephyrproject-rtos/zephyr/projects/9 - [x] Pre RC1 Steps - [x] Create v2.5.0 milestone so that features that don't make it to the release can be assigned a milestone - [x] Verify that all external components and external dependencies are up to date, for example - mbedTLS - tinycrypt - FatFS - [x] Check known vulnerabilities, and fix exploitable vulnerabilities or verify them as un-exploitable (Security working group). See https://docs.zephyrproject.org/latest/development_process/release_process.html#tagging for tagging details -------- - [x] Release Notes WIP - [x] Make sure to tell everybody to use the **past tense** (i.e. "X has been added" or "X is now Y") - [x] Create draft `doc/releases/release-notes-2.4.rst` with feature summary from https://www.zephyrproject.org/developers/#releases-overview #22923 - [x] Update `doc/releases/release-notes-2.4.rst` detailed sections (relative to 2.3.0 release) as important issues are addressed (subsystem owners). See #25869 -------- - [x] Finalize Release Notes - [x] Add list of GitHub issues (spell check issue list and fix in GitHub as needed) using `scripts/release/list_issues.py` - [x] Review `doc/releases/release-notes-2.4.rst` overview summary and details sections (see Sign-off below) - [x] Request summary details from code owners - [x] update `doc/reference/overview.rst` - [x] Update `doc/conf.py` (add version to pick list) - [x] Update `doc/LICENSING.rst` for new components that do not have a license -------- - [x] Final Release Notes Sign-off - Subsystems - [x] Kernel - @andyross, @andrewboie - [x] Build and infrastructure - @tejlmand @nashif @galak - [x] Devicetree - @galak, @mbolivar-nordic - [x] Drivers and sensors - @MaureenHelm, @tbursztyka, @pabigot, @mnkp - [x] Filesystems - @nvlsianpu, @pabigot - [x] Networking - @jukkar - [x] Bluetooth - @jhedberg , @joerchan, @carlescufi - [x] USB - @jfischer-phytec-iot @emob-nordic - [x] CAN - @alexanderwachter - Architectures - [x] ARC - @ruuddw - [x] ARM - @ioannisg , @galak, @MaureenHelm - [x] X86 - @nashif, @andrewboie - [ ] RISCV - @pgielda @nategraff-sifive - [ ] Xtensa, NIOS-II - @nashif, @andrewboie - Board an Soc support - many - [x] Security - @d3zd3z -------- - [x] Update version in VERSION - [x] Tag both v2.4.0 and zephyr-v2.4.0 - [x] Create release and add notes on https://github.com/zephyrproject-rtos/zephyr/releases. Make sure you use the `zephyr-v2.4.0` tag so that the `.zip` that GitHub offers has a reasonable name. Add the release notes to the GitHub release. -------- - [x] After Release - [x] Update patchlevel in Makefile (PATCHLEVEL = 99) - [x] Update doc generation (in future should be automatic based on tag) ping @nashif - [x] Update https://www.zephyrproject.org/developer-resources/#current-release (email Brett) - [x] Create `v2.4-branch` branch for 2.4.x releases (from v2.4.0 tag, don't include the switch to patchlevel 99) - [x] Merge all post-release PRs in https://github.com/zephyrproject-rtos/zephyr/projects/27 - [x] Move all PRs/Issues in the v2.4.0 milestone to the next milestone - [x] Close v2.4.0 milestone - [x] Email devel@lists.zephyrproject.org & announce@lists.zephyrproject.org lists about release and announce the opening of the merge window - [x] Create checklist issue for next release - [x] Add a comment to this issue linking to the next release checklist issue - [x] Marketing Blog for announcing release (https://www.zephyrproject.org/blog) - [x] Update https://www.zephyrproject.org with latest stats from GitHub (email Brett) - [x] Update current release dates in https://github.com/zephyrproject-rtos/zephyr/wiki/Program-Management, move current release column to "past releases table", and add next release timeline if missing (v2.6.0) - [x] Store the number of currently open PRs to keep track of post-release PR overhead over time
1.0
2.4 Release Checklist - - [x] Major enhancements: - See https://github.com/zephyrproject-rtos/zephyr/projects/9 - [x] Pre RC1 Steps - [x] Create v2.5.0 milestone so that features that don't make it to the release can be assigned a milestone - [x] Verify that all external components and external dependencies are up to date, for example - mbedTLS - tinycrypt - FatFS - [x] Check known vulnerabilities, and fix exploitable vulnerabilities or verify them as un-exploitable (Security working group). See https://docs.zephyrproject.org/latest/development_process/release_process.html#tagging for tagging details -------- - [x] Release Notes WIP - [x] Make sure to tell everybody to use the **past tense** (i.e. "X has been added" or "X is now Y") - [x] Create draft `doc/releases/release-notes-2.4.rst` with feature summary from https://www.zephyrproject.org/developers/#releases-overview #22923 - [x] Update `doc/releases/release-notes-2.4.rst` detailed sections (relative to 2.3.0 release) as important issues are addressed (subsystem owners). See #25869 -------- - [x] Finalize Release Notes - [x] Add list of GitHub issues (spell check issue list and fix in GitHub as needed) using `scripts/release/list_issues.py` - [x] Review `doc/releases/release-notes-2.4.rst` overview summary and details sections (see Sign-off below) - [x] Request summary details from code owners - [x] update `doc/reference/overview.rst` - [x] Update `doc/conf.py` (add version to pick list) - [x] Update `doc/LICENSING.rst` for new components that do not have a license -------- - [x] Final Release Notes Sign-off - Subsystems - [x] Kernel - @andyross, @andrewboie - [x] Build and infrastructure - @tejlmand @nashif @galak - [x] Devicetree - @galak, @mbolivar-nordic - [x] Drivers and sensors - @MaureenHelm, @tbursztyka, @pabigot, @mnkp - [x] Filesystems - @nvlsianpu, @pabigot - [x] Networking - @jukkar - [x] Bluetooth - @jhedberg , @joerchan, @carlescufi - [x] USB - @jfischer-phytec-iot @emob-nordic - [x] CAN - @alexanderwachter - Architectures - [x] ARC - @ruuddw - [x] ARM - @ioannisg , @galak, @MaureenHelm - [x] X86 - @nashif, @andrewboie - [ ] RISCV - @pgielda @nategraff-sifive - [ ] Xtensa, NIOS-II - @nashif, @andrewboie - Board an Soc support - many - [x] Security - @d3zd3z -------- - [x] Update version in VERSION - [x] Tag both v2.4.0 and zephyr-v2.4.0 - [x] Create release and add notes on https://github.com/zephyrproject-rtos/zephyr/releases. Make sure you use the `zephyr-v2.4.0` tag so that the `.zip` that GitHub offers has a reasonable name. Add the release notes to the GitHub release. -------- - [x] After Release - [x] Update patchlevel in Makefile (PATCHLEVEL = 99) - [x] Update doc generation (in future should be automatic based on tag) ping @nashif - [x] Update https://www.zephyrproject.org/developer-resources/#current-release (email Brett) - [x] Create `v2.4-branch` branch for 2.4.x releases (from v2.4.0 tag, don't include the switch to patchlevel 99) - [x] Merge all post-release PRs in https://github.com/zephyrproject-rtos/zephyr/projects/27 - [x] Move all PRs/Issues in the v2.4.0 milestone to the next milestone - [x] Close v2.4.0 milestone - [x] Email devel@lists.zephyrproject.org & announce@lists.zephyrproject.org lists about release and announce the opening of the merge window - [x] Create checklist issue for next release - [x] Add a comment to this issue linking to the next release checklist issue - [x] Marketing Blog for announcing release (https://www.zephyrproject.org/blog) - [x] Update https://www.zephyrproject.org with latest stats from GitHub (email Brett) - [x] Update current release dates in https://github.com/zephyrproject-rtos/zephyr/wiki/Program-Management, move current release column to "past releases table", and add next release timeline if missing (v2.6.0) - [x] Store the number of currently open PRs to keep track of post-release PR overhead over time
process
release checklist major enhancements see pre steps create milestone so that features that don t make it to the release can be assigned a milestone verify that all external components and external dependencies are up to date for example mbedtls tinycrypt fatfs check known vulnerabilities and fix exploitable vulnerabilities or verify them as un exploitable security working group see for tagging details release notes wip make sure to tell everybody to use the past tense i e x has been added or x is now y create draft doc releases release notes rst with feature summary from update doc releases release notes rst detailed sections relative to release as important issues are addressed subsystem owners see finalize release notes add list of github issues spell check issue list and fix in github as needed using scripts release list issues py review doc releases release notes rst overview summary and details sections see sign off below request summary details from code owners update doc reference overview rst update doc conf py add version to pick list update doc licensing rst for new components that do not have a license final release notes sign off subsystems kernel andyross andrewboie build and infrastructure tejlmand nashif galak devicetree galak mbolivar nordic drivers and sensors maureenhelm tbursztyka pabigot mnkp filesystems nvlsianpu pabigot networking jukkar bluetooth jhedberg joerchan carlescufi usb jfischer phytec iot emob nordic can alexanderwachter architectures arc ruuddw arm ioannisg galak maureenhelm nashif andrewboie riscv pgielda nategraff sifive xtensa nios ii nashif andrewboie board an soc support many security update version in version tag both and zephyr create release and add notes on make sure you use the zephyr tag so that the zip that github offers has a reasonable name add the release notes to the github release after release update patchlevel in makefile patchlevel update doc generation in future should be automatic based on tag ping nashif update email brett create branch branch for x releases from tag don t include the switch to patchlevel merge all post release prs in move all prs issues in the milestone to the next milestone close milestone email devel lists zephyrproject org announce lists zephyrproject org lists about release and announce the opening of the merge window create checklist issue for next release add a comment to this issue linking to the next release checklist issue marketing blog for announcing release update with latest stats from github email brett update current release dates in move current release column to past releases table and add next release timeline if missing store the number of currently open prs to keep track of post release pr overhead over time
1
12,138
14,741,089,934
IssuesEvent
2021-01-07 10:04:55
kdjstudios/SABillingGitlab
https://api.github.com/repos/kdjstudios/SABillingGitlab
closed
Site 053 Late Charges added to accounts that were paid
anc-process anp-important ant-support
In GitLab by @kdjstudios on Dec 31, 2018, 08:40 **Submitted by:** "melissa.miller@answernet.com" <melissa.miller@answernet.com> **Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/2018-12-31-45935 **Helpdesk Follow Up:** http://www.servicedesk.answernet.com/profiles/ticket/2019-01-15-36378/conversation **Server:** Internal (All) **Client/Site:** 053 (All) **Account:** All **Issue:** I have received a few calls that are on auto pay and were charged a late fee. The payment was processed 12/11/18 and all account were changed to net 30. Here are 2 examples so far. I have already placed a stage fee credit to fix the accounts. The following accounts are TAS7573 Advance Publishing & E433 Dr Corbin. Please look into this matter I’m sure there are more.
1.0
Site 053 Late Charges added to accounts that were paid - In GitLab by @kdjstudios on Dec 31, 2018, 08:40 **Submitted by:** "melissa.miller@answernet.com" <melissa.miller@answernet.com> **Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/2018-12-31-45935 **Helpdesk Follow Up:** http://www.servicedesk.answernet.com/profiles/ticket/2019-01-15-36378/conversation **Server:** Internal (All) **Client/Site:** 053 (All) **Account:** All **Issue:** I have received a few calls that are on auto pay and were charged a late fee. The payment was processed 12/11/18 and all account were changed to net 30. Here are 2 examples so far. I have already placed a stage fee credit to fix the accounts. The following accounts are TAS7573 Advance Publishing & E433 Dr Corbin. Please look into this matter I’m sure there are more.
process
site late charges added to accounts that were paid in gitlab by kdjstudios on dec submitted by melissa miller answernet com helpdesk helpdesk follow up server internal all client site all account all issue i have received a few calls that are on auto pay and were charged a late fee the payment was processed and all account were changed to net here are examples so far i have already placed a stage fee credit to fix the accounts the following accounts are advance publishing dr corbin please look into this matter i’m sure there are more
1
2,881
5,844,247,869
IssuesEvent
2017-05-10 11:21:59
dita-ot/dita-ot
https://api.github.com/repos/dita-ot/dita-ot
closed
Chunking a document loses @xml:lang from root topic
bug i18n P2 preprocess preprocess/chunking
I've edited `garagetaskoverview.xml` to add `xml:lang="fi-fi"` to the root, add a `<note>` that generates text, and add a nested topic that doesn't set the language. I then added `chunk="by-topic"` to the map reference. I get 2 output files as expected. The root file uses the expected generated text for the note: Huomautus. The nested topic uses the default English, losing the `@xml:lang` value set on the parent element. Edited version of the file: ``` xml <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE concept PUBLIC "-//OASIS//DTD DITA Concept//EN" "../../dtd/technicalContent/dtd/concept.dtd"> <concept id="taskconcept" xml:lang="fi-fi"> <title>Garage Tasks</title> <shortdesc>When you go into the garage, be prepared to get your hands dirty!</shortdesc> <conbody> <note>This is a note in the root topic</note> </conbody> <concept id="concept_hg1_xl2_2t"> <title>Nested Garage Tasks</title> <shortdesc>When you go into the garage, be prepared to get your hands dirty!</shortdesc> <conbody> <note>This is a note in the nested topic</note> </conbody> </concept> </concept> ```
2.0
Chunking a document loses @xml:lang from root topic - I've edited `garagetaskoverview.xml` to add `xml:lang="fi-fi"` to the root, add a `<note>` that generates text, and add a nested topic that doesn't set the language. I then added `chunk="by-topic"` to the map reference. I get 2 output files as expected. The root file uses the expected generated text for the note: Huomautus. The nested topic uses the default English, losing the `@xml:lang` value set on the parent element. Edited version of the file: ``` xml <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE concept PUBLIC "-//OASIS//DTD DITA Concept//EN" "../../dtd/technicalContent/dtd/concept.dtd"> <concept id="taskconcept" xml:lang="fi-fi"> <title>Garage Tasks</title> <shortdesc>When you go into the garage, be prepared to get your hands dirty!</shortdesc> <conbody> <note>This is a note in the root topic</note> </conbody> <concept id="concept_hg1_xl2_2t"> <title>Nested Garage Tasks</title> <shortdesc>When you go into the garage, be prepared to get your hands dirty!</shortdesc> <conbody> <note>This is a note in the nested topic</note> </conbody> </concept> </concept> ```
process
chunking a document loses xml lang from root topic i ve edited garagetaskoverview xml to add xml lang fi fi to the root add a that generates text and add a nested topic that doesn t set the language i then added chunk by topic to the map reference i get output files as expected the root file uses the expected generated text for the note huomautus the nested topic uses the default english losing the xml lang value set on the parent element edited version of the file xml doctype concept public oasis dtd dita concept en dtd technicalcontent dtd concept dtd garage tasks when you go into the garage be prepared to get your hands dirty this is a note in the root topic nested garage tasks when you go into the garage be prepared to get your hands dirty this is a note in the nested topic
1
9,346
12,346,175,542
IssuesEvent
2020-05-15 10:16:05
threefoldtech/jumpscaleX_threebot
https://api.github.com/repos/threefoldtech/jumpscaleX_threebot
closed
GE: Can't create network with same name
process_duplicate
Jumpscale seems to be using network name as a primary key. However, it lets you go through the wizard with using the same name as a previous network, then throws this error after you select your IP version. ![Screenshot 2020-05-15 at 11 56 10](https://user-images.githubusercontent.com/1249806/82038305-a462de80-96a3-11ea-8ea0-5c000e36beb8.png)
1.0
GE: Can't create network with same name - Jumpscale seems to be using network name as a primary key. However, it lets you go through the wizard with using the same name as a previous network, then throws this error after you select your IP version. ![Screenshot 2020-05-15 at 11 56 10](https://user-images.githubusercontent.com/1249806/82038305-a462de80-96a3-11ea-8ea0-5c000e36beb8.png)
process
ge can t create network with same name jumpscale seems to be using network name as a primary key however it lets you go through the wizard with using the same name as a previous network then throws this error after you select your ip version
1
128,818
10,552,522,524
IssuesEvent
2019-10-03 15:19:14
thepracticaldev/dev.to
https://api.github.com/repos/thepracticaldev/dev.to
closed
Provide test coverage for PingAdmins service
good first issue hacktoberfest help wanted type: tests
The [`PingAdmins`](https://github.com/thepracticaldev/dev.to/tree/master/app/services/ping_admins.rb) service is not covered by specs. The code needs to be refactored to remove [`Rails.env.production?`](https://github.com/thepracticaldev/dev.to/blob/master/config/initializers/slack_notifier.rb#L29) check from [SlackBot](https://github.com/thepracticaldev/dev.to/blob/master/config/initializers/slack_notifier.rb) or the specs need to be written without stubbing the production environment. The initial discussion about the same can be found [here](https://github.com/thepracticaldev/dev.to/pull/2878#pullrequestreview-239542155).
1.0
Provide test coverage for PingAdmins service - The [`PingAdmins`](https://github.com/thepracticaldev/dev.to/tree/master/app/services/ping_admins.rb) service is not covered by specs. The code needs to be refactored to remove [`Rails.env.production?`](https://github.com/thepracticaldev/dev.to/blob/master/config/initializers/slack_notifier.rb#L29) check from [SlackBot](https://github.com/thepracticaldev/dev.to/blob/master/config/initializers/slack_notifier.rb) or the specs need to be written without stubbing the production environment. The initial discussion about the same can be found [here](https://github.com/thepracticaldev/dev.to/pull/2878#pullrequestreview-239542155).
non_process
provide test coverage for pingadmins service the service is not covered by specs the code needs to be refactored to remove check from or the specs need to be written without stubbing the production environment the initial discussion about the same can be found
0
812,627
30,344,533,013
IssuesEvent
2023-07-11 14:38:48
interledger/testnet
https://api.github.com/repos/interledger/testnet
closed
Payment pointer further enhancement
priority: low
From feedback users would like: - To name PPs also using '-', not just '_' - To edit public name of PP
1.0
Payment pointer further enhancement - From feedback users would like: - To name PPs also using '-', not just '_' - To edit public name of PP
non_process
payment pointer further enhancement from feedback users would like to name pps also using not just to edit public name of pp
0
69,713
17,795,746,636
IssuesEvent
2021-08-31 21:56:33
o3de/o3de
https://api.github.com/repos/o3de/o3de
opened
automate the file packaging process
needs-triage sig/build priority/critical kind/task feature/systems RTE
### Problem description A script to take the build artifacts of a project and copy the project build artifacts, engine build artifacts and processed assets to a layout folder for packaging. The tools are not part of this layout, only the GameLauncher and the requirements to use it. This does not cover deployment to OS platform. (Customer Game Layout - Used by customers who would play the game)
1.0
automate the file packaging process - ### Problem description A script to take the build artifacts of a project and copy the project build artifacts, engine build artifacts and processed assets to a layout folder for packaging. The tools are not part of this layout, only the GameLauncher and the requirements to use it. This does not cover deployment to OS platform. (Customer Game Layout - Used by customers who would play the game)
non_process
automate the file packaging process problem description a script to take the build artifacts of a project and copy the project build artifacts engine build artifacts and processed assets to a layout folder for packaging the tools are not part of this layout only the gamelauncher and the requirements to use it this does not cover deployment to os platform customer game layout used by customers who would play the game
0
32,855
4,792,314,101
IssuesEvent
2016-10-31 15:13:14
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
: TestStoreRangeSplitRaceUninitializedRHS failed under stress
Robot test-failure
SHA: https://github.com/cockroachdb/cockroach/commits/7207111aa3a43df0552509365fdec741a53f873f Stress build found a failed test: ``` I161030 07:29:18.038869 34058 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:29:18.040426 34058 gossip/gossip.go:237 [n?] initial resolvers: [] W161030 07:29:18.040873 34058 gossip/gossip.go:1055 [n?] no resolvers found; use --join to specify a connected node I161030 07:29:18.041224 34058 base/node_id.go:62 NodeID set to 1 I161030 07:29:18.070712 34058 storage/store.go:1152 [n1,s1]: failed initial metrics computation: [n1,s1]: system config not yet available I161030 07:29:18.071333 34058 gossip/gossip.go:280 [n1] NodeDescriptor set to node_id:1 address:<network_field:"tcp" address_field:"127.0.0.1:56087" > attrs:<> locality:<> I161030 07:29:18.081364 34198 storage/replica_proposal.go:292 [s1,r1/1:/M{in-ax}] new range lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 300ms following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0s [physicalTime=1970-01-01 00:00:00 +0000 UTC] I161030 07:29:18.097108 34058 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:29:18.099817 34058 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:56087] W161030 07:29:18.118193 34058 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:29:18.118543 34058 base/node_id.go:62 NodeID set to 2 I161030 07:29:18.134985 34058 storage/store.go:1152 [n2,s2]: failed initial metrics computation: [n2,s2]: system config not yet available I161030 07:29:18.135327 34058 gossip/gossip.go:280 [n2] NodeDescriptor set to node_id:2 address:<network_field:"tcp" address_field:"127.0.0.1:40912" > attrs:<> locality:<> I161030 07:29:18.137221 34274 gossip/client.go:126 [n2] node 2: started gossip client to 127.0.0.1:56087 I161030 07:29:18.148215 34058 storage/replica_raftstorage.go:446 [s1,r1/1:/M{in-ax}] generated snapshot 492b4e4e for range 1 at index 13 in 94.599µs. I161030 07:29:18.160542 34058 storage/store.go:3061 streamed snapshot: kv pairs: 32, log entries: 3 I161030 07:29:18.167113 34298 storage/replica_raftstorage.go:577 [s2] [n2,s2,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 13 (id=492b4e4e, encoded size=16, 1 rocksdb batches, 3 log entries) I161030 07:29:18.168893 34298 storage/replica_raftstorage.go:580 [s2] [n2,s2,r1/?:/M{in-ax}]: with replicaID [?], applied preemptive snapshot in 0.001s I161030 07:29:18.179341 34058 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 I161030 07:29:18.206928 34309 storage/replica.go:1860 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161030 07:29:18.231022 34283 storage/raft_transport.go:423 raft transport stream to node 1 established W161030 07:29:18.236658 34204 raft/raft.go:696 [s1,r1/1:/M{in-ax}] 1 stepped down to follower since quorum is not active I161030 07:29:18.442216 34286 storage/replica_command.go:2363 [s1,r1/1:/M{in-ax}] initiating a split of this range at key "a\x87\xff" [r2] I161030 07:29:18.556117 34203 storage/replica_command.go:87 [s1,r1/1:/M{in-ax}] test injecting error: read at time 0.000000000,149 encountered previous write with future timestamp 0.000000000,149 within uncertainty interval I161030 07:29:18.572701 34252 storage/replica_command.go:87 [s2,r1/2:/M{in-ax}] test injecting error: read at time 0.000000000,149 encountered previous write with future timestamp 0.000000000,149 within uncertainty interval W161030 07:29:18.606881 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.607140 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.641680 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.641930 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.646658 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.674374 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.674633 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.686391 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.716704 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.745844 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.784522 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.815174 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.828242 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.839270 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.839513 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.855705 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.869766 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.870684 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found E161030 07:29:18.933544 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r1/1:{/Min-"a\x87\xff"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster E161030 07:29:18.956814 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r2/1:{"a\x87\xff"-/Max}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:18.977954 34332 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xff"}] initiating a split of this range at key "a\x87\xfe" [r3] I161030 07:29:19.293500 34204 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xff"}] test injecting error: read at time 0.000000000,298 encountered previous write with future timestamp 0.000000000,298 within uncertainty interval I161030 07:29:19.311526 34254 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xff"}] test injecting error: read at time 0.000000000,298 encountered previous write with future timestamp 0.000000000,298 within uncertainty interval E161030 07:29:19.758522 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r3/1:"a\x87\xf{e"-f"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:19.775026 34187 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfe"}] initiating a split of this range at key "a\x87\xfd" [r4] I161030 07:29:20.085631 34198 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfe"}] test injecting error: read at time 0.000000000,431 encountered previous write with future timestamp 0.000000000,431 within uncertainty interval I161030 07:29:20.110951 34260 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfe"}] test injecting error: read at time 0.000000000,431 encountered previous write with future timestamp 0.000000000,431 within uncertainty interval E161030 07:29:20.544787 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r4/1:"a\x87\xf{d"-e"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:20.608248 34434 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfd"}] initiating a split of this range at key "a\x87\xfc" [r5] I161030 07:29:20.932225 34254 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfd"}] test injecting error: read at time 0.000000000,580 encountered previous write with future timestamp 0.000000000,580 within uncertainty interval I161030 07:29:20.964046 34197 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfd"}] test injecting error: read at time 0.000000000,580 encountered previous write with future timestamp 0.000000000,580 within uncertainty interval E161030 07:29:21.599742 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r5/1:"a\x87\xf{c"-d"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:21.641444 34460 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfc"}] initiating a split of this range at key "a\x87\xfb" [r6] I161030 07:29:22.453853 34205 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfc"}] test injecting error: read at time 0.000000000,719 encountered previous write with future timestamp 0.000000000,719 within uncertainty interval I161030 07:29:22.518652 34251 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfc"}] test injecting error: read at time 0.000000000,719 encountered previous write with future timestamp 0.000000000,719 within uncertainty interval E161030 07:29:23.000265 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r6/1:"a\x87\xf{b"-c"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:23.082889 34348 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfb"}] initiating a split of this range at key "a\x87\xfa" [r7] I161030 07:29:23.478342 34199 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfb"}] test injecting error: read at time 0.000000000,865 encountered previous write with future timestamp 0.000000000,865 within uncertainty interval I161030 07:29:23.530032 34262 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfb"}] test injecting error: read at time 0.000000000,865 encountered previous write with future timestamp 0.000000000,865 within uncertainty interval E161030 07:29:23.968746 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r7/1:"a\x87\xf{a"-b"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:24.005199 34564 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfa"}] initiating a split of this range at key "a\x87\xf9" [r8] I161030 07:29:24.560837 34198 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfa"}] test injecting error: read at time 0.000000000,1007 encountered previous write with future timestamp 0.000000000,1007 within uncertainty interval I161030 07:29:24.842215 34254 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfa"}] test injecting error: read at time 0.000000000,1007 encountered previous write with future timestamp 0.000000000,1007 within uncertainty interval E161030 07:29:25.039789 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r8/1:"a\x87\xf{9"-a"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:25.058657 34579 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xf9"}] initiating a split of this range at key "a\x87\xf8" [r9] W161030 07:29:25.282839 34204 raft/raft.go:696 [s1,r1/1:{/Min-"a\x87\xf9"}] 1 stepped down to follower since quorum is not active W161030 07:29:25.324726 34205 raft/raft.go:696 [s1,r8/1:"a\x87\xf{9"-a"}] 1 stepped down to follower since quorum is not active I161030 07:29:25.738127 34161 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xf9"}] test injecting error: read at time 0.000000000,1141 encountered previous write with future timestamp 0.000000000,1141 within uncertainty interval I161030 07:29:25.747692 34249 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xf9"}] test injecting error: read at time 0.000000000,1141 encountered previous write with future timestamp 0.000000000,1141 within uncertainty interval W161030 07:29:25.977518 34161 raft/raft.go:696 [s1,r7/1:"a\x87\xf{a"-b"}] 1 stepped down to follower since quorum is not active W161030 07:29:26.227854 34203 raft/raft.go:696 [s1,r7/1:"a\x87\xf{a"-b"}] 1 stepped down to follower since quorum is not active W161030 07:29:26.714175 34248 raft/raft.go:696 [s2,r1/2:{/Min-"a\x87\xf9"}] 2 stepped down to follower since quorum is not active I161030 07:29:27.151163 34158 storage/replica.go:1908 [s1,r1/1:{/Min-"a\x87\xf9"}] not quiescing: 3 pending commands E161030 07:29:27.344390 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r9/1:"a\x87\xf{8"-9"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:27.378108 34575 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xf8"}] initiating a split of this range at key "a\x87\xf7" [r10] W161030 07:29:27.898432 34197 raft/raft.go:696 [s1,r8/1:"a\x87\xf{9"-a"}] 1 stepped down to follower since quorum is not active I161030 07:29:28.757423 34251 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xf8"}] test injecting error: read at time 0.000000000,1310 encountered previous write with future timestamp 0.000000000,1310 within uncertainty interval I161030 07:29:28.829317 34204 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xf8"}] test injecting error: read at time 0.000000000,1310 encountered previous write with future timestamp 0.000000000,1310 within uncertainty interval I161030 07:29:28.852368 34204 storage/replica.go:1908 [s1,r1/1:{/Min-"a\x87\xf8"}] not quiescing: 3 pending commands W161030 07:29:29.184919 34257 raft/raft.go:696 [s2,r1/2:{/Min-"a\x87\xf8"}] 2 stepped down to follower since quorum is not active E161030 07:29:29.609789 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r10/1:"a\x87\xf{7"-8"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:29.647924 34555 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xf7"}] initiating a split of this range at key "a\x87\xf6" [r11] I161030 07:29:29.691756 34204 storage/replica.go:1908 [s1,r1/1:{/Min-"a\x87\xf7"}] not quiescing: 2 pending commands I161030 07:29:30.136519 34255 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xf7"}] test injecting error: read at time 0.000000000,1469 encountered previous write with future timestamp 0.000000000,1469 within uncertainty interval I161030 07:29:30.231531 34158 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xf7"}] test injecting error: read at time 0.000000000,1469 encountered previous write with future timestamp 0.000000000,1469 within uncertainty interval W161030 07:29:32.156189 34668 storage/stores.go:218 range not contained in one range: [/Min,"a\x87\xf6\x00"), but have [/Min,"a\x87\xf6") E161030 07:29:32.330542 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r11/1:"a\x87\xf{6"-7"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster E161030 07:29:32.410313 34555 internal/client/txn.go:331 [s1,r1/1:{/Min-"a\x87\xf6"}] failure aborting transaction: does not exist; abort caused by: transaction commit result is ambiguous I161030 07:29:32.452908 34698 util/stop/stopper.go:455 quiescing; tasks left: 3 storage/client_test.go:507 1 kv/txn_coord_sender.go:704 I161030 07:29:32.453430 34698 util/stop/stopper.go:455 quiescing; tasks left: 2 storage/client_test.go:507 1 kv/txn_coord_sender.go:704 E161030 07:29:32.459457 34278 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:29:32.460399 34278 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:29:32.461114 34698 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/client_test.go:507 1 kv/txn_coord_sender.go:704 E161030 07:29:32.464526 34226 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:29:32.465484 34226 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:29:32.477018 34698 util/stop/stopper.go:455 quiescing; tasks left: 1 kv/txn_coord_sender.go:704 I161030 07:29:32.483133 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks E161030 07:29:32.510467 34278 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:29:32.518196 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks W161030 07:29:32.518397 34285 storage/store.go:2926 [s2] got error from range 1, replica {1 1 1}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:2 StoreID:2 ReplicaID:2}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:1} W161030 07:29:32.518594 34285 storage/store.go:2926 [s2] got error from range 0, replica {1 1 0}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:2 StoreID:2 ReplicaID:0}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:0} W161030 07:29:32.518782 34285 storage/store.go:2926 [s2] got error from range 10, replica {1 1 1}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:2 StoreID:2 ReplicaID:2}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:1} I161030 07:29:32.521998 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:29:32.522504 34163 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:56087->127.0.0.1:40466: use of closed network connection I161030 07:29:32.522775 34009 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161030 07:29:32.523141 33994 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:40912->127.0.0.1:46883: use of closed network connection I161030 07:29:32.523543 34126 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161030 07:29:32.523729 34011 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:56087: operation was canceled"; Reconnecting to {"127.0.0.1:56087" <nil>} I161030 07:29:32.523970 34011 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161030 07:29:32.524706 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:29:32.525093 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks client_split_test.go:1401: storage/replica_command.go:2443: split at key "a\x87\xf6" failed: transaction commit result is ambiguous ```
1.0
: TestStoreRangeSplitRaceUninitializedRHS failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/7207111aa3a43df0552509365fdec741a53f873f Stress build found a failed test: ``` I161030 07:29:18.038869 34058 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:29:18.040426 34058 gossip/gossip.go:237 [n?] initial resolvers: [] W161030 07:29:18.040873 34058 gossip/gossip.go:1055 [n?] no resolvers found; use --join to specify a connected node I161030 07:29:18.041224 34058 base/node_id.go:62 NodeID set to 1 I161030 07:29:18.070712 34058 storage/store.go:1152 [n1,s1]: failed initial metrics computation: [n1,s1]: system config not yet available I161030 07:29:18.071333 34058 gossip/gossip.go:280 [n1] NodeDescriptor set to node_id:1 address:<network_field:"tcp" address_field:"127.0.0.1:56087" > attrs:<> locality:<> I161030 07:29:18.081364 34198 storage/replica_proposal.go:292 [s1,r1/1:/M{in-ax}] new range lease replica {1 1 1} 1970-01-01 00:00:00 +0000 UTC 300ms following replica {0 0 0} 1970-01-01 00:00:00 +0000 UTC 0s [physicalTime=1970-01-01 00:00:00 +0000 UTC] I161030 07:29:18.097108 34058 storage/engine/rocksdb.go:340 opening in memory rocksdb instance I161030 07:29:18.099817 34058 gossip/gossip.go:237 [n?] initial resolvers: [127.0.0.1:56087] W161030 07:29:18.118193 34058 gossip/gossip.go:1057 [n?] no incoming or outgoing connections I161030 07:29:18.118543 34058 base/node_id.go:62 NodeID set to 2 I161030 07:29:18.134985 34058 storage/store.go:1152 [n2,s2]: failed initial metrics computation: [n2,s2]: system config not yet available I161030 07:29:18.135327 34058 gossip/gossip.go:280 [n2] NodeDescriptor set to node_id:2 address:<network_field:"tcp" address_field:"127.0.0.1:40912" > attrs:<> locality:<> I161030 07:29:18.137221 34274 gossip/client.go:126 [n2] node 2: started gossip client to 127.0.0.1:56087 I161030 07:29:18.148215 34058 storage/replica_raftstorage.go:446 [s1,r1/1:/M{in-ax}] generated snapshot 492b4e4e for range 1 at index 13 in 94.599µs. I161030 07:29:18.160542 34058 storage/store.go:3061 streamed snapshot: kv pairs: 32, log entries: 3 I161030 07:29:18.167113 34298 storage/replica_raftstorage.go:577 [s2] [n2,s2,r1/?:{-}]: with replicaID [?], applying preemptive snapshot at index 13 (id=492b4e4e, encoded size=16, 1 rocksdb batches, 3 log entries) I161030 07:29:18.168893 34298 storage/replica_raftstorage.go:580 [s2] [n2,s2,r1/?:/M{in-ax}]: with replicaID [?], applied preemptive snapshot in 0.001s I161030 07:29:18.179341 34058 storage/replica_command.go:3240 change replicas: read existing descriptor range_id:1 start_key:"" end_key:"\377\377" replicas:<node_id:1 store_id:1 replica_id:1 > next_replica_id:2 I161030 07:29:18.206928 34309 storage/replica.go:1860 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA {NodeID:2 StoreID:2 ReplicaID:2} for range 1: [{NodeID:1 StoreID:1 ReplicaID:1} {NodeID:2 StoreID:2 ReplicaID:2}] I161030 07:29:18.231022 34283 storage/raft_transport.go:423 raft transport stream to node 1 established W161030 07:29:18.236658 34204 raft/raft.go:696 [s1,r1/1:/M{in-ax}] 1 stepped down to follower since quorum is not active I161030 07:29:18.442216 34286 storage/replica_command.go:2363 [s1,r1/1:/M{in-ax}] initiating a split of this range at key "a\x87\xff" [r2] I161030 07:29:18.556117 34203 storage/replica_command.go:87 [s1,r1/1:/M{in-ax}] test injecting error: read at time 0.000000000,149 encountered previous write with future timestamp 0.000000000,149 within uncertainty interval I161030 07:29:18.572701 34252 storage/replica_command.go:87 [s2,r1/2:/M{in-ax}] test injecting error: read at time 0.000000000,149 encountered previous write with future timestamp 0.000000000,149 within uncertainty interval W161030 07:29:18.606881 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.607140 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.641680 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.641930 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.646658 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.674374 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.674633 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.686391 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.716704 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.745844 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.784522 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.815174 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.828242 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.839270 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.839513 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.855705 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.869766 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found W161030 07:29:18.870684 34324 storage/store.go:2926 [s1] got error from range 2, replica {2 2 2}: raft: cannot step as peer not found E161030 07:29:18.933544 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r1/1:{/Min-"a\x87\xff"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster E161030 07:29:18.956814 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r2/1:{"a\x87\xff"-/Max}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:18.977954 34332 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xff"}] initiating a split of this range at key "a\x87\xfe" [r3] I161030 07:29:19.293500 34204 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xff"}] test injecting error: read at time 0.000000000,298 encountered previous write with future timestamp 0.000000000,298 within uncertainty interval I161030 07:29:19.311526 34254 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xff"}] test injecting error: read at time 0.000000000,298 encountered previous write with future timestamp 0.000000000,298 within uncertainty interval E161030 07:29:19.758522 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r3/1:"a\x87\xf{e"-f"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:19.775026 34187 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfe"}] initiating a split of this range at key "a\x87\xfd" [r4] I161030 07:29:20.085631 34198 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfe"}] test injecting error: read at time 0.000000000,431 encountered previous write with future timestamp 0.000000000,431 within uncertainty interval I161030 07:29:20.110951 34260 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfe"}] test injecting error: read at time 0.000000000,431 encountered previous write with future timestamp 0.000000000,431 within uncertainty interval E161030 07:29:20.544787 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r4/1:"a\x87\xf{d"-e"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:20.608248 34434 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfd"}] initiating a split of this range at key "a\x87\xfc" [r5] I161030 07:29:20.932225 34254 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfd"}] test injecting error: read at time 0.000000000,580 encountered previous write with future timestamp 0.000000000,580 within uncertainty interval I161030 07:29:20.964046 34197 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfd"}] test injecting error: read at time 0.000000000,580 encountered previous write with future timestamp 0.000000000,580 within uncertainty interval E161030 07:29:21.599742 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r5/1:"a\x87\xf{c"-d"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:21.641444 34460 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfc"}] initiating a split of this range at key "a\x87\xfb" [r6] I161030 07:29:22.453853 34205 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfc"}] test injecting error: read at time 0.000000000,719 encountered previous write with future timestamp 0.000000000,719 within uncertainty interval I161030 07:29:22.518652 34251 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfc"}] test injecting error: read at time 0.000000000,719 encountered previous write with future timestamp 0.000000000,719 within uncertainty interval E161030 07:29:23.000265 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r6/1:"a\x87\xf{b"-c"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:23.082889 34348 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfb"}] initiating a split of this range at key "a\x87\xfa" [r7] I161030 07:29:23.478342 34199 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfb"}] test injecting error: read at time 0.000000000,865 encountered previous write with future timestamp 0.000000000,865 within uncertainty interval I161030 07:29:23.530032 34262 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfb"}] test injecting error: read at time 0.000000000,865 encountered previous write with future timestamp 0.000000000,865 within uncertainty interval E161030 07:29:23.968746 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r7/1:"a\x87\xf{a"-b"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:24.005199 34564 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xfa"}] initiating a split of this range at key "a\x87\xf9" [r8] I161030 07:29:24.560837 34198 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xfa"}] test injecting error: read at time 0.000000000,1007 encountered previous write with future timestamp 0.000000000,1007 within uncertainty interval I161030 07:29:24.842215 34254 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xfa"}] test injecting error: read at time 0.000000000,1007 encountered previous write with future timestamp 0.000000000,1007 within uncertainty interval E161030 07:29:25.039789 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r8/1:"a\x87\xf{9"-a"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:25.058657 34579 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xf9"}] initiating a split of this range at key "a\x87\xf8" [r9] W161030 07:29:25.282839 34204 raft/raft.go:696 [s1,r1/1:{/Min-"a\x87\xf9"}] 1 stepped down to follower since quorum is not active W161030 07:29:25.324726 34205 raft/raft.go:696 [s1,r8/1:"a\x87\xf{9"-a"}] 1 stepped down to follower since quorum is not active I161030 07:29:25.738127 34161 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xf9"}] test injecting error: read at time 0.000000000,1141 encountered previous write with future timestamp 0.000000000,1141 within uncertainty interval I161030 07:29:25.747692 34249 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xf9"}] test injecting error: read at time 0.000000000,1141 encountered previous write with future timestamp 0.000000000,1141 within uncertainty interval W161030 07:29:25.977518 34161 raft/raft.go:696 [s1,r7/1:"a\x87\xf{a"-b"}] 1 stepped down to follower since quorum is not active W161030 07:29:26.227854 34203 raft/raft.go:696 [s1,r7/1:"a\x87\xf{a"-b"}] 1 stepped down to follower since quorum is not active W161030 07:29:26.714175 34248 raft/raft.go:696 [s2,r1/2:{/Min-"a\x87\xf9"}] 2 stepped down to follower since quorum is not active I161030 07:29:27.151163 34158 storage/replica.go:1908 [s1,r1/1:{/Min-"a\x87\xf9"}] not quiescing: 3 pending commands E161030 07:29:27.344390 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r9/1:"a\x87\xf{8"-9"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:27.378108 34575 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xf8"}] initiating a split of this range at key "a\x87\xf7" [r10] W161030 07:29:27.898432 34197 raft/raft.go:696 [s1,r8/1:"a\x87\xf{9"-a"}] 1 stepped down to follower since quorum is not active I161030 07:29:28.757423 34251 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xf8"}] test injecting error: read at time 0.000000000,1310 encountered previous write with future timestamp 0.000000000,1310 within uncertainty interval I161030 07:29:28.829317 34204 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xf8"}] test injecting error: read at time 0.000000000,1310 encountered previous write with future timestamp 0.000000000,1310 within uncertainty interval I161030 07:29:28.852368 34204 storage/replica.go:1908 [s1,r1/1:{/Min-"a\x87\xf8"}] not quiescing: 3 pending commands W161030 07:29:29.184919 34257 raft/raft.go:696 [s2,r1/2:{/Min-"a\x87\xf8"}] 2 stepped down to follower since quorum is not active E161030 07:29:29.609789 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r10/1:"a\x87\xf{7"-8"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster I161030 07:29:29.647924 34555 storage/replica_command.go:2363 [s1,r1/1:{/Min-"a\x87\xf7"}] initiating a split of this range at key "a\x87\xf6" [r11] I161030 07:29:29.691756 34204 storage/replica.go:1908 [s1,r1/1:{/Min-"a\x87\xf7"}] not quiescing: 2 pending commands I161030 07:29:30.136519 34255 storage/replica_command.go:87 [s2,r1/2:{/Min-"a\x87\xf7"}] test injecting error: read at time 0.000000000,1469 encountered previous write with future timestamp 0.000000000,1469 within uncertainty interval I161030 07:29:30.231531 34158 storage/replica_command.go:87 [s1,r1/1:{/Min-"a\x87\xf7"}] test injecting error: read at time 0.000000000,1469 encountered previous write with future timestamp 0.000000000,1469 within uncertainty interval W161030 07:29:32.156189 34668 storage/stores.go:218 range not contained in one range: [/Min,"a\x87\xf6\x00"), but have [/Min,"a\x87\xf6") E161030 07:29:32.330542 34217 storage/queue.go:569 [replicate] (purgatory) on [n1,s1,r11/1:"a\x87\xf{6"-7"}]: 0 of 0 stores with an attribute matching []; likely not enough nodes in cluster E161030 07:29:32.410313 34555 internal/client/txn.go:331 [s1,r1/1:{/Min-"a\x87\xf6"}] failure aborting transaction: does not exist; abort caused by: transaction commit result is ambiguous I161030 07:29:32.452908 34698 util/stop/stopper.go:455 quiescing; tasks left: 3 storage/client_test.go:507 1 kv/txn_coord_sender.go:704 I161030 07:29:32.453430 34698 util/stop/stopper.go:455 quiescing; tasks left: 2 storage/client_test.go:507 1 kv/txn_coord_sender.go:704 E161030 07:29:32.459457 34278 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:29:32.460399 34278 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:29:32.461114 34698 util/stop/stopper.go:455 quiescing; tasks left: 1 storage/client_test.go:507 1 kv/txn_coord_sender.go:704 E161030 07:29:32.464526 34226 storage/node_liveness.go:141 [hb] failed liveness heartbeat: transaction commit result is ambiguous E161030 07:29:32.465484 34226 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:29:32.477018 34698 util/stop/stopper.go:455 quiescing; tasks left: 1 kv/txn_coord_sender.go:704 I161030 07:29:32.483133 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks E161030 07:29:32.510467 34278 storage/node_liveness.go:141 [hb] failed liveness heartbeat: node unavailable; try another peer I161030 07:29:32.518196 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks W161030 07:29:32.518397 34285 storage/store.go:2926 [s2] got error from range 1, replica {1 1 1}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:2 StoreID:2 ReplicaID:2}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:1} W161030 07:29:32.518594 34285 storage/store.go:2926 [s2] got error from range 0, replica {1 1 0}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:2 StoreID:2 ReplicaID:0}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:0} W161030 07:29:32.518782 34285 storage/store.go:2926 [s2] got error from range 10, replica {1 1 1}: storage/raft_transport.go:249: unable to accept Raft message from {NodeID:2 StoreID:2 ReplicaID:2}: no handler registered for {NodeID:1 StoreID:1 ReplicaID:1} I161030 07:29:32.521998 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:29:32.522504 34163 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:56087->127.0.0.1:40466: use of closed network connection I161030 07:29:32.522775 34009 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161030 07:29:32.523141 33994 http2_server.go:276 transport: http2Server.HandleStreams failed to read frame: read tcp 127.0.0.1:40912->127.0.0.1:46883: use of closed network connection I161030 07:29:32.523543 34126 http2_client.go:1053 transport: http2Client.notifyError got notified that the client transport was broken EOF. I161030 07:29:32.523729 34011 /go/src/google.golang.org/grpc/clientconn.go:667 grpc: addrConn.resetTransport failed to create client transport: connection error: desc = "transport: dial tcp 127.0.0.1:56087: operation was canceled"; Reconnecting to {"127.0.0.1:56087" <nil>} I161030 07:29:32.523970 34011 /go/src/google.golang.org/grpc/clientconn.go:767 grpc: addrConn.transportMonitor exits due to: grpc: the connection is closing I161030 07:29:32.524706 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks I161030 07:29:32.525093 34697 util/stop/stopper.go:383 stop has been called, stopping or quiescing all running tasks client_split_test.go:1401: storage/replica_command.go:2443: split at key "a\x87\xf6" failed: transaction commit result is ambiguous ```
non_process
teststorerangesplitraceuninitializedrhs failed under stress sha stress build found a failed test storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no resolvers found use join to specify a connected node base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality storage replica proposal go new range lease replica utc following replica utc storage engine rocksdb go opening in memory rocksdb instance gossip gossip go initial resolvers gossip gossip go no incoming or outgoing connections base node id go nodeid set to storage store go failed initial metrics computation system config not yet available gossip gossip go nodedescriptor set to node id address attrs locality gossip client go node started gossip client to storage replica raftstorage go generated snapshot for range at index in storage store go streamed snapshot kv pairs log entries storage replica raftstorage go with replicaid applying preemptive snapshot at index id encoded size rocksdb batches log entries storage replica raftstorage go with replicaid applied preemptive snapshot in storage replica command go change replicas read existing descriptor range id start key end key replicas next replica id storage replica go proposing add replica nodeid storeid replicaid for range storage raft transport go raft transport stream to node established raft raft go stepped down to follower since quorum is not active storage replica command go initiating a split of this range at key a xff storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage store go got error from range replica raft cannot step as peer not found storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a xfe storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a xfd storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a xfc storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a xfb storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a xfa storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a raft raft go stepped down to follower since quorum is not active raft raft go stepped down to follower since quorum is not active storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval raft raft go stepped down to follower since quorum is not active raft raft go stepped down to follower since quorum is not active raft raft go stepped down to follower since quorum is not active storage replica go not quiescing pending commands storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a raft raft go stepped down to follower since quorum is not active storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica go not quiescing pending commands raft raft go stepped down to follower since quorum is not active storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster storage replica command go initiating a split of this range at key a storage replica go not quiescing pending commands storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage replica command go test injecting error read at time encountered previous write with future timestamp within uncertainty interval storage stores go range not contained in one range min a but have min a storage queue go purgatory on of stores with an attribute matching likely not enough nodes in cluster internal client txn go failure aborting transaction does not exist abort caused by transaction commit result is ambiguous util stop stopper go quiescing tasks left storage client test go kv txn coord sender go util stop stopper go quiescing tasks left storage client test go kv txn coord sender go storage node liveness go failed liveness heartbeat transaction commit result is ambiguous storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left storage client test go kv txn coord sender go storage node liveness go failed liveness heartbeat transaction commit result is ambiguous storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go quiescing tasks left kv txn coord sender go util stop stopper go stop has been called stopping or quiescing all running tasks storage node liveness go failed liveness heartbeat node unavailable try another peer util stop stopper go stop has been called stopping or quiescing all running tasks storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid storage store go got error from range replica storage raft transport go unable to accept raft message from nodeid storeid replicaid no handler registered for nodeid storeid replicaid util stop stopper go stop has been called stopping or quiescing all running tasks server go transport handlestreams failed to read frame read tcp use of closed network connection client go transport notifyerror got notified that the client transport was broken eof server go transport handlestreams failed to read frame read tcp use of closed network connection client go transport notifyerror got notified that the client transport was broken eof go src google golang org grpc clientconn go grpc addrconn resettransport failed to create client transport connection error desc transport dial tcp operation was canceled reconnecting to go src google golang org grpc clientconn go grpc addrconn transportmonitor exits due to grpc the connection is closing util stop stopper go stop has been called stopping or quiescing all running tasks util stop stopper go stop has been called stopping or quiescing all running tasks client split test go storage replica command go split at key a failed transaction commit result is ambiguous
0
85,255
7,964,757,495
IssuesEvent
2018-07-13 23:17:08
reicast/reicast-emulator
https://api.github.com/repos/reicast/reicast-emulator
closed
Propeller Arena (black sky)
Help Wanted Move to GameDB Retest Specific Game
Screenshot: https://www.dropbox.com/l/NFS02xi2S9i00hHjWsBmPp Log: http://loungekatt.no-ip.biz:3194/ReicastBot/report/logs/1428880225221.txt <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/11009963-propeller-arena-black-sky?utm_campaign=plugin&utm_content=tracker%2F500311&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F500311&utm_medium=issues&utm_source=github). </bountysource-plugin>
1.0
Propeller Arena (black sky) - Screenshot: https://www.dropbox.com/l/NFS02xi2S9i00hHjWsBmPp Log: http://loungekatt.no-ip.biz:3194/ReicastBot/report/logs/1428880225221.txt <bountysource-plugin> --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/11009963-propeller-arena-black-sky?utm_campaign=plugin&utm_content=tracker%2F500311&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F500311&utm_medium=issues&utm_source=github). </bountysource-plugin>
non_process
propeller arena black sky screenshot log want to back this issue we accept bounties via
0
9,926
12,964,115,678
IssuesEvent
2020-07-20 19:55:59
googleapis/repo-automation-bots
https://api.github.com/repos/googleapis/repo-automation-bots
closed
Drop dependency on `repos.json`
type: process
We are trying to [delete repos.json](https://github.com/googleapis/sloth/issues/730) from sloth. This repository takes a dependency on the file, even though it _probably_ shouldn't be using it. Adding this to track the work. ## Label Sync bot The label sync bot uses `repos.json` to find all repositories it should update when the main list of available labels changes. It wants to go to every repository, and trigger an update of its labels. Using `repos.json` for this is not good, because it will miss repositories that have the bot installed, but aren't in `repos.json`. The offending code is here: https://github.com/googleapis/repo-automation-bots/blob/2e999b00724d1c1b9ad7a6d2922ad32f09c140cb/packages/label-sync/src/label-sync.ts#L94-L109 I am pretty sure we should instead interrogate GitHub to find which repositories have the `label-sync` application installed instead. I think you use this API to do that: https://developer.github.com/v3/apps/installations/#list-repositories-accessible-to-the-app-installation The challenge is that this API requires an [installation access token](https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation), and I have little idea how Probot manages getting it. Some poking about landed me on this issue: https://github.com/probot/probot/issues/1003 It looks like we would want to do something like: ```js // Find every repository that has this GitHub Application installed. // To access the apps/installation list endpoint, you need to have a // JWT obtained via createInstallationToken. const github = await app.auth(); const token = await github.apps.createInstallationToken({ installation_id: context.payload.installation.id }); const ok = new Octokit({ auth: token, }); const res = await ok.apps.listRepos(); ``` I ran into issues with `context.payload` not having an `installation` property, so someone will need to dig further into this. I also have no earthly idea how I would have tested my code. ## GCF Utils The same story plays out in GCF Utils, specifically while figuring out which repositories to run cron jobs against. *We shouldn't use repos.json for this, rather we should use the list of repositories on which the app is installed*. The offending code is here: https://github.com/googleapis/repo-automation-bots/blob/2e999b00724d1c1b9ad7a6d2922ad32f09c140cb/packages/gcf-utils/src/gcf-utils.ts#L198-L205 Independent of my desire to drop `repos.json`, I think we should clean these up because it creates unintended consequences for consumers of the app. It's entirely unclear that I need to be registered in sloth in order to use one of these bots.
1.0
Drop dependency on `repos.json` - We are trying to [delete repos.json](https://github.com/googleapis/sloth/issues/730) from sloth. This repository takes a dependency on the file, even though it _probably_ shouldn't be using it. Adding this to track the work. ## Label Sync bot The label sync bot uses `repos.json` to find all repositories it should update when the main list of available labels changes. It wants to go to every repository, and trigger an update of its labels. Using `repos.json` for this is not good, because it will miss repositories that have the bot installed, but aren't in `repos.json`. The offending code is here: https://github.com/googleapis/repo-automation-bots/blob/2e999b00724d1c1b9ad7a6d2922ad32f09c140cb/packages/label-sync/src/label-sync.ts#L94-L109 I am pretty sure we should instead interrogate GitHub to find which repositories have the `label-sync` application installed instead. I think you use this API to do that: https://developer.github.com/v3/apps/installations/#list-repositories-accessible-to-the-app-installation The challenge is that this API requires an [installation access token](https://developer.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation), and I have little idea how Probot manages getting it. Some poking about landed me on this issue: https://github.com/probot/probot/issues/1003 It looks like we would want to do something like: ```js // Find every repository that has this GitHub Application installed. // To access the apps/installation list endpoint, you need to have a // JWT obtained via createInstallationToken. const github = await app.auth(); const token = await github.apps.createInstallationToken({ installation_id: context.payload.installation.id }); const ok = new Octokit({ auth: token, }); const res = await ok.apps.listRepos(); ``` I ran into issues with `context.payload` not having an `installation` property, so someone will need to dig further into this. I also have no earthly idea how I would have tested my code. ## GCF Utils The same story plays out in GCF Utils, specifically while figuring out which repositories to run cron jobs against. *We shouldn't use repos.json for this, rather we should use the list of repositories on which the app is installed*. The offending code is here: https://github.com/googleapis/repo-automation-bots/blob/2e999b00724d1c1b9ad7a6d2922ad32f09c140cb/packages/gcf-utils/src/gcf-utils.ts#L198-L205 Independent of my desire to drop `repos.json`, I think we should clean these up because it creates unintended consequences for consumers of the app. It's entirely unclear that I need to be registered in sloth in order to use one of these bots.
process
drop dependency on repos json we are trying to from sloth this repository takes a dependency on the file even though it probably shouldn t be using it adding this to track the work label sync bot the label sync bot uses repos json to find all repositories it should update when the main list of available labels changes it wants to go to every repository and trigger an update of its labels using repos json for this is not good because it will miss repositories that have the bot installed but aren t in repos json the offending code is here i am pretty sure we should instead interrogate github to find which repositories have the label sync application installed instead i think you use this api to do that the challenge is that this api requires an and i have little idea how probot manages getting it some poking about landed me on this issue it looks like we would want to do something like js find every repository that has this github application installed to access the apps installation list endpoint you need to have a jwt obtained via createinstallationtoken const github await app auth const token await github apps createinstallationtoken installation id context payload installation id const ok new octokit auth token const res await ok apps listrepos i ran into issues with context payload not having an installation property so someone will need to dig further into this i also have no earthly idea how i would have tested my code gcf utils the same story plays out in gcf utils specifically while figuring out which repositories to run cron jobs against we shouldn t use repos json for this rather we should use the list of repositories on which the app is installed the offending code is here independent of my desire to drop repos json i think we should clean these up because it creates unintended consequences for consumers of the app it s entirely unclear that i need to be registered in sloth in order to use one of these bots
1
337,181
10,211,571,267
IssuesEvent
2019-08-14 17:16:09
containous/traefik
https://api.github.com/repos/containous/traefik
closed
KubernetesIngress provider does not create TLS-Enabled Routers
area/provider/k8s/ingress kind/bug/confirmed priority/P2
<!-- DO NOT FILE ISSUES FOR GENERAL SUPPORT QUESTIONS. The issue tracker is for reporting bugs and feature requests only. For end-user related support questions, please refer to one of the following: - the Traefik community forum: https://community.containo.us/ --> ### Do you want to request a *feature* or report a *bug*? Bug ### What did you do? <!-- HOW TO WRITE A GOOD BUG REPORT? - Respect the issue template as much as possible. - The title should be short and descriptive. - Explain the conditions which led you to report this issue: the context. - The context should lead to something, an idea or a problem that you’re facing. - Remain clear and concise. - Format your messages to help the reader focus on what matters and understand the structure of your message, use Markdown syntax https://help.github.com/articles/github-flavored-markdown --> Created the following Ingress: ```yaml apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: test namespace: default spec: tls: - secretName: secret rules: - host: traefik.rocks http: paths: - path: /test backend: serviceName: service servicePort: 443 ``` With a valid TLS certificate in the referenced secret. KubernetesIngress Provider enabled (obvs) ### What did you expect to see? Both TLS and non-TLS routers created ### What did you see instead? Only an http router was created. ### Output of `traefik version`: (_What version of Traefik are you using?_) v2 Beta 1
1.0
KubernetesIngress provider does not create TLS-Enabled Routers - <!-- DO NOT FILE ISSUES FOR GENERAL SUPPORT QUESTIONS. The issue tracker is for reporting bugs and feature requests only. For end-user related support questions, please refer to one of the following: - the Traefik community forum: https://community.containo.us/ --> ### Do you want to request a *feature* or report a *bug*? Bug ### What did you do? <!-- HOW TO WRITE A GOOD BUG REPORT? - Respect the issue template as much as possible. - The title should be short and descriptive. - Explain the conditions which led you to report this issue: the context. - The context should lead to something, an idea or a problem that you’re facing. - Remain clear and concise. - Format your messages to help the reader focus on what matters and understand the structure of your message, use Markdown syntax https://help.github.com/articles/github-flavored-markdown --> Created the following Ingress: ```yaml apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: test namespace: default spec: tls: - secretName: secret rules: - host: traefik.rocks http: paths: - path: /test backend: serviceName: service servicePort: 443 ``` With a valid TLS certificate in the referenced secret. KubernetesIngress Provider enabled (obvs) ### What did you expect to see? Both TLS and non-TLS routers created ### What did you see instead? Only an http router was created. ### Output of `traefik version`: (_What version of Traefik are you using?_) v2 Beta 1
non_process
kubernetesingress provider does not create tls enabled routers do not file issues for general support questions the issue tracker is for reporting bugs and feature requests only for end user related support questions please refer to one of the following the traefik community forum do you want to request a feature or report a bug bug what did you do how to write a good bug report respect the issue template as much as possible the title should be short and descriptive explain the conditions which led you to report this issue the context the context should lead to something an idea or a problem that you’re facing remain clear and concise format your messages to help the reader focus on what matters and understand the structure of your message use markdown syntax created the following ingress yaml apiversion networking io kind ingress metadata name test namespace default spec tls secretname secret rules host traefik rocks http paths path test backend servicename service serviceport with a valid tls certificate in the referenced secret kubernetesingress provider enabled obvs what did you expect to see both tls and non tls routers created what did you see instead only an http router was created output of traefik version what version of traefik are you using beta
0
18,823
24,721,462,043
IssuesEvent
2022-10-20 11:01:26
hermes-hmc/workflow
https://api.github.com/repos/hermes-hmc/workflow
opened
Provide processed version number
enhancement 2️ processing
There are potentially many "version identifiers" for a single version (timestamp, version string (`v1.0.3`), etc.). For publication, we need one version identifier. Includes deduplication, e.g., cff-provided version vs. tag vs. ... In this processing step, this version identifier will be defined. This processing step should also allow a configuration, where a `reserved` tag or similar is used to trigger the workflow, which will then, however, extract the real version from the tag. This real version will be used for publication, and could also be used in post-processing to tag the published commit.
1.0
Provide processed version number - There are potentially many "version identifiers" for a single version (timestamp, version string (`v1.0.3`), etc.). For publication, we need one version identifier. Includes deduplication, e.g., cff-provided version vs. tag vs. ... In this processing step, this version identifier will be defined. This processing step should also allow a configuration, where a `reserved` tag or similar is used to trigger the workflow, which will then, however, extract the real version from the tag. This real version will be used for publication, and could also be used in post-processing to tag the published commit.
process
provide processed version number there are potentially many version identifiers for a single version timestamp version string etc for publication we need one version identifier includes deduplication e g cff provided version vs tag vs in this processing step this version identifier will be defined this processing step should also allow a configuration where a reserved tag or similar is used to trigger the workflow which will then however extract the real version from the tag this real version will be used for publication and could also be used in post processing to tag the published commit
1
20,119
26,656,921,580
IssuesEvent
2023-01-25 17:33:51
open-telemetry/opentelemetry-collector-contrib
https://api.github.com/repos/open-telemetry/opentelemetry-collector-contrib
closed
[processor/resourcedetectionprocessor] Openshift - support tls config
enhancement processor/resourcedetection internal/metadataproviders processor/resourcedetection/internal/openshift
### Component(s) internal/metadataproviders, processor/resourcedetection/internal/openshift ### Is your feature request related to a problem? Please describe. If openshift api requires tls, querying metadata is not possible. ### Describe the solution you'd like Support TLS settings to be able to provide a `ca_file`. ### Describe alternatives you've considered _No response_ ### Additional context _No response_
2.0
[processor/resourcedetectionprocessor] Openshift - support tls config - ### Component(s) internal/metadataproviders, processor/resourcedetection/internal/openshift ### Is your feature request related to a problem? Please describe. If openshift api requires tls, querying metadata is not possible. ### Describe the solution you'd like Support TLS settings to be able to provide a `ca_file`. ### Describe alternatives you've considered _No response_ ### Additional context _No response_
process
openshift support tls config component s internal metadataproviders processor resourcedetection internal openshift is your feature request related to a problem please describe if openshift api requires tls querying metadata is not possible describe the solution you d like support tls settings to be able to provide a ca file describe alternatives you ve considered no response additional context no response
1
9,925
12,963,915,786
IssuesEvent
2020-07-20 19:35:01
MicrosoftDocs/azure-devops-docs
https://api.github.com/repos/MicrosoftDocs/azure-devops-docs
closed
Branch Condition Check Does not match just branch name
Pri2 devops-cicd-process/tech devops/prod product-feedback
[Enter feedback here] As per the documentation if we need to restrict the branch checks to say "master" and "releases/*". Scenario: Conditions to be set like this- `master, releases/*` Source Branch: master Source Git Repo: Azure Repo _Expected:_ Result: Match _Actual:_ Result: Not a Match Workaround: The conditions needs to be set like this in order for the match to actually happen: `refs/heads/master,refs/heads/releases/*` Question: So is this a known issue with Azure Repos while running the pipeline where the source branch is derived like this with the `refs/heads` prefixed? I have noticed the same issue while using source branch comparison inside Azure Pipelines YAML as well. e.g. I have to do : `$[eq(variables['Build.SourceBranch'], 'refs/heads/master')]` --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: b067a175-f640-7503-9c1e-f0130c6dbeda * Version Independent ID: ff743c7b-a103-eae6-4478-62ba995a4b36 * Content: [Pipeline deployment approvals - Azure Pipelines](https://docs.microsoft.com/en-in/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass#allowedbranches) * Content Source: [docs/pipelines/process/approvals.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/approvals.md) * Product: **devops** * Technology: **devops-cicd-process** * GitHub Login: @shashban * Microsoft Alias: **shashban**
1.0
Branch Condition Check Does not match just branch name - [Enter feedback here] As per the documentation if we need to restrict the branch checks to say "master" and "releases/*". Scenario: Conditions to be set like this- `master, releases/*` Source Branch: master Source Git Repo: Azure Repo _Expected:_ Result: Match _Actual:_ Result: Not a Match Workaround: The conditions needs to be set like this in order for the match to actually happen: `refs/heads/master,refs/heads/releases/*` Question: So is this a known issue with Azure Repos while running the pipeline where the source branch is derived like this with the `refs/heads` prefixed? I have noticed the same issue while using source branch comparison inside Azure Pipelines YAML as well. e.g. I have to do : `$[eq(variables['Build.SourceBranch'], 'refs/heads/master')]` --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: b067a175-f640-7503-9c1e-f0130c6dbeda * Version Independent ID: ff743c7b-a103-eae6-4478-62ba995a4b36 * Content: [Pipeline deployment approvals - Azure Pipelines](https://docs.microsoft.com/en-in/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass#allowedbranches) * Content Source: [docs/pipelines/process/approvals.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/approvals.md) * Product: **devops** * Technology: **devops-cicd-process** * GitHub Login: @shashban * Microsoft Alias: **shashban**
process
branch condition check does not match just branch name as per the documentation if we need to restrict the branch checks to say master and releases scenario conditions to be set like this master releases source branch master source git repo azure repo expected result match actual result not a match workaround the conditions needs to be set like this in order for the match to actually happen refs heads master refs heads releases question so is this a known issue with azure repos while running the pipeline where the source branch is derived like this with the refs heads prefixed i have noticed the same issue while using source branch comparison inside azure pipelines yaml as well e g i have to do refs heads master document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source product devops technology devops cicd process github login shashban microsoft alias shashban
1
19,644
26,005,813,467
IssuesEvent
2022-12-20 19:14:35
scrisenbery/dotfiles
https://api.github.com/repos/scrisenbery/dotfiles
closed
Note that restart is likely required after mac config changes are made
process
Ref: https://github.com/mathiasbynens/dotfiles/blob/master/.macos#L960 I think natural scrolling is probably one of these.
1.0
Note that restart is likely required after mac config changes are made - Ref: https://github.com/mathiasbynens/dotfiles/blob/master/.macos#L960 I think natural scrolling is probably one of these.
process
note that restart is likely required after mac config changes are made ref i think natural scrolling is probably one of these
1
230,492
25,482,650,505
IssuesEvent
2022-11-26 01:07:12
Nivaskumark/kernel_v4.1.15
https://api.github.com/repos/Nivaskumark/kernel_v4.1.15
reopened
CVE-2016-5244 (Medium) detected in linuxlinux-4.6
security vulnerability
## CVE-2016-5244 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.6</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/Nivaskumark/kernel_v4.1.15/commit/00db4e8795bcbec692fb60b19160bdd763ad42e3">00db4e8795bcbec692fb60b19160bdd763ad42e3</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/rds/recv.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/rds/recv.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The rds_inc_info_copy function in net/rds/recv.c in the Linux kernel through 4.6.3 does not initialize a certain structure member, which allows remote attackers to obtain sensitive information from kernel stack memory by reading an RDS message. <p>Publish Date: 2016-06-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-5244>CVE-2016-5244</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/deta?il?vulnId=CVE-2016-5244">http://web.nvd.nist.gov/view/vuln/deta?il?vulnId=CVE-2016-5244</a></p> <p>Release Date: 2016-06-27</p> <p>Fix Resolution: v4.7-rc3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2016-5244 (Medium) detected in linuxlinux-4.6 - ## CVE-2016-5244 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.6</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/Nivaskumark/kernel_v4.1.15/commit/00db4e8795bcbec692fb60b19160bdd763ad42e3">00db4e8795bcbec692fb60b19160bdd763ad42e3</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/rds/recv.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/net/rds/recv.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The rds_inc_info_copy function in net/rds/recv.c in the Linux kernel through 4.6.3 does not initialize a certain structure member, which allows remote attackers to obtain sensitive information from kernel stack memory by reading an RDS message. <p>Publish Date: 2016-06-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-5244>CVE-2016-5244</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/deta?il?vulnId=CVE-2016-5244">http://web.nvd.nist.gov/view/vuln/deta?il?vulnId=CVE-2016-5244</a></p> <p>Release Date: 2016-06-27</p> <p>Fix Resolution: v4.7-rc3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve medium detected in linuxlinux cve medium severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch master vulnerable source files net rds recv c net rds recv c vulnerability details the rds inc info copy function in net rds recv c in the linux kernel through does not initialize a certain structure member which allows remote attackers to obtain sensitive information from kernel stack memory by reading an rds message publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
55,273
14,348,965,701
IssuesEvent
2020-11-29 14:42:31
pymc-devs/pymc3
https://api.github.com/repos/pymc-devs/pymc3
closed
Shape issues with MvNormal.random method
defects shape problem
This issue popped out in #4180 while writing tests for `MixtureSameFamily` distribution with MvNormal distribution. MvNormal.random method does not broadcast when `sample_shape` is equal to `batch_shape` and produces inconsistent shapes with different parametrizations. **Please provide a minimal, self-contained, and reproducible example.** ```python >>> import numpy as np >>> import pymc3 as pm WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions. >>> mu = np.random.randn(10, 3) >>> mat = np.random.randn(3, 3) >>> cov = mat @ mat.T >>> tau = np.linalg.inv(cov) >>> chol = np.linalg.cholesky(cov) >>> >>> comp_dists = pm.MvNormal.dist(mu=mu, chol=chol, shape=(10, 3)) >>> comp_dists.random(size=(10)).shape (10, 3) >>> comp_dists.random(size=(20)).shape (20, 10, 3) >>> comp_dists = pm.MvNormal.dist(mu=mu, cov=cov, shape=(10, 3)) >>> comp_dists.random(size=(10)).shape (10, 3) >>> comp_dists.random(size=(20)).shape (20, 3) >>> comp_dists = pm.MvNormal.dist(mu=mu, tau=tau, shape=(10, 3)) >>> comp_dists.random(size=(10)).shape (10, 3) >>> comp_dists.random(size=(20)).shape Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/sayam/.local/lib/python3.8/site-packages/pymc3/distributions/multivariate.py", line 303, in random return mu + transformed.T ValueError: operands could not be broadcast together with shapes (10,3) (20,3) ``` **Please provide any additional information below.** On exploring, it turns out that there are known related issues #4075, #3706, #2848, #3829, #3758 . I think there needs to be major refactoring of MvNormal.random method. ## Versions and main components * PyMC3 Version: 3.9.3 (GitHub master) * Theano Version: 1.0.9 * Python Version: 3.8.6 * Operating system: Ubuntu 18.04 LTS * How did you install PyMC3: (conda/pip) pip
1.0
Shape issues with MvNormal.random method - This issue popped out in #4180 while writing tests for `MixtureSameFamily` distribution with MvNormal distribution. MvNormal.random method does not broadcast when `sample_shape` is equal to `batch_shape` and produces inconsistent shapes with different parametrizations. **Please provide a minimal, self-contained, and reproducible example.** ```python >>> import numpy as np >>> import pymc3 as pm WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions. >>> mu = np.random.randn(10, 3) >>> mat = np.random.randn(3, 3) >>> cov = mat @ mat.T >>> tau = np.linalg.inv(cov) >>> chol = np.linalg.cholesky(cov) >>> >>> comp_dists = pm.MvNormal.dist(mu=mu, chol=chol, shape=(10, 3)) >>> comp_dists.random(size=(10)).shape (10, 3) >>> comp_dists.random(size=(20)).shape (20, 10, 3) >>> comp_dists = pm.MvNormal.dist(mu=mu, cov=cov, shape=(10, 3)) >>> comp_dists.random(size=(10)).shape (10, 3) >>> comp_dists.random(size=(20)).shape (20, 3) >>> comp_dists = pm.MvNormal.dist(mu=mu, tau=tau, shape=(10, 3)) >>> comp_dists.random(size=(10)).shape (10, 3) >>> comp_dists.random(size=(20)).shape Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/sayam/.local/lib/python3.8/site-packages/pymc3/distributions/multivariate.py", line 303, in random return mu + transformed.T ValueError: operands could not be broadcast together with shapes (10,3) (20,3) ``` **Please provide any additional information below.** On exploring, it turns out that there are known related issues #4075, #3706, #2848, #3829, #3758 . I think there needs to be major refactoring of MvNormal.random method. ## Versions and main components * PyMC3 Version: 3.9.3 (GitHub master) * Theano Version: 1.0.9 * Python Version: 3.8.6 * Operating system: Ubuntu 18.04 LTS * How did you install PyMC3: (conda/pip) pip
non_process
shape issues with mvnormal random method this issue popped out in while writing tests for mixturesamefamily distribution with mvnormal distribution mvnormal random method does not broadcast when sample shape is equal to batch shape and produces inconsistent shapes with different parametrizations please provide a minimal self contained and reproducible example python import numpy as np import as pm warning theano tensor blas using numpy c api based implementation for blas functions mu np random randn mat np random randn cov mat mat t tau np linalg inv cov chol np linalg cholesky cov comp dists pm mvnormal dist mu mu chol chol shape comp dists random size shape comp dists random size shape comp dists pm mvnormal dist mu mu cov cov shape comp dists random size shape comp dists random size shape comp dists pm mvnormal dist mu mu tau tau shape comp dists random size shape comp dists random size shape traceback most recent call last file line in file home sayam local lib site packages distributions multivariate py line in random return mu transformed t valueerror operands could not be broadcast together with shapes please provide any additional information below on exploring it turns out that there are known related issues i think there needs to be major refactoring of mvnormal random method versions and main components version github master theano version python version operating system ubuntu lts how did you install conda pip pip
0
21,354
29,188,085,740
IssuesEvent
2023-05-19 17:12:59
googleapis/nodejs-retail
https://api.github.com/repos/googleapis/nodejs-retail
closed
[Policy Bot] found one or more issues with this repository.
type: process api: retail policybot
[Policy Bot](https://github.com/googleapis/repo-automation-bots/tree/main/packages/policy#policy-bot) found one or more issues with this repository. - [x] Default branch is 'main' - [x] Branch protection is enabled - [ ] Renovate bot is enabled - [x] Merge commits disabled - [ ] There is a CODEOWNERS file - [x] GitHub [detects a valid LICENSE.md](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository#detecting-a-license) - [ ] There is a CODE_OF_CONDUCT.md - [ ] There is a CONTRIBUTING.md - [ ] There is a SECURITY.md
1.0
[Policy Bot] found one or more issues with this repository. - [Policy Bot](https://github.com/googleapis/repo-automation-bots/tree/main/packages/policy#policy-bot) found one or more issues with this repository. - [x] Default branch is 'main' - [x] Branch protection is enabled - [ ] Renovate bot is enabled - [x] Merge commits disabled - [ ] There is a CODEOWNERS file - [x] GitHub [detects a valid LICENSE.md](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository#detecting-a-license) - [ ] There is a CODE_OF_CONDUCT.md - [ ] There is a CONTRIBUTING.md - [ ] There is a SECURITY.md
process
found one or more issues with this repository found one or more issues with this repository default branch is main branch protection is enabled renovate bot is enabled merge commits disabled there is a codeowners file github there is a code of conduct md there is a contributing md there is a security md
1
5,520
8,381,044,869
IssuesEvent
2018-10-07 20:45:23
MichiganDataScienceTeam/googleanalytics
https://api.github.com/repos/MichiganDataScienceTeam/googleanalytics
opened
Preprocess: u'device.operatingSystem', u'device.operatingSystemVersion', u'device.screenColors', u'device.screenResolution',
easy preprocessing
Preprocess the following features: u'device.operatingSystem', u'device.operatingSystemVersion', u'device.screenColors', u'device.screenResolution', 1. Standardization: [http://scikit-learn.org/stable/modules/preprocessing.html#standardization-or-mean-removal-and-variance-scaling](http://scikit-learn.org/stable/modules/preprocessing.html#standardization-or-mean-removal-and-variance-scaling) 2. Impute missing values: [http://scikit-learn.org/stable/modules/impute.html](http://scikit-learn.org/stable/modules/impute.html) 3. Normalization: [http://scikit-learn.org/stable/modules/preprocessing.html#normalization](http://scikit-learn.org/stable/modules/preprocessing.html#normalization) 4. Encode categorical features (optional): [http://scikit-learn.org/stable/modules/preprocessing.html#encoding-categorical-features](http://scikit-learn.org/stable/modules/preprocessing.html#encoding-categorical-features) 5. Discretization (optional): [http://scikit-learn.org/stable/modules/preprocessing.html#discretization](http://scikit-learn.org/stable/modules/preprocessing.html#discretization) [http://scikit-learn.org/stable/modules/preprocessing.html](http://scikit-learn.org/stable/modules/preprocessing.html)
1.0
Preprocess: u'device.operatingSystem', u'device.operatingSystemVersion', u'device.screenColors', u'device.screenResolution', - Preprocess the following features: u'device.operatingSystem', u'device.operatingSystemVersion', u'device.screenColors', u'device.screenResolution', 1. Standardization: [http://scikit-learn.org/stable/modules/preprocessing.html#standardization-or-mean-removal-and-variance-scaling](http://scikit-learn.org/stable/modules/preprocessing.html#standardization-or-mean-removal-and-variance-scaling) 2. Impute missing values: [http://scikit-learn.org/stable/modules/impute.html](http://scikit-learn.org/stable/modules/impute.html) 3. Normalization: [http://scikit-learn.org/stable/modules/preprocessing.html#normalization](http://scikit-learn.org/stable/modules/preprocessing.html#normalization) 4. Encode categorical features (optional): [http://scikit-learn.org/stable/modules/preprocessing.html#encoding-categorical-features](http://scikit-learn.org/stable/modules/preprocessing.html#encoding-categorical-features) 5. Discretization (optional): [http://scikit-learn.org/stable/modules/preprocessing.html#discretization](http://scikit-learn.org/stable/modules/preprocessing.html#discretization) [http://scikit-learn.org/stable/modules/preprocessing.html](http://scikit-learn.org/stable/modules/preprocessing.html)
process
preprocess u device operatingsystem u device operatingsystemversion u device screencolors u device screenresolution preprocess the following features u device operatingsystem u device operatingsystemversion u device screencolors u device screenresolution standardization impute missing values normalization encode categorical features optional discretization optional
1
233,250
25,758,300,980
IssuesEvent
2022-12-08 18:10:40
ad-2281/python_test
https://api.github.com/repos/ad-2281/python_test
opened
Sphinx-4.5.0-py3-none-any.whl: 1 vulnerabilities (highest severity is: 6.8)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Sphinx-4.5.0-py3-none-any.whl</b></p></summary> <p></p> <p>Path to dependency file: /Doc/requirements.txt</p> <p>Path to vulnerable library: /Doc/requirements.txt</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (Sphinx version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2022-23491](https://www.mend.io/vulnerability-database/CVE-2022-23491) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.8 | certifi-2022.6.15-py3-none-any.whl | Transitive | N/A* | &#10060; | <p>*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the section "Details" below to see if there is a version of transitive dependency where vulnerability is fixed.</p> ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-23491</summary> ### Vulnerable Library - <b>certifi-2022.6.15-py3-none-any.whl</b></p> <p>Python package for providing Mozilla's CA Bundle.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/e9/06/d3d367b7af6305b16f0d28ae2aaeb86154fa91f144f036c2d5002a5a202b/certifi-2022.6.15-py3-none-any.whl">https://files.pythonhosted.org/packages/e9/06/d3d367b7af6305b16f0d28ae2aaeb86154fa91f144f036c2d5002a5a202b/certifi-2022.6.15-py3-none-any.whl</a></p> <p>Path to dependency file: /Doc/requirements.txt</p> <p>Path to vulnerable library: /Doc/requirements.txt</p> <p> Dependency Hierarchy: - Sphinx-4.5.0-py3-none-any.whl (Root Library) - requests-2.28.0-py3-none-any.whl - :x: **certifi-2022.6.15-py3-none-any.whl** (Vulnerable Library) <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> Certifi is a curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. Certifi 2022.12.07 removes root certificates from "TrustCor" from the root store. These are in the process of being removed from Mozilla's trust store. TrustCor's root certificates are being removed pursuant to an investigation prompted by media reporting that TrustCor's ownership also operated a business that produced spyware. Conclusions of Mozilla's investigation can be found in the linked google group discussion. <p>Publish Date: 2022-12-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23491>CVE-2022-23491</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.cve.org/CVERecord?id=CVE-2022-23491">https://www.cve.org/CVERecord?id=CVE-2022-23491</a></p> <p>Release Date: 2022-12-07</p> <p>Fix Resolution: certifi - 2022.12.07</p> </p> <p></p> </details>
True
Sphinx-4.5.0-py3-none-any.whl: 1 vulnerabilities (highest severity is: 6.8) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Sphinx-4.5.0-py3-none-any.whl</b></p></summary> <p></p> <p>Path to dependency file: /Doc/requirements.txt</p> <p>Path to vulnerable library: /Doc/requirements.txt</p> <p> </details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in (Sphinx version) | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | ------------- | --- | | [CVE-2022-23491](https://www.mend.io/vulnerability-database/CVE-2022-23491) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.8 | certifi-2022.6.15-py3-none-any.whl | Transitive | N/A* | &#10060; | <p>*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the section "Details" below to see if there is a version of transitive dependency where vulnerability is fixed.</p> ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2022-23491</summary> ### Vulnerable Library - <b>certifi-2022.6.15-py3-none-any.whl</b></p> <p>Python package for providing Mozilla's CA Bundle.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/e9/06/d3d367b7af6305b16f0d28ae2aaeb86154fa91f144f036c2d5002a5a202b/certifi-2022.6.15-py3-none-any.whl">https://files.pythonhosted.org/packages/e9/06/d3d367b7af6305b16f0d28ae2aaeb86154fa91f144f036c2d5002a5a202b/certifi-2022.6.15-py3-none-any.whl</a></p> <p>Path to dependency file: /Doc/requirements.txt</p> <p>Path to vulnerable library: /Doc/requirements.txt</p> <p> Dependency Hierarchy: - Sphinx-4.5.0-py3-none-any.whl (Root Library) - requests-2.28.0-py3-none-any.whl - :x: **certifi-2022.6.15-py3-none-any.whl** (Vulnerable Library) <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> Certifi is a curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. Certifi 2022.12.07 removes root certificates from "TrustCor" from the root store. These are in the process of being removed from Mozilla's trust store. TrustCor's root certificates are being removed pursuant to an investigation prompted by media reporting that TrustCor's ownership also operated a business that produced spyware. Conclusions of Mozilla's investigation can be found in the linked google group discussion. <p>Publish Date: 2022-12-07 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-23491>CVE-2022-23491</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.8</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.cve.org/CVERecord?id=CVE-2022-23491">https://www.cve.org/CVERecord?id=CVE-2022-23491</a></p> <p>Release Date: 2022-12-07</p> <p>Fix Resolution: certifi - 2022.12.07</p> </p> <p></p> </details>
non_process
sphinx none any whl vulnerabilities highest severity is vulnerable library sphinx none any whl path to dependency file doc requirements txt path to vulnerable library doc requirements txt vulnerabilities cve severity cvss dependency type fixed in sphinx version remediation available medium certifi none any whl transitive n a for some transitive vulnerabilities there is no version of direct dependency with a fix check the section details below to see if there is a version of transitive dependency where vulnerability is fixed details cve vulnerable library certifi none any whl python package for providing mozilla s ca bundle library home page a href path to dependency file doc requirements txt path to vulnerable library doc requirements txt dependency hierarchy sphinx none any whl root library requests none any whl x certifi none any whl vulnerable library found in base branch main vulnerability details certifi is a curated collection of root certificates for validating the trustworthiness of ssl certificates while verifying the identity of tls hosts certifi removes root certificates from trustcor from the root store these are in the process of being removed from mozilla s trust store trustcor s root certificates are being removed pursuant to an investigation prompted by media reporting that trustcor s ownership also operated a business that produced spyware conclusions of mozilla s investigation can be found in the linked google group discussion publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required high user interaction none scope changed impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution certifi
0
55,444
3,073,443,244
IssuesEvent
2015-08-19 21:59:44
RobotiumTech/robotium
https://api.github.com/repos/RobotiumTech/robotium
closed
solo.clickOnScreen does not work on Samasung Galaxy S3 but works on LG Optimus
bug imported invalid Priority-Medium
_From [Amee.Sha...@gmail.com](https://code.google.com/u/111662295291237044685/) on November 30, 2012 02:09:02_ What steps will reproduce the problem? 1. When trying to play video using Mobo Player, the play menu goes off after few seconds. To get the play menu back, call solo.clickOnScreen(). 2. 3. What is the expected output? What do you see instead? The play menu should show up again with FF, Play and Rew buttons but instead the application just exits saying "Click cannot be completed" What version of the product are you using? On what operating system? Tried 2 robotium versions - 3.4.1 and 3.6. The same function works on LG Optimus phone with Android 2.3 but does not work on Samsung Galaxy S3 with Android 4.0 Please provide any additional information below. Log has been attached **Attachment:** [MoboPlayerTestApplog.txt](http://code.google.com/p/robotium/issues/detail?id=362) _Original issue: http://code.google.com/p/robotium/issues/detail?id=362_
1.0
solo.clickOnScreen does not work on Samasung Galaxy S3 but works on LG Optimus - _From [Amee.Sha...@gmail.com](https://code.google.com/u/111662295291237044685/) on November 30, 2012 02:09:02_ What steps will reproduce the problem? 1. When trying to play video using Mobo Player, the play menu goes off after few seconds. To get the play menu back, call solo.clickOnScreen(). 2. 3. What is the expected output? What do you see instead? The play menu should show up again with FF, Play and Rew buttons but instead the application just exits saying "Click cannot be completed" What version of the product are you using? On what operating system? Tried 2 robotium versions - 3.4.1 and 3.6. The same function works on LG Optimus phone with Android 2.3 but does not work on Samsung Galaxy S3 with Android 4.0 Please provide any additional information below. Log has been attached **Attachment:** [MoboPlayerTestApplog.txt](http://code.google.com/p/robotium/issues/detail?id=362) _Original issue: http://code.google.com/p/robotium/issues/detail?id=362_
non_process
solo clickonscreen does not work on samasung galaxy but works on lg optimus from on november what steps will reproduce the problem when trying to play video using mobo player the play menu goes off after few seconds to get the play menu back call solo clickonscreen what is the expected output what do you see instead the play menu should show up again with ff play and rew buttons but instead the application just exits saying click cannot be completed what version of the product are you using on what operating system tried robotium versions and the same function works on lg optimus phone with android but does not work on samsung galaxy with android please provide any additional information below log has been attached attachment original issue
0
287,020
24,802,923,680
IssuesEvent
2022-10-25 00:06:29
WordPress/gutenberg
https://api.github.com/repos/WordPress/gutenberg
closed
[Flaky Test] should be able to open the categories panel and create a new main category if the user has the right capabilities
[Status] Stale [Type] Flaky Test
<!-- __META_DATA__:{"failedTimes":1,"totalCommits":1,"baseCommit":"129784128219b75d923fe39b17caac228ac138c6"} --> **Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.** ## Test title should be able to open the categories panel and create a new main category if the user has the right capabilities ## Test path `specs/editor/various/taxonomies.test.js` ## Errors <!-- __TEST_RESULTS_LIST__ --> <!-- __TEST_RESULT__ --><time datetime="2021-10-09T07:59:57.467Z"><code>[2021-10-09T07:59:57.467Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/1323027376"><code>mobile/issue/3055-show-disabled-block-reason</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-10T15:53:44.090Z"><code>[2022-05-10T15:53:44.090Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2301707185"><code>trunk</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-02T16:05:10.604Z"><code>[2022-06-02T16:05:10.604Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2429308549"><code>edit-visually-edit-html</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-09T12:44:10.155Z"><code>[2022-06-09T12:44:10.155Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2468263910"><code>refactor/slot-fill-negate</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-09-04T13:07:14.722Z"><code>[2022-09-04T13:07:14.722Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2988115112"><code>refactor/components-popover-typescript</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-09-13T07:03:09.691Z"><code>[2022-09-13T07:03:09.691Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3042855851"><code>update/patterns-inserter-design</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><details> <summary> <time datetime="2022-09-19T11:47:43.997Z"><code>[2022-09-19T11:47:43.997Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3081986077"><code>update/navigation-classic</code></a>. </summary> ``` ● Taxonomies › should be able to open the categories panel and create a new main category if the user has the right capabilities TimeoutError: waiting for selector `.editor-post-taxonomies__hierarchical-terms-list` failed: timeout 30000ms exceeded 73 | await openSidebarPanelWithTitle( 'Categories' ); 74 | > 75 | await page.waitForSelector( | ^ 76 | '.editor-post-taxonomies__hierarchical-terms-list' 77 | ); 78 | at new WaitTask (../../node_modules/puppeteer-core/src/common/DOMWorld.ts:813:28) at DOMWorld.waitForSelectorInPage (../../node_modules/puppeteer-core/src/common/DOMWorld.ts:656:22) at Object.internalHandler.waitFor (../../node_modules/puppeteer-core/src/common/QueryHandler.ts:78:19) at DOMWorld.waitForSelector (../../node_modules/puppeteer-core/src/common/DOMWorld.ts:511:25) at Frame.waitForSelector (../../node_modules/puppeteer-core/src/common/FrameManager.ts:1273:47) at Page.waitForSelector (../../node_modules/puppeteer-core/src/common/Page.ts:3210:29) at Object.<anonymous> (specs/editor/various/taxonomies.test.js:75:14) at runMicrotasks (<anonymous>) ``` </details><!-- /__TEST_RESULT__ --> <!-- /__TEST_RESULTS_LIST__ -->
1.0
[Flaky Test] should be able to open the categories panel and create a new main category if the user has the right capabilities - <!-- __META_DATA__:{"failedTimes":1,"totalCommits":1,"baseCommit":"129784128219b75d923fe39b17caac228ac138c6"} --> **Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.** ## Test title should be able to open the categories panel and create a new main category if the user has the right capabilities ## Test path `specs/editor/various/taxonomies.test.js` ## Errors <!-- __TEST_RESULTS_LIST__ --> <!-- __TEST_RESULT__ --><time datetime="2021-10-09T07:59:57.467Z"><code>[2021-10-09T07:59:57.467Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/1323027376"><code>mobile/issue/3055-show-disabled-block-reason</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-10T15:53:44.090Z"><code>[2022-05-10T15:53:44.090Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2301707185"><code>trunk</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-02T16:05:10.604Z"><code>[2022-06-02T16:05:10.604Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2429308549"><code>edit-visually-edit-html</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-09T12:44:10.155Z"><code>[2022-06-09T12:44:10.155Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2468263910"><code>refactor/slot-fill-negate</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-09-04T13:07:14.722Z"><code>[2022-09-04T13:07:14.722Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2988115112"><code>refactor/components-popover-typescript</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-09-13T07:03:09.691Z"><code>[2022-09-13T07:03:09.691Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3042855851"><code>update/patterns-inserter-design</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><details> <summary> <time datetime="2022-09-19T11:47:43.997Z"><code>[2022-09-19T11:47:43.997Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3081986077"><code>update/navigation-classic</code></a>. </summary> ``` ● Taxonomies › should be able to open the categories panel and create a new main category if the user has the right capabilities TimeoutError: waiting for selector `.editor-post-taxonomies__hierarchical-terms-list` failed: timeout 30000ms exceeded 73 | await openSidebarPanelWithTitle( 'Categories' ); 74 | > 75 | await page.waitForSelector( | ^ 76 | '.editor-post-taxonomies__hierarchical-terms-list' 77 | ); 78 | at new WaitTask (../../node_modules/puppeteer-core/src/common/DOMWorld.ts:813:28) at DOMWorld.waitForSelectorInPage (../../node_modules/puppeteer-core/src/common/DOMWorld.ts:656:22) at Object.internalHandler.waitFor (../../node_modules/puppeteer-core/src/common/QueryHandler.ts:78:19) at DOMWorld.waitForSelector (../../node_modules/puppeteer-core/src/common/DOMWorld.ts:511:25) at Frame.waitForSelector (../../node_modules/puppeteer-core/src/common/FrameManager.ts:1273:47) at Page.waitForSelector (../../node_modules/puppeteer-core/src/common/Page.ts:3210:29) at Object.<anonymous> (specs/editor/various/taxonomies.test.js:75:14) at runMicrotasks (<anonymous>) ``` </details><!-- /__TEST_RESULT__ --> <!-- /__TEST_RESULTS_LIST__ -->
non_process
should be able to open the categories panel and create a new main category if the user has the right capabilities flaky test detected this is an auto generated issue by github actions please do not edit this manually test title should be able to open the categories panel and create a new main category if the user has the right capabilities test path specs editor various taxonomies test js errors test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on a href ● taxonomies › should be able to open the categories panel and create a new main category if the user has the right capabilities timeouterror waiting for selector editor post taxonomies hierarchical terms list failed timeout exceeded await opensidebarpanelwithtitle categories await page waitforselector editor post taxonomies hierarchical terms list at new waittask node modules puppeteer core src common domworld ts at domworld waitforselectorinpage node modules puppeteer core src common domworld ts at object internalhandler waitfor node modules puppeteer core src common queryhandler ts at domworld waitforselector node modules puppeteer core src common domworld ts at frame waitforselector node modules puppeteer core src common framemanager ts at page waitforselector node modules puppeteer core src common page ts at object specs editor various taxonomies test js at runmicrotasks
0
9,343
12,345,579,464
IssuesEvent
2020-05-15 09:12:18
tikv/tikv
https://api.github.com/repos/tikv/tikv
closed
UCP: Migrate `GreatestInt` (Vectorize) from TiDB
challenge-program-2 component/coprocessor difficulty/easy sig/coprocessor
## Description Port the function `GreatestInt` (Vectorize) from TiDB to coprocessor. ## Score * 50 ## Mentor(s) * @breeswish ## Recommended Skills * Rust programming ## Learning Materials Functions ported from TiDB - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr) - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
2.0
UCP: Migrate `GreatestInt` (Vectorize) from TiDB - ## Description Port the function `GreatestInt` (Vectorize) from TiDB to coprocessor. ## Score * 50 ## Mentor(s) * @breeswish ## Recommended Skills * Rust programming ## Learning Materials Functions ported from TiDB - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr) - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
process
ucp migrate greatestint vectorize from tidb description port the function greatestint vectorize from tidb to coprocessor score mentor s breeswish recommended skills rust programming learning materials functions ported from tidb
1
2,609
5,367,421,460
IssuesEvent
2017-02-22 04:07:49
nodejs/node
https://api.github.com/repos/nodejs/node
opened
Typo in comment
good first contribution process
* **Version**: master * **Platform**: n/a * **Subsystem**: process [lib/internal/process.js contains a typo](https://github.com/nodejs/node/blob/46345b937448dbeac54f33bd3a8d38be4c1dc1ef/lib/internal/process.js#L78) ("renamining").
1.0
Typo in comment - * **Version**: master * **Platform**: n/a * **Subsystem**: process [lib/internal/process.js contains a typo](https://github.com/nodejs/node/blob/46345b937448dbeac54f33bd3a8d38be4c1dc1ef/lib/internal/process.js#L78) ("renamining").
process
typo in comment version master platform n a subsystem process renamining
1
12,976
9,818,770,646
IssuesEvent
2019-06-13 20:08:36
Automattic/wp-calypso
https://api.github.com/repos/Automattic/wp-calypso
closed
Store on-boarding - Review taxes link in task list takes me to a blank screen
Store Services [Type] Bug
#### Steps to reproduce 1. Initiate store on-boarding 2. Click "Review tax" link #### What I expected To view tax settings #### What happened instead I was taken to a blank screen
1.0
Store on-boarding - Review taxes link in task list takes me to a blank screen - #### Steps to reproduce 1. Initiate store on-boarding 2. Click "Review tax" link #### What I expected To view tax settings #### What happened instead I was taken to a blank screen
non_process
store on boarding review taxes link in task list takes me to a blank screen steps to reproduce initiate store on boarding click review tax link what i expected to view tax settings what happened instead i was taken to a blank screen
0
182,914
21,678,050,792
IssuesEvent
2022-05-09 01:12:38
vlaship/spark
https://api.github.com/repos/vlaship/spark
closed
CVE-2021-44228 (High) detected in log4j-1.2.17.jar - autoclosed
security vulnerability
## CVE-2021-44228 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>log4j-1.2.17.jar</b></p></summary> <p>Apache Log4j 1.2</p> <p>Path to dependency file: spark/build.gradle</p> <p>Path to vulnerable library: /root/.gradle/caches/modules-2/files-2.1/log4j/log4j/1.2.17/5af35056b4d257e4b64b9e8069c0746e8b08629f/log4j-1.2.17.jar,/root/.gradle/caches/modules-2/files-2.1/log4j/log4j/1.2.17/5af35056b4d257e4b64b9e8069c0746e8b08629f/log4j-1.2.17.jar</p> <p> Dependency Hierarchy: - spark-sql_2.12-2.4.4.jar (Root Library) - spark-core_2.12-2.4.4.jar - hadoop-client-2.6.5.jar - hadoop-hdfs-2.6.5.jar - :x: **log4j-1.2.17.jar** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Log4j versions prior to 2.15.0 are subject to a remote code execution vulnerability via the ldap JNDI parser. <p>Publish Date: 2021-11-27 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-44228>CVE-2021-44228</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>10.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-jfh8-c2jp-5v3q">https://github.com/advisories/GHSA-jfh8-c2jp-5v3q</a></p> <p>Release Date: 2021-12-10</p> <p>Fix Resolution: org.apache.logging.log4j:log4j-core:2.15.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2021-44228 (High) detected in log4j-1.2.17.jar - autoclosed - ## CVE-2021-44228 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>log4j-1.2.17.jar</b></p></summary> <p>Apache Log4j 1.2</p> <p>Path to dependency file: spark/build.gradle</p> <p>Path to vulnerable library: /root/.gradle/caches/modules-2/files-2.1/log4j/log4j/1.2.17/5af35056b4d257e4b64b9e8069c0746e8b08629f/log4j-1.2.17.jar,/root/.gradle/caches/modules-2/files-2.1/log4j/log4j/1.2.17/5af35056b4d257e4b64b9e8069c0746e8b08629f/log4j-1.2.17.jar</p> <p> Dependency Hierarchy: - spark-sql_2.12-2.4.4.jar (Root Library) - spark-core_2.12-2.4.4.jar - hadoop-client-2.6.5.jar - hadoop-hdfs-2.6.5.jar - :x: **log4j-1.2.17.jar** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Log4j versions prior to 2.15.0 are subject to a remote code execution vulnerability via the ldap JNDI parser. <p>Publish Date: 2021-11-27 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-44228>CVE-2021-44228</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>10.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Changed - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-jfh8-c2jp-5v3q">https://github.com/advisories/GHSA-jfh8-c2jp-5v3q</a></p> <p>Release Date: 2021-12-10</p> <p>Fix Resolution: org.apache.logging.log4j:log4j-core:2.15.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve high detected in jar autoclosed cve high severity vulnerability vulnerable library jar apache path to dependency file spark build gradle path to vulnerable library root gradle caches modules files jar root gradle caches modules files jar dependency hierarchy spark sql jar root library spark core jar hadoop client jar hadoop hdfs jar x jar vulnerable library vulnerability details versions prior to are subject to a remote code execution vulnerability via the ldap jndi parser publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope changed impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org apache logging core step up your open source security game with whitesource
0
135,436
5,252,469,945
IssuesEvent
2017-02-02 04:46:50
GMDevinity/Flood
https://api.github.com/repos/GMDevinity/Flood
closed
Grammar corrections - GMOD
Low Priority Modification
@bayrock @Donkie This was brought to my attention to by - http://devinity.org/members/frozen%E2%99%A1humanity.535/ > Your "_lose_" props "**was**" refunded. Please weld your props together to keep them"!" **Was** should be replaced with **were**, _lose_ should be replaced with _loose,_ **_and the ! doesn't fit._** He also noted that **_you should use a period instead of an exclamation point._**
1.0
Grammar corrections - GMOD - @bayrock @Donkie This was brought to my attention to by - http://devinity.org/members/frozen%E2%99%A1humanity.535/ > Your "_lose_" props "**was**" refunded. Please weld your props together to keep them"!" **Was** should be replaced with **were**, _lose_ should be replaced with _loose,_ **_and the ! doesn't fit._** He also noted that **_you should use a period instead of an exclamation point._**
non_process
grammar corrections gmod bayrock donkie this was brought to my attention to by your lose props was refunded please weld your props together to keep them was should be replaced with were lose should be replaced with loose and the doesn t fit he also noted that you should use a period instead of an exclamation point
0
12,635
15,016,567,179
IssuesEvent
2021-02-01 09:45:15
threefoldtech/js-sdk
https://api.github.com/repos/threefoldtech/js-sdk
closed
jsng local 3bot setup installer , threebot does not start
process_wontfix
Tried to setup jsng local 3bot on a new system , and in inside poetry shell , unable to start threebot : ![image](https://user-images.githubusercontent.com/25789724/106377723-80be0080-63b8-11eb-9465-25b3d904a25f.png) ![image](https://user-images.githubusercontent.com/25789724/106377726-903d4980-63b8-11eb-92bb-c3b4ecf52bb6.png) Tested on development and development_vdc branches
1.0
jsng local 3bot setup installer , threebot does not start - Tried to setup jsng local 3bot on a new system , and in inside poetry shell , unable to start threebot : ![image](https://user-images.githubusercontent.com/25789724/106377723-80be0080-63b8-11eb-9465-25b3d904a25f.png) ![image](https://user-images.githubusercontent.com/25789724/106377726-903d4980-63b8-11eb-92bb-c3b4ecf52bb6.png) Tested on development and development_vdc branches
process
jsng local setup installer threebot does not start tried to setup jsng local on a new system and in inside poetry shell unable to start threebot tested on development and development vdc branches
1
6,206
3,771,521,402
IssuesEvent
2016-03-16 17:51:12
facebook/hhvm
https://api.github.com/repos/facebook/hhvm
closed
11 tests failed using HHVM 3.3.1 on CentOS 6.5
build
I compiled HHVM 3.3.1 on CentOS 6.5 and ran test/all. 11 tests out of 11825 tests failed. ``` test/slow/ext_icu/uspoof.php test/slow/ext_zlib/qlzfail.php test/zend/good/ext/intl/tests/calendar_getDayOfWeekType_basic.php test/zend/good/ext/mbstring/tests/bug54494.php test/zend/good/ext/pcre/tests/bug47662.php test/zend/good/ext/standard/tests/strings/bug51059.php test/zend/good/ext/zlib/tests/gzreadgzwriteplain.php test/zend/good/ext/zlib/tests/gzwrite_variation1.php ``` I think these are false positives: ``` test/slow/ext_gd/imagewebp.php test/slow/ext_xdebug/remote/feature.php test/zend/good/ext/date/tests/bug67253.php ``` ``` cat test/slow/ext_icu/uspoof.php.diff 030+ bool(false) 031+ Failed: 1 032+ Got: 033+ array(2) { 034+ [0]=> 035+ array(4) { 036+ ["file"]=> 037+ string(61) "/hhvm/hphp/test/slow/ext_icu/uspoof.php" 038+ ["line"]=> 039+ int(120) 040+ ["function"]=> 041+ string(2) "VS" 042+ ["args"]=> 043+ array(2) { 044+ [0]=> 045+ bool(false) 046+ [1]=> 047+ bool(true) 048+ } 049+ } 050+ [1]=> 051+ array(4) { 052+ ["file"]=> 053+ string(61) "/hhvm/hphp/test/slow/ext_icu/uspoof.php" 054+ ["line"]=> 055+ int(186) 056+ ["function"]=> 057+ string(27) "test_SpoofChecker_setchecks" 058+ ["args"]=> 059+ array(0) { 060+ } 061+ } 062+ } 030- bool(true) ...... 092+ bool(true) ``` ``` test/slow/ext_zlib/qlzfail.php: HHVM 3.3.0 didn't fail this one. Fatal error: Call to undefined function qlzcompress() in /hhvm/hphp/test/slow/ext_zlib/qlzfail.php on line 6 ``` ``` test/zend/good/ext/intl/tests/calendar_getDayOfWeekType_basic.php 001+ int(1) 001- int(3) ``` ``` test/zend/good/ext/mbstring/tests/bug54494.php: I can reproduce this one with HHVM 3.3.0 on centos and HHVM 3.2.0 on ubuntu. php passes this test. 003+ 68000000e40000006c000000 003- 68000000e40000006c0000006c000000f60000002000000077000000f6000000720000006c000000640000000a000000 006+ 6800e4006c006c00f6002000 006- 6800e4006c006c00f60020007700f60072006c0064000a00 ``` ``` test/zend/good/ext/pcre/tests/bug47662.php 001+ bool(false) 001- int(1) ``` ``` test/zend/good/ext/standard/tests/strings/bug51059.php 001+ Not OK 001- OK ``` ``` test/zend/good/ext/zlib/tests/gzreadgzwriteplain.php 004+ int(8192) 005+ Strings are not equal 004- int(18432) 005- Strings are equal 006+ string(8192) "hallo phphallo phphallo ..... ``` ``` test/zend/good/ext/zlib/tests/gzwrite_variation1.php 001+ Notice: fwrite(): send of 34 bytes failed with errno=0 Success in /hhvm/hphp/test/zend/good/ext/zlib/tests/gzwrite_variation1.php on line 7 004+ 005+ Notice: fwrite(): send of 34 bytes failed with errno=0 Success in /hhvm/hphp/test/zend/good/ext/zlib/tests/gzwrite_variation1.php on line 9 ``` The following may be false positives: ``` test/zend/good/ext/date/tests/bug67253.php: HHVM 3.3.0 didn't fail this one. 022+ int(4) 022- int(3) 024+ array(4) { 024- array(3) { 029+ [10]=> 030+ string(35) "The format separator does not match" 031+ [11]=> 032+ string(13) "Trailing data" 029- [9]=> 030- string(12) "Data missing" ``` ``` test/slow/ext_gd/imagewebp.php: I linked hhvm with libwebp 0.4.1. 001+ 2600 002+ RIFF4???WEBPVP 001- 2500 002- RIFF????WEBPVP ``` ``` test/slow/ext_xdebug/remote/feature.php: 3.3.1 instead of 3.3.0-dev 038+ <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_get" transaction_id="0" feature_name="language_version" supported="1"><![CDATA[3.3.1]]></response> 038- <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_get" transaction_id="0" feature_name="language_version" supported="1"><![CDATA[3.3.0-dev]]></response> ``` The mbstring, pcre, strings and zlib failures are likely more important.
1.0
11 tests failed using HHVM 3.3.1 on CentOS 6.5 - I compiled HHVM 3.3.1 on CentOS 6.5 and ran test/all. 11 tests out of 11825 tests failed. ``` test/slow/ext_icu/uspoof.php test/slow/ext_zlib/qlzfail.php test/zend/good/ext/intl/tests/calendar_getDayOfWeekType_basic.php test/zend/good/ext/mbstring/tests/bug54494.php test/zend/good/ext/pcre/tests/bug47662.php test/zend/good/ext/standard/tests/strings/bug51059.php test/zend/good/ext/zlib/tests/gzreadgzwriteplain.php test/zend/good/ext/zlib/tests/gzwrite_variation1.php ``` I think these are false positives: ``` test/slow/ext_gd/imagewebp.php test/slow/ext_xdebug/remote/feature.php test/zend/good/ext/date/tests/bug67253.php ``` ``` cat test/slow/ext_icu/uspoof.php.diff 030+ bool(false) 031+ Failed: 1 032+ Got: 033+ array(2) { 034+ [0]=> 035+ array(4) { 036+ ["file"]=> 037+ string(61) "/hhvm/hphp/test/slow/ext_icu/uspoof.php" 038+ ["line"]=> 039+ int(120) 040+ ["function"]=> 041+ string(2) "VS" 042+ ["args"]=> 043+ array(2) { 044+ [0]=> 045+ bool(false) 046+ [1]=> 047+ bool(true) 048+ } 049+ } 050+ [1]=> 051+ array(4) { 052+ ["file"]=> 053+ string(61) "/hhvm/hphp/test/slow/ext_icu/uspoof.php" 054+ ["line"]=> 055+ int(186) 056+ ["function"]=> 057+ string(27) "test_SpoofChecker_setchecks" 058+ ["args"]=> 059+ array(0) { 060+ } 061+ } 062+ } 030- bool(true) ...... 092+ bool(true) ``` ``` test/slow/ext_zlib/qlzfail.php: HHVM 3.3.0 didn't fail this one. Fatal error: Call to undefined function qlzcompress() in /hhvm/hphp/test/slow/ext_zlib/qlzfail.php on line 6 ``` ``` test/zend/good/ext/intl/tests/calendar_getDayOfWeekType_basic.php 001+ int(1) 001- int(3) ``` ``` test/zend/good/ext/mbstring/tests/bug54494.php: I can reproduce this one with HHVM 3.3.0 on centos and HHVM 3.2.0 on ubuntu. php passes this test. 003+ 68000000e40000006c000000 003- 68000000e40000006c0000006c000000f60000002000000077000000f6000000720000006c000000640000000a000000 006+ 6800e4006c006c00f6002000 006- 6800e4006c006c00f60020007700f60072006c0064000a00 ``` ``` test/zend/good/ext/pcre/tests/bug47662.php 001+ bool(false) 001- int(1) ``` ``` test/zend/good/ext/standard/tests/strings/bug51059.php 001+ Not OK 001- OK ``` ``` test/zend/good/ext/zlib/tests/gzreadgzwriteplain.php 004+ int(8192) 005+ Strings are not equal 004- int(18432) 005- Strings are equal 006+ string(8192) "hallo phphallo phphallo ..... ``` ``` test/zend/good/ext/zlib/tests/gzwrite_variation1.php 001+ Notice: fwrite(): send of 34 bytes failed with errno=0 Success in /hhvm/hphp/test/zend/good/ext/zlib/tests/gzwrite_variation1.php on line 7 004+ 005+ Notice: fwrite(): send of 34 bytes failed with errno=0 Success in /hhvm/hphp/test/zend/good/ext/zlib/tests/gzwrite_variation1.php on line 9 ``` The following may be false positives: ``` test/zend/good/ext/date/tests/bug67253.php: HHVM 3.3.0 didn't fail this one. 022+ int(4) 022- int(3) 024+ array(4) { 024- array(3) { 029+ [10]=> 030+ string(35) "The format separator does not match" 031+ [11]=> 032+ string(13) "Trailing data" 029- [9]=> 030- string(12) "Data missing" ``` ``` test/slow/ext_gd/imagewebp.php: I linked hhvm with libwebp 0.4.1. 001+ 2600 002+ RIFF4???WEBPVP 001- 2500 002- RIFF????WEBPVP ``` ``` test/slow/ext_xdebug/remote/feature.php: 3.3.1 instead of 3.3.0-dev 038+ <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_get" transaction_id="0" feature_name="language_version" supported="1"><![CDATA[3.3.1]]></response> 038- <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="feature_get" transaction_id="0" feature_name="language_version" supported="1"><![CDATA[3.3.0-dev]]></response> ``` The mbstring, pcre, strings and zlib failures are likely more important.
non_process
tests failed using hhvm on centos i compiled hhvm on centos and ran test all tests out of tests failed test slow ext icu uspoof php test slow ext zlib qlzfail php test zend good ext intl tests calendar getdayofweektype basic php test zend good ext mbstring tests php test zend good ext pcre tests php test zend good ext standard tests strings php test zend good ext zlib tests gzreadgzwriteplain php test zend good ext zlib tests gzwrite php i think these are false positives test slow ext gd imagewebp php test slow ext xdebug remote feature php test zend good ext date tests php cat test slow ext icu uspoof php diff bool false failed got array array string hhvm hphp test slow ext icu uspoof php int string vs array bool false bool true array string hhvm hphp test slow ext icu uspoof php int string test spoofchecker setchecks array bool true bool true test slow ext zlib qlzfail php hhvm didn t fail this one fatal error call to undefined function qlzcompress in hhvm hphp test slow ext zlib qlzfail php on line test zend good ext intl tests calendar getdayofweektype basic php int int test zend good ext mbstring tests php i can reproduce this one with hhvm on centos and hhvm on ubuntu php passes this test test zend good ext pcre tests php bool false int test zend good ext standard tests strings php not ok ok test zend good ext zlib tests gzreadgzwriteplain php int strings are not equal int strings are equal string hallo phphallo phphallo test zend good ext zlib tests gzwrite php notice fwrite send of bytes failed with errno success in hhvm hphp test zend good ext zlib tests gzwrite php on line notice fwrite send of bytes failed with errno success in hhvm hphp test zend good ext zlib tests gzwrite php on line the following may be false positives test zend good ext date tests php hhvm didn t fail this one int int array array string the format separator does not match string trailing data string data missing test slow ext gd imagewebp php i linked hhvm with libwebp webpvp riff webpvp test slow ext xdebug remote feature php instead of dev the mbstring pcre strings and zlib failures are likely more important
0
2,478
5,253,692,079
IssuesEvent
2017-02-02 10:25:31
openvstorage/framework
https://api.github.com/repos/openvstorage/framework
reopened
Framework should cleanup MDS slaves of removed volumes
priority_urgent process_wontfix type_bug
Framework should cleanup MDS slaves of removed (non-existing) volumes.
1.0
Framework should cleanup MDS slaves of removed volumes - Framework should cleanup MDS slaves of removed (non-existing) volumes.
process
framework should cleanup mds slaves of removed volumes framework should cleanup mds slaves of removed non existing volumes
1
12,737
15,103,418,038
IssuesEvent
2021-02-08 10:17:06
CATcher-org/CATcher
https://api.github.com/repos/CATcher-org/CATcher
closed
Setup code coverage reporting in CI
aspect-Process
Once #541 is merged, we can run `npm run test -- "--code-coverage"` to generate the code coverage report locally (under `tests/coverage`.) Open the `index.html` file under `tests/coverage` to view the report. Let's connect our CI checks with a code coverage reporting service (for both PRs and `master` branch, preferably). To achieve this, we'll have to upload the generated report to a code coverage reporting service, as part of our CI workflow.
1.0
Setup code coverage reporting in CI - Once #541 is merged, we can run `npm run test -- "--code-coverage"` to generate the code coverage report locally (under `tests/coverage`.) Open the `index.html` file under `tests/coverage` to view the report. Let's connect our CI checks with a code coverage reporting service (for both PRs and `master` branch, preferably). To achieve this, we'll have to upload the generated report to a code coverage reporting service, as part of our CI workflow.
process
setup code coverage reporting in ci once is merged we can run npm run test code coverage to generate the code coverage report locally under tests coverage open the index html file under tests coverage to view the report let s connect our ci checks with a code coverage reporting service for both prs and master branch preferably to achieve this we ll have to upload the generated report to a code coverage reporting service as part of our ci workflow
1
47,667
13,248,062,285
IssuesEvent
2020-08-19 18:18:43
jgeraigery/CAST
https://api.github.com/repos/jgeraigery/CAST
opened
CVE-2018-3721 (Medium) detected in lodash.merge-3.3.2.tgz, lodash-3.10.1.tgz
security vulnerability
## CVE-2018-3721 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>lodash.merge-3.3.2.tgz</b>, <b>lodash-3.10.1.tgz</b></p></summary> <p> <details><summary><b>lodash.merge-3.3.2.tgz</b></p></summary> <p>The modern build of lodash’s `_.merge` as a module.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz">https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/node_modules/lodash.merge/package.json</p> <p> Dependency Hierarchy: - eslint-1.10.3.tgz (Root Library) - :x: **lodash.merge-3.3.2.tgz** (Vulnerable Library) </details> <details><summary><b>lodash-3.10.1.tgz</b></p></summary> <p>The modern build of lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz">https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/node_modules/eslint/node_modules/lodash/package.json</p> <p> Dependency Hierarchy: - eslint-1.10.3.tgz (Root Library) - inquirer-0.11.4.tgz - :x: **lodash-3.10.1.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/jgeraigery/CAST/commit/7676336ba2b69ff04f35f36014adcc01d289a85d">7676336ba2b69ff04f35f36014adcc01d289a85d</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> lodash node module before 4.17.5 suffers from a Modification of Assumed-Immutable Data (MAID) vulnerability via defaultsDeep, merge, and mergeWith functions, which allows a malicious user to modify the prototype of "Object" via __proto__, causing the addition or modification of an existing property that will exist on all objects. <p>Publish Date: 2018-06-07 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-3721>CVE-2018-3721</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2018-3721">https://nvd.nist.gov/vuln/detail/CVE-2018-3721</a></p> <p>Release Date: 2018-06-07</p> <p>Fix Resolution: 4.17.5</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash.merge","packageVersion":"3.3.2","isTransitiveDependency":true,"dependencyTree":"eslint:1.10.3;lodash.merge:3.3.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"4.17.5"},{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"3.10.1","isTransitiveDependency":true,"dependencyTree":"eslint:1.10.3;inquirer:0.11.4;lodash:3.10.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"4.17.5"}],"vulnerabilityIdentifier":"CVE-2018-3721","vulnerabilityDetails":"lodash node module before 4.17.5 suffers from a Modification of Assumed-Immutable Data (MAID) vulnerability via defaultsDeep, merge, and mergeWith functions, which allows a malicious user to modify the prototype of \"Object\" via __proto__, causing the addition or modification of an existing property that will exist on all objects.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-3721","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"Low","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2018-3721 (Medium) detected in lodash.merge-3.3.2.tgz, lodash-3.10.1.tgz - ## CVE-2018-3721 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>lodash.merge-3.3.2.tgz</b>, <b>lodash-3.10.1.tgz</b></p></summary> <p> <details><summary><b>lodash.merge-3.3.2.tgz</b></p></summary> <p>The modern build of lodash’s `_.merge` as a module.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz">https://registry.npmjs.org/lodash.merge/-/lodash.merge-3.3.2.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/node_modules/lodash.merge/package.json</p> <p> Dependency Hierarchy: - eslint-1.10.3.tgz (Root Library) - :x: **lodash.merge-3.3.2.tgz** (Vulnerable Library) </details> <details><summary><b>lodash-3.10.1.tgz</b></p></summary> <p>The modern build of lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz">https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz</a></p> <p>Path to dependency file: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/package.json</p> <p>Path to vulnerable library: /tmp/ws-scm/CAST/csm_big_data/kibana/plugins/cast_vis/node_modules/eslint/node_modules/lodash/package.json</p> <p> Dependency Hierarchy: - eslint-1.10.3.tgz (Root Library) - inquirer-0.11.4.tgz - :x: **lodash-3.10.1.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/jgeraigery/CAST/commit/7676336ba2b69ff04f35f36014adcc01d289a85d">7676336ba2b69ff04f35f36014adcc01d289a85d</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> lodash node module before 4.17.5 suffers from a Modification of Assumed-Immutable Data (MAID) vulnerability via defaultsDeep, merge, and mergeWith functions, which allows a malicious user to modify the prototype of "Object" via __proto__, causing the addition or modification of an existing property that will exist on all objects. <p>Publish Date: 2018-06-07 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-3721>CVE-2018-3721</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: High - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2018-3721">https://nvd.nist.gov/vuln/detail/CVE-2018-3721</a></p> <p>Release Date: 2018-06-07</p> <p>Fix Resolution: 4.17.5</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash.merge","packageVersion":"3.3.2","isTransitiveDependency":true,"dependencyTree":"eslint:1.10.3;lodash.merge:3.3.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"4.17.5"},{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"3.10.1","isTransitiveDependency":true,"dependencyTree":"eslint:1.10.3;inquirer:0.11.4;lodash:3.10.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"4.17.5"}],"vulnerabilityIdentifier":"CVE-2018-3721","vulnerabilityDetails":"lodash node module before 4.17.5 suffers from a Modification of Assumed-Immutable Data (MAID) vulnerability via defaultsDeep, merge, and mergeWith functions, which allows a malicious user to modify the prototype of \"Object\" via __proto__, causing the addition or modification of an existing property that will exist on all objects.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-3721","cvss3Severity":"medium","cvss3Score":"6.5","cvss3Metrics":{"A":"None","AC":"Low","PR":"Low","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_process
cve medium detected in lodash merge tgz lodash tgz cve medium severity vulnerability vulnerable libraries lodash merge tgz lodash tgz lodash merge tgz the modern build of lodash’s merge as a module library home page a href path to dependency file tmp ws scm cast csm big data kibana plugins cast vis package json path to vulnerable library tmp ws scm cast csm big data kibana plugins cast vis node modules lodash merge package json dependency hierarchy eslint tgz root library x lodash merge tgz vulnerable library lodash tgz the modern build of lodash modular utilities library home page a href path to dependency file tmp ws scm cast csm big data kibana plugins cast vis package json path to vulnerable library tmp ws scm cast csm big data kibana plugins cast vis node modules eslint node modules lodash package json dependency hierarchy eslint tgz root library inquirer tgz x lodash tgz vulnerable library found in head commit a href vulnerability details lodash node module before suffers from a modification of assumed immutable data maid vulnerability via defaultsdeep merge and mergewith functions which allows a malicious user to modify the prototype of object via proto causing the addition or modification of an existing property that will exist on all objects publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact high availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails lodash node module before suffers from a modification of assumed immutable data maid vulnerability via defaultsdeep merge and mergewith functions which allows a malicious user to modify the prototype of object via proto causing the addition or modification of an existing property that will exist on all objects vulnerabilityurl
0
236,762
18,108,603,169
IssuesEvent
2021-09-22 22:38:55
CoinAlpha/hummingbot
https://api.github.com/repos/CoinAlpha/hummingbot
opened
List exchanges that do not fully support paper trade mode
documentation
## Why We have existing connectors to exchanges that do not provide updates on the public trades that happen. This results to issues with paper trade mode when used with that exchange such as simulated orders are not getting filled. Although in the future we plan to rework paper trade by supporting only one exchange, it would be good to have now in the docs this list of exchanges that do not work properly so we can communicate to the users sooner. ## What - Identify the list of exchanges that do not provide public trade information through their API endpoint - Add in the documentation like in Connectors Overview or Paper Trade Mode feature page these exchanges ## Definition of Done - [ ] All connectors / exchanges that do not support paper trade mode are published in Hummingbot docs
1.0
List exchanges that do not fully support paper trade mode - ## Why We have existing connectors to exchanges that do not provide updates on the public trades that happen. This results to issues with paper trade mode when used with that exchange such as simulated orders are not getting filled. Although in the future we plan to rework paper trade by supporting only one exchange, it would be good to have now in the docs this list of exchanges that do not work properly so we can communicate to the users sooner. ## What - Identify the list of exchanges that do not provide public trade information through their API endpoint - Add in the documentation like in Connectors Overview or Paper Trade Mode feature page these exchanges ## Definition of Done - [ ] All connectors / exchanges that do not support paper trade mode are published in Hummingbot docs
non_process
list exchanges that do not fully support paper trade mode why we have existing connectors to exchanges that do not provide updates on the public trades that happen this results to issues with paper trade mode when used with that exchange such as simulated orders are not getting filled although in the future we plan to rework paper trade by supporting only one exchange it would be good to have now in the docs this list of exchanges that do not work properly so we can communicate to the users sooner what identify the list of exchanges that do not provide public trade information through their api endpoint add in the documentation like in connectors overview or paper trade mode feature page these exchanges definition of done all connectors exchanges that do not support paper trade mode are published in hummingbot docs
0
4,933
7,795,484,912
IssuesEvent
2018-06-08 08:17:33
StrikeNP/trac_test
https://api.github.com/repos/StrikeNP/trac_test
closed
Plotgen 3.0: In nightly plots case labels, use "RF01" rather than "RF 01" and "RF02" rather than "RF 02" (Trac #163)
Migrated from Trac enhancement post_processing senkbeil@uwm.edu
In the literature, people typically have not put a space between the RF and the flight number. Likewise, when we name the files, we must run together the RF and 01. Furthermore, the cloud_feedback cases are labeled "S6", "S11", and "S12". Therefore, it seems more consistent to remove the space for the DYCOMS cases in the nightly plots labels: "RF01", "RF02 DS", "RF02 DO", "RF02 ND", and "RF02 SO". Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/163 ```json { "status": "closed", "changetime": "2009-09-02T20:43:17", "description": "In the literature, people typically have not put a space between the RF and the flight number. Likewise, when we name the files, we must run together the RF and 01. Furthermore, the cloud_feedback cases are labeled \"S6\", \"S11\", and \"S12\". Therefore, it seems more consistent to remove the space for the DYCOMS cases in the nightly plots labels: \"RF01\", \"RF02 DS\", \"RF02 DO\", \"RF02 ND\", and \"RF02 SO\". ", "reporter": "vlarson@uwm.edu", "cc": "", "resolution": "Verified by V. Larson", "_ts": "1251924197000000", "component": "post_processing", "summary": "Plotgen 3.0: In nightly plots case labels, use \"RF01\" rather than \"RF 01\" and \"RF02\" rather than \"RF 02\"", "priority": "minor", "keywords": "", "time": "2009-08-01T19:06:33", "milestone": "Plotgen 3.0", "owner": "senkbeil@uwm.edu", "type": "enhancement" } ```
1.0
Plotgen 3.0: In nightly plots case labels, use "RF01" rather than "RF 01" and "RF02" rather than "RF 02" (Trac #163) - In the literature, people typically have not put a space between the RF and the flight number. Likewise, when we name the files, we must run together the RF and 01. Furthermore, the cloud_feedback cases are labeled "S6", "S11", and "S12". Therefore, it seems more consistent to remove the space for the DYCOMS cases in the nightly plots labels: "RF01", "RF02 DS", "RF02 DO", "RF02 ND", and "RF02 SO". Attachments: Migrated from http://carson.math.uwm.edu/trac/clubb/ticket/163 ```json { "status": "closed", "changetime": "2009-09-02T20:43:17", "description": "In the literature, people typically have not put a space between the RF and the flight number. Likewise, when we name the files, we must run together the RF and 01. Furthermore, the cloud_feedback cases are labeled \"S6\", \"S11\", and \"S12\". Therefore, it seems more consistent to remove the space for the DYCOMS cases in the nightly plots labels: \"RF01\", \"RF02 DS\", \"RF02 DO\", \"RF02 ND\", and \"RF02 SO\". ", "reporter": "vlarson@uwm.edu", "cc": "", "resolution": "Verified by V. Larson", "_ts": "1251924197000000", "component": "post_processing", "summary": "Plotgen 3.0: In nightly plots case labels, use \"RF01\" rather than \"RF 01\" and \"RF02\" rather than \"RF 02\"", "priority": "minor", "keywords": "", "time": "2009-08-01T19:06:33", "milestone": "Plotgen 3.0", "owner": "senkbeil@uwm.edu", "type": "enhancement" } ```
process
plotgen in nightly plots case labels use rather than rf and rather than rf trac in the literature people typically have not put a space between the rf and the flight number likewise when we name the files we must run together the rf and furthermore the cloud feedback cases are labeled and therefore it seems more consistent to remove the space for the dycoms cases in the nightly plots labels ds do nd and so attachments migrated from json status closed changetime description in the literature people typically have not put a space between the rf and the flight number likewise when we name the files we must run together the rf and furthermore the cloud feedback cases are labeled and therefore it seems more consistent to remove the space for the dycoms cases in the nightly plots labels ds do nd and so reporter vlarson uwm edu cc resolution verified by v larson ts component post processing summary plotgen in nightly plots case labels use rather than rf and rather than rf priority minor keywords time milestone plotgen owner senkbeil uwm edu type enhancement
1
19,999
26,472,239,728
IssuesEvent
2023-01-17 08:26:09
DevExpress/testcafe
https://api.github.com/repos/DevExpress/testcafe
closed
Testcafe and new version of QlikSense
TYPE: bug SYSTEM: hammerhead STATE: Need response FREQUENCY: level 1 SYSTEM: client side processing STATE: possibly fixed in proxyless
### What is your Scenario? As a tester i would like to perform automated checks and procedures as user for E2E tests. I would like to open my site -> open QlikSense app -> navigate to QlikSense HUB -> Open QlikSense application -> Open sheet from application -> continue with various tests on site ### What is the Current behavior? After upgrading QlikSense to latest August2022 version for all tests following errors appear: Currently on step to "Open QlikSense application" 2 errors are thrown ![errors](https://user-images.githubusercontent.com/115016359/193836541-e950fe0e-ef7a-4d34-9e1e-66285749cf32.png) ### What is the Expected behavior? When opening an application from QlikSense HUB, that application should open like in previous versions ### What is your public website URL? (or attach your complete example) https://demos.qlik.com/qliksense ### What is your TestCafe test code? [DemoForGithub.zip](https://github.com/DevExpress/testcafe/files/9707543/DemoForGithub.zip) 1. unzip solution 2. use "npm install" to install modules 3. execute tests by command line "testcafe" or "testcafe firefox DemoTest.ts" ### Your complete configuration file { "browsers": [ "chrome", "firefox", "edge" ], "src": [ "*.ts" ], "reporter": [ { "name": "spec" }, { "name": "xunit", "output": "reports/report.xml" } ], "screenshots": { "screenshotPath": "reports/screenshots/", "takeOnFails": true, "screenshotPathPattern": "${DATE}_${TIME}/test-${TEST_INDEX}/${USERAGENT}/${FILE_INDEX}.png" } } ### Your complete test report _No response_ ### Screenshots _No response_ ### Steps to Reproduce 1.Open main page 2.Open QlikSense HUB 3.Open QlikSense application error thrown, app not opened ### TestCafe version 1.18.5 ### Node.js version 12.16.3 ### Command-line arguments testcafe firefox DemoTest.ts ### Browser name(s) and version(s) _No response_ ### Platform(s) and version(s) Windows ### Other _No response_
1.0
Testcafe and new version of QlikSense - ### What is your Scenario? As a tester i would like to perform automated checks and procedures as user for E2E tests. I would like to open my site -> open QlikSense app -> navigate to QlikSense HUB -> Open QlikSense application -> Open sheet from application -> continue with various tests on site ### What is the Current behavior? After upgrading QlikSense to latest August2022 version for all tests following errors appear: Currently on step to "Open QlikSense application" 2 errors are thrown ![errors](https://user-images.githubusercontent.com/115016359/193836541-e950fe0e-ef7a-4d34-9e1e-66285749cf32.png) ### What is the Expected behavior? When opening an application from QlikSense HUB, that application should open like in previous versions ### What is your public website URL? (or attach your complete example) https://demos.qlik.com/qliksense ### What is your TestCafe test code? [DemoForGithub.zip](https://github.com/DevExpress/testcafe/files/9707543/DemoForGithub.zip) 1. unzip solution 2. use "npm install" to install modules 3. execute tests by command line "testcafe" or "testcafe firefox DemoTest.ts" ### Your complete configuration file { "browsers": [ "chrome", "firefox", "edge" ], "src": [ "*.ts" ], "reporter": [ { "name": "spec" }, { "name": "xunit", "output": "reports/report.xml" } ], "screenshots": { "screenshotPath": "reports/screenshots/", "takeOnFails": true, "screenshotPathPattern": "${DATE}_${TIME}/test-${TEST_INDEX}/${USERAGENT}/${FILE_INDEX}.png" } } ### Your complete test report _No response_ ### Screenshots _No response_ ### Steps to Reproduce 1.Open main page 2.Open QlikSense HUB 3.Open QlikSense application error thrown, app not opened ### TestCafe version 1.18.5 ### Node.js version 12.16.3 ### Command-line arguments testcafe firefox DemoTest.ts ### Browser name(s) and version(s) _No response_ ### Platform(s) and version(s) Windows ### Other _No response_
process
testcafe and new version of qliksense what is your scenario as a tester i would like to perform automated checks and procedures as user for tests i would like to open my site open qliksense app navigate to qliksense hub open qliksense application open sheet from application continue with various tests on site what is the current behavior after upgrading qliksense to latest version for all tests following errors appear currently on step to open qliksense application errors are thrown what is the expected behavior when opening an application from qliksense hub that application should open like in previous versions what is your public website url or attach your complete example what is your testcafe test code unzip solution use npm install to install modules execute tests by command line testcafe or testcafe firefox demotest ts your complete configuration file browsers chrome firefox edge src ts reporter name spec name xunit output reports report xml screenshots screenshotpath reports screenshots takeonfails true screenshotpathpattern date time test test index useragent file index png your complete test report no response screenshots no response steps to reproduce open main page open qliksense hub open qliksense application error thrown app not opened testcafe version node js version command line arguments testcafe firefox demotest ts browser name s and version s no response platform s and version s windows other no response
1
8,005
11,200,608,490
IssuesEvent
2020-01-03 22:22:41
NottingHack/hms2
https://api.github.com/repos/NottingHack/hms2
closed
Note acceptor jam reconciliation
2.x Process
Sometimes the note acceptor jams or sticks at reading recording payment but not jammed. This can leave the `PENDING` entries in `transactions` and incomplete entries in `vend_log` > Daniel [12:54 PM] > hmm, ok. I've seen that a couple of times now. The problem seems to be the note acceptor swallows a note, but the arduino doesn't get/see the event to say it's happened. So it basically sits there forever waiting for a message that never arrives. but the resolution is to restart the note acceptor, then update the data in the same way as a jam (use sp_vend_success) > > call sp_vend_success('<rfid serial>', <vend_tran_id>, 'CHANNELx', @err); > to fix it. where channel1=£5, 2=£10 > get vend_tran_id from the vend table (it's _not_ transaction_id) (edited)
1.0
Note acceptor jam reconciliation - Sometimes the note acceptor jams or sticks at reading recording payment but not jammed. This can leave the `PENDING` entries in `transactions` and incomplete entries in `vend_log` > Daniel [12:54 PM] > hmm, ok. I've seen that a couple of times now. The problem seems to be the note acceptor swallows a note, but the arduino doesn't get/see the event to say it's happened. So it basically sits there forever waiting for a message that never arrives. but the resolution is to restart the note acceptor, then update the data in the same way as a jam (use sp_vend_success) > > call sp_vend_success('<rfid serial>', <vend_tran_id>, 'CHANNELx', @err); > to fix it. where channel1=£5, 2=£10 > get vend_tran_id from the vend table (it's _not_ transaction_id) (edited)
process
note acceptor jam reconciliation sometimes the note acceptor jams or sticks at reading recording payment but not jammed this can leave the pending entries in transactions and incomplete entries in vend log daniel hmm ok i ve seen that a couple of times now the problem seems to be the note acceptor swallows a note but the arduino doesn t get see the event to say it s happened so it basically sits there forever waiting for a message that never arrives but the resolution is to restart the note acceptor then update the data in the same way as a jam use sp vend success call sp vend success channelx err to fix it where £ £ get vend tran id from the vend table it s not transaction id edited
1
7,772
10,914,688,221
IssuesEvent
2019-11-21 09:41:21
prisma/specs
https://api.github.com/repos/prisma/specs
closed
Process: Labels to categorize specs issues
area/process kind/meta spec/new
This repo contains loads of different types of issues that have different goals: - new spec - change an existing spec - bug in a spec - addition to a spec - investigation to be done - suggestion / rfc / proposal - discussion - question - trigger for changes - task - goal / requirement - todo / checklist - problem - adjustment - retroactive spec / document current state - Implementation problem (that needs spec) - prototype / mvp / test implementation - note / idea / impulse - spec-feedback - spec-request (noted while looking through all issues) As it contains to grow, it will be useful to have a label to differentiate between those, similar to `kind/feature` and `kind/bug` in the engineering repositories. The list above can be used to extract common topics and hopefully find a few concise groups to use in labels.
1.0
Process: Labels to categorize specs issues - This repo contains loads of different types of issues that have different goals: - new spec - change an existing spec - bug in a spec - addition to a spec - investigation to be done - suggestion / rfc / proposal - discussion - question - trigger for changes - task - goal / requirement - todo / checklist - problem - adjustment - retroactive spec / document current state - Implementation problem (that needs spec) - prototype / mvp / test implementation - note / idea / impulse - spec-feedback - spec-request (noted while looking through all issues) As it contains to grow, it will be useful to have a label to differentiate between those, similar to `kind/feature` and `kind/bug` in the engineering repositories. The list above can be used to extract common topics and hopefully find a few concise groups to use in labels.
process
process labels to categorize specs issues this repo contains loads of different types of issues that have different goals new spec change an existing spec bug in a spec addition to a spec investigation to be done suggestion rfc proposal discussion question trigger for changes task goal requirement todo checklist problem adjustment retroactive spec document current state implementation problem that needs spec prototype mvp test implementation note idea impulse spec feedback spec request noted while looking through all issues as it contains to grow it will be useful to have a label to differentiate between those similar to kind feature and kind bug in the engineering repositories the list above can be used to extract common topics and hopefully find a few concise groups to use in labels
1
290,939
25,107,984,940
IssuesEvent
2022-11-08 18:04:45
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
Android app crashes at startup due to IllegalArgumentException for PendingIntent
bug platform:android topic:porting topic:plugin needs testing crash
### Godot version 3.5.stable ### System information Android 12 ### Issue description The following exception is thrown at startup on Android 12 for a project with Android plugins installed and enabled: java.lang.IllegalArgumentException: ...: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. ### Steps to reproduce Clone the following project https://github.com/coner/godot-pendingintent-issue and run on an Android 12 device with plugins enabled. Use adb logcat to trace logs. ### Minimal reproduction project https://github.com/coner/godot-pendingintent-issue
1.0
Android app crashes at startup due to IllegalArgumentException for PendingIntent - ### Godot version 3.5.stable ### System information Android 12 ### Issue description The following exception is thrown at startup on Android 12 for a project with Android plugins installed and enabled: java.lang.IllegalArgumentException: ...: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. ### Steps to reproduce Clone the following project https://github.com/coner/godot-pendingintent-issue and run on an Android 12 device with plugins enabled. Use adb logcat to trace logs. ### Minimal reproduction project https://github.com/coner/godot-pendingintent-issue
non_process
android app crashes at startup due to illegalargumentexception for pendingintent godot version stable system information android issue description the following exception is thrown at startup on android for a project with android plugins installed and enabled java lang illegalargumentexception targeting s version and above requires that one of flag immutable or flag mutable be specified when creating a pendingintent steps to reproduce clone the following project and run on an android device with plugins enabled use adb logcat to trace logs minimal reproduction project
0
3,893
6,820,987,242
IssuesEvent
2017-11-07 15:31:56
WormBase/wormbase-pipeline
https://api.github.com/repos/WormBase/wormbase-pipeline
closed
?Expr_pattern - Expression_data #Qualifier text changes
MODELS Processing
There is data loss when the Text is not populated in the #Qualifier as the leaf tags are not stored as data in the conversion. Current Model: ``` ?Expr_pattern Expression_data Life_stage ?Life_stage XREF Expr_pattern #Qualifier Anatomy_term ?Anatomy_term XREF Expr_pattern #Qualifier Not_in_Life_stage ?Life_stage #Qualifier Not_in_Anatomy_term ?Anatomy_term #Qualifier #Qualifier Certain Text Uncertain Text //For faint or variable expression Partial Text //For expression of unidentified cell in a cell group Anatomy_term ?Anatomy_term //combines life stage with anatomy term in expr pattern annotation Life_stage ?Life_stage //combines life stage with anatomy term in expr pattern annotation ``` Propose removing the Text fields as they are optional ``` #Qualifier Certain Uncertain Partial //For expression of unidentified cell in a cell group Anatomy_term ?Anatomy_term //combines life stage with anatomy term in expr pattern annotation Life_stage ?Life_stage //combines life stage with anatomy term in expr pattern annotation Remark Text ```
1.0
?Expr_pattern - Expression_data #Qualifier text changes - There is data loss when the Text is not populated in the #Qualifier as the leaf tags are not stored as data in the conversion. Current Model: ``` ?Expr_pattern Expression_data Life_stage ?Life_stage XREF Expr_pattern #Qualifier Anatomy_term ?Anatomy_term XREF Expr_pattern #Qualifier Not_in_Life_stage ?Life_stage #Qualifier Not_in_Anatomy_term ?Anatomy_term #Qualifier #Qualifier Certain Text Uncertain Text //For faint or variable expression Partial Text //For expression of unidentified cell in a cell group Anatomy_term ?Anatomy_term //combines life stage with anatomy term in expr pattern annotation Life_stage ?Life_stage //combines life stage with anatomy term in expr pattern annotation ``` Propose removing the Text fields as they are optional ``` #Qualifier Certain Uncertain Partial //For expression of unidentified cell in a cell group Anatomy_term ?Anatomy_term //combines life stage with anatomy term in expr pattern annotation Life_stage ?Life_stage //combines life stage with anatomy term in expr pattern annotation Remark Text ```
process
expr pattern expression data qualifier text changes there is data loss when the text is not populated in the qualifier as the leaf tags are not stored as data in the conversion current model expr pattern expression data life stage life stage xref expr pattern qualifier anatomy term anatomy term xref expr pattern qualifier not in life stage life stage qualifier not in anatomy term anatomy term qualifier qualifier certain text uncertain text for faint or variable expression partial text for expression of unidentified cell in a cell group anatomy term anatomy term combines life stage with anatomy term in expr pattern annotation life stage life stage combines life stage with anatomy term in expr pattern annotation propose removing the text fields as they are optional qualifier certain uncertain partial for expression of unidentified cell in a cell group anatomy term anatomy term combines life stage with anatomy term in expr pattern annotation life stage life stage combines life stage with anatomy term in expr pattern annotation remark text
1
21,257
28,378,802,786
IssuesEvent
2023-04-13 00:03:48
okTurtles/group-income
https://api.github.com/repos/okTurtles/group-income
closed
Cypress tests on Travis should stop immediately upon first failure
Note:Up-for-grabs App:Frontend App:Backend Kind:Test Priority:High Note:Tooling Kind:Process
### Problem Travis uses up our credits, and if we are running the entire test suite even though there was a failure, that's a lot of credits we're wasting. We could be saving a lot of Travis credits if we had the Cypress tests stop after the first failure. ### Solution In the Travis environment only, have Cypress stop immediately after the first failure.
1.0
Cypress tests on Travis should stop immediately upon first failure - ### Problem Travis uses up our credits, and if we are running the entire test suite even though there was a failure, that's a lot of credits we're wasting. We could be saving a lot of Travis credits if we had the Cypress tests stop after the first failure. ### Solution In the Travis environment only, have Cypress stop immediately after the first failure.
process
cypress tests on travis should stop immediately upon first failure problem travis uses up our credits and if we are running the entire test suite even though there was a failure that s a lot of credits we re wasting we could be saving a lot of travis credits if we had the cypress tests stop after the first failure solution in the travis environment only have cypress stop immediately after the first failure
1
65,710
19,664,442,353
IssuesEvent
2022-01-10 20:42:11
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Room names are calculated incorrectly
T-Defect S-Minor O-Frequent
<!-- Please report security issues by email to security@matrix.org --> <!-- This is a bug report template. By following the instructions below and filling out the sections with your information, you will help the us to get all the necessary data to fix your issue. You can also preview your report before submitting it. You may remove sections that aren't relevant to your particular case. Text between <!-- and --​> marks will be invisible in the report. --> ### Description ``` Alright, that looks like a riot-web bug, then. They are not following the spec by not ignoring alt_aliases ``` https://github.com/Sorunome/mx-puppet-slack/issues/50 https://github.com/Sorunome/mx-puppet-slack/issues/72 ### Steps to reproduce - / Describe how what happens differs from what you expected. <!-- Please send us logs for your bug report. They're very important for bugs which are hard to reproduce. To do this, create this issue then go to your account settings and click 'Submit Debug Logs' from the Help & About tab --> Logs being sent: yes/no <!-- Include screenshots if possible: you can drag and drop images below. --> ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: web and desktop For the web app: - **Browser**: Chrome Version 83.0.4103.61 (Official Build) (64-bit) - **OS**: macOS 10.15.4 - **URL**: https://riot.trust2core.rocks/ v1.6.2 For the desktop app: - **OS**: macOS 10.15.4 - **Version**: 1.6.2
1.0
Room names are calculated incorrectly - <!-- Please report security issues by email to security@matrix.org --> <!-- This is a bug report template. By following the instructions below and filling out the sections with your information, you will help the us to get all the necessary data to fix your issue. You can also preview your report before submitting it. You may remove sections that aren't relevant to your particular case. Text between <!-- and --​> marks will be invisible in the report. --> ### Description ``` Alright, that looks like a riot-web bug, then. They are not following the spec by not ignoring alt_aliases ``` https://github.com/Sorunome/mx-puppet-slack/issues/50 https://github.com/Sorunome/mx-puppet-slack/issues/72 ### Steps to reproduce - / Describe how what happens differs from what you expected. <!-- Please send us logs for your bug report. They're very important for bugs which are hard to reproduce. To do this, create this issue then go to your account settings and click 'Submit Debug Logs' from the Help & About tab --> Logs being sent: yes/no <!-- Include screenshots if possible: you can drag and drop images below. --> ### Version information <!-- IMPORTANT: please answer the following questions, to help us narrow down the problem --> - **Platform**: web and desktop For the web app: - **Browser**: Chrome Version 83.0.4103.61 (Official Build) (64-bit) - **OS**: macOS 10.15.4 - **URL**: https://riot.trust2core.rocks/ v1.6.2 For the desktop app: - **OS**: macOS 10.15.4 - **Version**: 1.6.2
non_process
room names are calculated incorrectly this is a bug report template by following the instructions below and filling out the sections with your information you will help the us to get all the necessary data to fix your issue you can also preview your report before submitting it you may remove sections that aren t relevant to your particular case text between marks will be invisible in the report description alright that looks like a riot web bug then they are not following the spec by not ignoring alt aliases steps to reproduce describe how what happens differs from what you expected please send us logs for your bug report they re very important for bugs which are hard to reproduce to do this create this issue then go to your account settings and click submit debug logs from the help about tab logs being sent yes no version information platform web and desktop for the web app browser chrome version official build bit os macos url for the desktop app os macos version
0
8,808
11,908,291,219
IssuesEvent
2020-03-31 00:31:37
qgis/QGIS
https://api.github.com/repos/qgis/QGIS
closed
Attach comments to a component in model builder
Feature Request Processing
Author Name: **Magnus Nilsson** (Magnus Nilsson) Original Redmine Issue: [14518](https://issues.qgis.org/issues/14518) Redmine category:processing/modeller Assignee: Victor Olaya --- Hi I would like to see support for adding/attaching comments to any component. That would, for example, help explaining why a specific tool is used. It should be possible to move and resize it. Great for documentation purposes. I have attached a not so nice sketch of how I see it. --- - [Comment.JPG](https://issues.qgis.org/attachments/download/9725/Comment.JPG) (Magnus Nilsson)
1.0
Attach comments to a component in model builder - Author Name: **Magnus Nilsson** (Magnus Nilsson) Original Redmine Issue: [14518](https://issues.qgis.org/issues/14518) Redmine category:processing/modeller Assignee: Victor Olaya --- Hi I would like to see support for adding/attaching comments to any component. That would, for example, help explaining why a specific tool is used. It should be possible to move and resize it. Great for documentation purposes. I have attached a not so nice sketch of how I see it. --- - [Comment.JPG](https://issues.qgis.org/attachments/download/9725/Comment.JPG) (Magnus Nilsson)
process
attach comments to a component in model builder author name magnus nilsson magnus nilsson original redmine issue redmine category processing modeller assignee victor olaya hi i would like to see support for adding attaching comments to any component that would for example help explaining why a specific tool is used it should be possible to move and resize it great for documentation purposes i have attached a not so nice sketch of how i see it magnus nilsson
1
12,072
14,739,877,503
IssuesEvent
2021-01-07 08:06:01
plazi/arcadia-project
https://api.github.com/repos/plazi/arcadia-project
opened
webscraping in action: what is needed to get an example running?
Article processing implementation scraping
Dear @mguidoti @gsautter @Jo-Jo0 now that you have been doing quiet some work over the Holidays in terms of webscraping journal articles, what is still in hindering creating a life project such as EJT or journals from the MNHN Paris? There we have all the templates and thus it seems to be a perfect case to get startet?
1.0
webscraping in action: what is needed to get an example running? - Dear @mguidoti @gsautter @Jo-Jo0 now that you have been doing quiet some work over the Holidays in terms of webscraping journal articles, what is still in hindering creating a life project such as EJT or journals from the MNHN Paris? There we have all the templates and thus it seems to be a perfect case to get startet?
process
webscraping in action what is needed to get an example running dear mguidoti gsautter jo now that you have been doing quiet some work over the holidays in terms of webscraping journal articles what is still in hindering creating a life project such as ejt or journals from the mnhn paris there we have all the templates and thus it seems to be a perfect case to get startet
1
85,184
7,963,452,084
IssuesEvent
2018-07-13 17:38:38
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: timeout failed on <unknown branch>
C-test-failure O-robot
SHA: https://github.com/cockroachdb/cockroach/commits/benesch-test Parameters: Failed test: https://viewLog.html?buildId=benesch-test&tab=buildLog ``` test.go:770: test timed out (10ms) ```
1.0
roachtest: timeout failed on <unknown branch> - SHA: https://github.com/cockroachdb/cockroach/commits/benesch-test Parameters: Failed test: https://viewLog.html?buildId=benesch-test&tab=buildLog ``` test.go:770: test timed out (10ms) ```
non_process
roachtest timeout failed on sha parameters failed test test go test timed out
0
15,263
19,211,411,354
IssuesEvent
2021-12-07 02:39:39
ai0by/ai0by.github.io
https://api.github.com/repos/ai0by/ai0by.github.io
opened
多线程中的资源竞争
Gitalk /2021/12/06/Process-Thread-Competition.html
https://sbcoder.cn/2021/12/06/Process-Thread-Competition.html 资源竞争问题当我们有两个线程同时操作同一块儿内存空间时,就容易出现资源竞争问题,这种问题目前有各种各样的出现情况,但在分布式系统中,或者说多线程任务中都是需要处理的 多线程是线程阻塞通过调度器去协调处理的,那么按理说即使是多线程实际上也都是串行操作,为什么也会出现资源竞争呢? 如下图
1.0
多线程中的资源竞争 - https://sbcoder.cn/2021/12/06/Process-Thread-Competition.html 资源竞争问题当我们有两个线程同时操作同一块儿内存空间时,就容易出现资源竞争问题,这种问题目前有各种各样的出现情况,但在分布式系统中,或者说多线程任务中都是需要处理的 多线程是线程阻塞通过调度器去协调处理的,那么按理说即使是多线程实际上也都是串行操作,为什么也会出现资源竞争呢? 如下图
process
多线程中的资源竞争 资源竞争问题当我们有两个线程同时操作同一块儿内存空间时,就容易出现资源竞争问题,这种问题目前有各种各样的出现情况,但在分布式系统中,或者说多线程任务中都是需要处理的 多线程是线程阻塞通过调度器去协调处理的,那么按理说即使是多线程实际上也都是串行操作,为什么也会出现资源竞争呢? 如下图
1
22,019
30,529,922,611
IssuesEvent
2023-07-19 13:42:43
metabase/metabase
https://api.github.com/repos/metabase/metabase
closed
Serialization doesn't take into account viz settings from custom columns
Type:Bug Priority:P3 Visualization/Chart Settings Operation/Serialization .Team/QueryProcessor :hammer_and_wrench:
**Describe the bug** If you add a custom column to a question and then use a viz setting on that custom column (e.g. adding semaphores to a case statement and display these semaphores as images), the dump won't take this viz setting into account **Logs** NA **To Reproduce** 1) add a question 2) add a custom column that does a case with images, and then display these links as images 3) dump and load you'll see the links in the load, not the images **Expected behavior** Viz settings need to be respected **Screenshots/videos** Origin ![image](https://user-images.githubusercontent.com/1711649/224381501-9acf0491-060f-4d5c-989b-73e97e0b9a50.png) Destination ![image](https://user-images.githubusercontent.com/1711649/224381544-d5f56dc7-4b18-4427-bd05-2672e9fc5dde.png) **Information about your Metabase Installation:** - Metabase version: 1.45.3 **Severity** P3 **Additional context** NA
1.0
Serialization doesn't take into account viz settings from custom columns - **Describe the bug** If you add a custom column to a question and then use a viz setting on that custom column (e.g. adding semaphores to a case statement and display these semaphores as images), the dump won't take this viz setting into account **Logs** NA **To Reproduce** 1) add a question 2) add a custom column that does a case with images, and then display these links as images 3) dump and load you'll see the links in the load, not the images **Expected behavior** Viz settings need to be respected **Screenshots/videos** Origin ![image](https://user-images.githubusercontent.com/1711649/224381501-9acf0491-060f-4d5c-989b-73e97e0b9a50.png) Destination ![image](https://user-images.githubusercontent.com/1711649/224381544-d5f56dc7-4b18-4427-bd05-2672e9fc5dde.png) **Information about your Metabase Installation:** - Metabase version: 1.45.3 **Severity** P3 **Additional context** NA
process
serialization doesn t take into account viz settings from custom columns describe the bug if you add a custom column to a question and then use a viz setting on that custom column e g adding semaphores to a case statement and display these semaphores as images the dump won t take this viz setting into account logs na to reproduce add a question add a custom column that does a case with images and then display these links as images dump and load you ll see the links in the load not the images expected behavior viz settings need to be respected screenshots videos origin destination information about your metabase installation metabase version severity additional context na
1
9,002
12,111,004,592
IssuesEvent
2020-04-21 11:26:57
pydata/pandas-gbq
https://api.github.com/repos/pydata/pandas-gbq
closed
GenericGBQException may be raised when listing dataset
type: process
I saw the following error today in a Travis-CI build log when listing tables under a dataset: `'GenericGBQException: Reason: notFound, Message: Not found: Token pandas_gbq_xxx'` @tswast also experienced this in https://github.com/pydata/pandas-gbq/pull/39#issuecomment-302790335 Since the failure is intermittent we may be able to handle the 404 error from BQ in the first attempt and re-attempt the request to list tables under a dataset. I think we should raise GenericGBQException after a second attempt though and monitor for unit test failures. ``` ==================================== ERRORS ==================================== ERROR at teardown of TestToGBQIntegrationWithServiceAccountKeyPath.test_dataset_exists self = <pandas_gbq.gbq._Dataset object at 0x7f358b3736d8> def datasets(self): """ Return a list of datasets in Google BigQuery Parameters ---------- None Returns ------- list List of datasets under the specific project """ dataset_list = [] next_page_token = None first_query = True while first_query or next_page_token: first_query = False try: list_dataset_response = self.service.datasets().list( projectId=self.project_id, > pageToken=next_page_token).execute() pandas_gbq/gbq.py:1247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<googleapiclient.http.HttpRequest object at 0x7f358b352588>,) kwargs = {} @functools.wraps(wrapped) def positional_wrapper(*args, **kwargs): if len(args) > max_positional_args: plural_s = '' if max_positional_args != 1: plural_s = 's' message = ('{function}() takes at most {args_max} positional ' 'argument{plural} ({args_given} given)'.format( function=wrapped.__name__, args_max=max_positional_args, args_given=len(args), plural=plural_s)) if positional_parameters_enforcement == POSITIONAL_EXCEPTION: raise TypeError(message) elif positional_parameters_enforcement == POSITIONAL_WARNING: logger.warning(message) > return wrapped(*args, **kwargs) ../../../miniconda/envs/test-environment/lib/python3.6/site-packages/oauth2client/_helpers.py:133: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <googleapiclient.http.HttpRequest object at 0x7f358b352588> http = <google_auth_httplib2.AuthorizedHttp object at 0x7f358b378128> num_retries = 0 @util.positional(1) def execute(self, http=None, num_retries=0): """Execute the request. Args: http: httplib2.Http, an http object to be used in place of the one the HttpRequest request object was constructed with. num_retries: Integer, number of times to retry with randomized exponential backoff. If all retries fail, the raised HttpError represents the last request. If zero (default), we attempt the request only once. Returns: A deserialized object model of the response body as determined by the postproc. Raises: googleapiclient.errors.HttpError if the response was not a 2xx. httplib2.HttpLib2Error if a transport error has occured. """ if http is None: http = self.http if self.resumable: body = None while body is None: _, body = self.next_chunk(http=http, num_retries=num_retries) return body # Non-resumable case. if 'content-length' not in self.headers: self.headers['content-length'] = str(self.body_size) # If the request URI is too long then turn it into a POST request. if len(self.uri) > MAX_URI_LENGTH and self.method == 'GET': self.method = 'POST' self.headers['x-http-method-override'] = 'GET' self.headers['content-type'] = 'application/x-www-form-urlencoded' parsed = urlparse(self.uri) self.uri = urlunparse( (parsed.scheme, parsed.netloc, parsed.path, parsed.params, None, None) ) self.body = parsed.query self.headers['content-length'] = str(len(self.body)) # Handle retries for server-side errors. resp, content = _retry_request( http, num_retries, 'request', self._sleep, self._rand, str(self.uri), method=str(self.method), body=self.body, headers=self.headers) for callback in self.response_callbacks: callback(resp) if resp.status >= 300: > raise HttpError(resp, content, uri=self.uri) E googleapiclient.errors.HttpError: <HttpError 404 when requesting https://www.googleapis.com/bigquery/v2/projects/[secure]/datasets?pageToken=pandas_gbq_923881&alt=json returned "Not found: Token pandas_gbq_923881"> ../../../miniconda/envs/test-environment/lib/python3.6/site-packages/googleapiclient/http.py:840: HttpError During handling of the above exception, another exception occurred: self = <pandas_gbq.tests.test_gbq.TestToGBQIntegrationWithServiceAccountKeyPath object at 0x7f358b4293c8> method = <bound method TestToGBQIntegrationWithServiceAccountKeyPath.test_dataset_exists of <pandas_gbq.tests.test_gbq.TestToGBQIntegrationWithServiceAccountKeyPath object at 0x7f358b4293c8>> def teardown_method(self, method): # - PER-TEST FIXTURES - # put here any instructions you want to be run *AFTER* *EVERY* test is # executed. > clean_gbq_environment(self.dataset_prefix, _get_private_key_path()) pandas_gbq/tests/test_gbq.py:949: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pandas_gbq/tests/test_gbq.py:116: in clean_gbq_environment all_datasets = dataset.datasets() pandas_gbq/gbq.py:1263: in datasets self.process_http_error(ex) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ex = <HttpError 404 when requesting https://www.googleapis.com/bigquery/v2/projects/[secure]/datasets?pageToken=pandas_gbq_923881&alt=json returned "Not found: Token pandas_gbq_923881"> @staticmethod def process_http_error(ex): # See `BigQuery Troubleshooting Errors # <https://cloud.google.com/bigquery/troubleshooting-errors>`__ status = json.loads(bytes_to_str(ex.content))['error'] errors = status.get('errors', None) if errors: for error in errors: reason = error['reason'] message = error['message'] raise GenericGBQException( > "Reason: {0}, Message: {1}".format(reason, message)) E pandas_gbq.gbq.GenericGBQException: Reason: notFound, Message: Not found: Token pandas_gbq_923881 pandas_gbq/gbq.py:450: GenericGBQException ```
1.0
GenericGBQException may be raised when listing dataset - I saw the following error today in a Travis-CI build log when listing tables under a dataset: `'GenericGBQException: Reason: notFound, Message: Not found: Token pandas_gbq_xxx'` @tswast also experienced this in https://github.com/pydata/pandas-gbq/pull/39#issuecomment-302790335 Since the failure is intermittent we may be able to handle the 404 error from BQ in the first attempt and re-attempt the request to list tables under a dataset. I think we should raise GenericGBQException after a second attempt though and monitor for unit test failures. ``` ==================================== ERRORS ==================================== ERROR at teardown of TestToGBQIntegrationWithServiceAccountKeyPath.test_dataset_exists self = <pandas_gbq.gbq._Dataset object at 0x7f358b3736d8> def datasets(self): """ Return a list of datasets in Google BigQuery Parameters ---------- None Returns ------- list List of datasets under the specific project """ dataset_list = [] next_page_token = None first_query = True while first_query or next_page_token: first_query = False try: list_dataset_response = self.service.datasets().list( projectId=self.project_id, > pageToken=next_page_token).execute() pandas_gbq/gbq.py:1247: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = (<googleapiclient.http.HttpRequest object at 0x7f358b352588>,) kwargs = {} @functools.wraps(wrapped) def positional_wrapper(*args, **kwargs): if len(args) > max_positional_args: plural_s = '' if max_positional_args != 1: plural_s = 's' message = ('{function}() takes at most {args_max} positional ' 'argument{plural} ({args_given} given)'.format( function=wrapped.__name__, args_max=max_positional_args, args_given=len(args), plural=plural_s)) if positional_parameters_enforcement == POSITIONAL_EXCEPTION: raise TypeError(message) elif positional_parameters_enforcement == POSITIONAL_WARNING: logger.warning(message) > return wrapped(*args, **kwargs) ../../../miniconda/envs/test-environment/lib/python3.6/site-packages/oauth2client/_helpers.py:133: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <googleapiclient.http.HttpRequest object at 0x7f358b352588> http = <google_auth_httplib2.AuthorizedHttp object at 0x7f358b378128> num_retries = 0 @util.positional(1) def execute(self, http=None, num_retries=0): """Execute the request. Args: http: httplib2.Http, an http object to be used in place of the one the HttpRequest request object was constructed with. num_retries: Integer, number of times to retry with randomized exponential backoff. If all retries fail, the raised HttpError represents the last request. If zero (default), we attempt the request only once. Returns: A deserialized object model of the response body as determined by the postproc. Raises: googleapiclient.errors.HttpError if the response was not a 2xx. httplib2.HttpLib2Error if a transport error has occured. """ if http is None: http = self.http if self.resumable: body = None while body is None: _, body = self.next_chunk(http=http, num_retries=num_retries) return body # Non-resumable case. if 'content-length' not in self.headers: self.headers['content-length'] = str(self.body_size) # If the request URI is too long then turn it into a POST request. if len(self.uri) > MAX_URI_LENGTH and self.method == 'GET': self.method = 'POST' self.headers['x-http-method-override'] = 'GET' self.headers['content-type'] = 'application/x-www-form-urlencoded' parsed = urlparse(self.uri) self.uri = urlunparse( (parsed.scheme, parsed.netloc, parsed.path, parsed.params, None, None) ) self.body = parsed.query self.headers['content-length'] = str(len(self.body)) # Handle retries for server-side errors. resp, content = _retry_request( http, num_retries, 'request', self._sleep, self._rand, str(self.uri), method=str(self.method), body=self.body, headers=self.headers) for callback in self.response_callbacks: callback(resp) if resp.status >= 300: > raise HttpError(resp, content, uri=self.uri) E googleapiclient.errors.HttpError: <HttpError 404 when requesting https://www.googleapis.com/bigquery/v2/projects/[secure]/datasets?pageToken=pandas_gbq_923881&alt=json returned "Not found: Token pandas_gbq_923881"> ../../../miniconda/envs/test-environment/lib/python3.6/site-packages/googleapiclient/http.py:840: HttpError During handling of the above exception, another exception occurred: self = <pandas_gbq.tests.test_gbq.TestToGBQIntegrationWithServiceAccountKeyPath object at 0x7f358b4293c8> method = <bound method TestToGBQIntegrationWithServiceAccountKeyPath.test_dataset_exists of <pandas_gbq.tests.test_gbq.TestToGBQIntegrationWithServiceAccountKeyPath object at 0x7f358b4293c8>> def teardown_method(self, method): # - PER-TEST FIXTURES - # put here any instructions you want to be run *AFTER* *EVERY* test is # executed. > clean_gbq_environment(self.dataset_prefix, _get_private_key_path()) pandas_gbq/tests/test_gbq.py:949: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pandas_gbq/tests/test_gbq.py:116: in clean_gbq_environment all_datasets = dataset.datasets() pandas_gbq/gbq.py:1263: in datasets self.process_http_error(ex) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ex = <HttpError 404 when requesting https://www.googleapis.com/bigquery/v2/projects/[secure]/datasets?pageToken=pandas_gbq_923881&alt=json returned "Not found: Token pandas_gbq_923881"> @staticmethod def process_http_error(ex): # See `BigQuery Troubleshooting Errors # <https://cloud.google.com/bigquery/troubleshooting-errors>`__ status = json.loads(bytes_to_str(ex.content))['error'] errors = status.get('errors', None) if errors: for error in errors: reason = error['reason'] message = error['message'] raise GenericGBQException( > "Reason: {0}, Message: {1}".format(reason, message)) E pandas_gbq.gbq.GenericGBQException: Reason: notFound, Message: Not found: Token pandas_gbq_923881 pandas_gbq/gbq.py:450: GenericGBQException ```
process
genericgbqexception may be raised when listing dataset i saw the following error today in a travis ci build log when listing tables under a dataset genericgbqexception reason notfound message not found token pandas gbq xxx tswast also experienced this in since the failure is intermittent we may be able to handle the error from bq in the first attempt and re attempt the request to list tables under a dataset i think we should raise genericgbqexception after a second attempt though and monitor for unit test failures errors error at teardown of testtogbqintegrationwithserviceaccountkeypath test dataset exists self def datasets self return a list of datasets in google bigquery parameters none returns list list of datasets under the specific project dataset list next page token none first query true while first query or next page token first query false try list dataset response self service datasets list projectid self project id pagetoken next page token execute pandas gbq gbq py args kwargs functools wraps wrapped def positional wrapper args kwargs if len args max positional args plural s if max positional args plural s s message function takes at most args max positional argument plural args given given format function wrapped name args max max positional args args given len args plural plural s if positional parameters enforcement positional exception raise typeerror message elif positional parameters enforcement positional warning logger warning message return wrapped args kwargs miniconda envs test environment lib site packages helpers py self http num retries util positional def execute self http none num retries execute the request args http http an http object to be used in place of the one the httprequest request object was constructed with num retries integer number of times to retry with randomized exponential backoff if all retries fail the raised httperror represents the last request if zero default we attempt the request only once returns a deserialized object model of the response body as determined by the postproc raises googleapiclient errors httperror if the response was not a if a transport error has occured if http is none http self http if self resumable body none while body is none body self next chunk http http num retries num retries return body non resumable case if content length not in self headers self headers str self body size if the request uri is too long then turn it into a post request if len self uri max uri length and self method get self method post self headers get self headers application x www form urlencoded parsed urlparse self uri self uri urlunparse parsed scheme parsed netloc parsed path parsed params none none self body parsed query self headers str len self body handle retries for server side errors resp content retry request http num retries request self sleep self rand str self uri method str self method body self body headers self headers for callback in self response callbacks callback resp if resp status raise httperror resp content uri self uri e googleapiclient errors httperror miniconda envs test environment lib site packages googleapiclient http py httperror during handling of the above exception another exception occurred self method def teardown method self method per test fixtures put here any instructions you want to be run after every test is executed clean gbq environment self dataset prefix get private key path pandas gbq tests test gbq py pandas gbq tests test gbq py in clean gbq environment all datasets dataset datasets pandas gbq gbq py in datasets self process http error ex ex staticmethod def process http error ex see bigquery troubleshooting errors status json loads bytes to str ex content errors status get errors none if errors for error in errors reason error message error raise genericgbqexception reason message format reason message e pandas gbq gbq genericgbqexception reason notfound message not found token pandas gbq pandas gbq gbq py genericgbqexception
1
11,317
14,136,904,655
IssuesEvent
2020-11-10 05:30:21
arcus-azure/arcus.messaging
https://api.github.com/repos/arcus-azure/arcus.messaging
closed
Provide capability to combine message context filtering and message operations for Azure Service Bus
area:message-processing enhancement
**Is your feature request related to a problem? Please describe.** Provide the capability to combine message context filtering and message operations for Azure Service Bus which is not supported today. **Describe the solution you'd like** When using message context filtering as following: ```csharp services.AddServiceBusTopicMessagePump(topicName, subscriptionName, secretProvider => secretProvider.GetRawSecretAsync("ServiceBus_ConnectionString"), options => options.TopicSubscription = TopicSubscription.None) .WithServiceBusMessageHandler<DeviceRegistrationV2MessageHandler, DeviceRegistrationV2Message>(messageContext => messageContext.Properties["MessageType"] == MessageType.DeviceRegistrationV2.ToString()); ``` Then you cannot use operations such as `AbandonMessageAsync` with `AzureServiceBusMessageHandler`.
1.0
Provide capability to combine message context filtering and message operations for Azure Service Bus - **Is your feature request related to a problem? Please describe.** Provide the capability to combine message context filtering and message operations for Azure Service Bus which is not supported today. **Describe the solution you'd like** When using message context filtering as following: ```csharp services.AddServiceBusTopicMessagePump(topicName, subscriptionName, secretProvider => secretProvider.GetRawSecretAsync("ServiceBus_ConnectionString"), options => options.TopicSubscription = TopicSubscription.None) .WithServiceBusMessageHandler<DeviceRegistrationV2MessageHandler, DeviceRegistrationV2Message>(messageContext => messageContext.Properties["MessageType"] == MessageType.DeviceRegistrationV2.ToString()); ``` Then you cannot use operations such as `AbandonMessageAsync` with `AzureServiceBusMessageHandler`.
process
provide capability to combine message context filtering and message operations for azure service bus is your feature request related to a problem please describe provide the capability to combine message context filtering and message operations for azure service bus which is not supported today describe the solution you d like when using message context filtering as following csharp services addservicebustopicmessagepump topicname subscriptionname secretprovider secretprovider getrawsecretasync servicebus connectionstring options options topicsubscription topicsubscription none withservicebusmessagehandler messagecontext messagecontext properties messagetype tostring then you cannot use operations such as abandonmessageasync with azureservicebusmessagehandler
1
1,231
3,769,952,484
IssuesEvent
2016-03-16 12:55:31
tdziurko/jvm-bloggers
https://api.github.com/repos/tdziurko/jvm-bloggers
closed
Create github issue and pull request templates
Process improvement
We need to introduce standards in project contribution. Scope of this task is to prepare issues and pull requests templates that helps contributors verify that they're submitting well-formed pull requests and opening useful issues. For more details please see https://help.github.com/articles/helping-people-contribute-to-your-project/
1.0
Create github issue and pull request templates - We need to introduce standards in project contribution. Scope of this task is to prepare issues and pull requests templates that helps contributors verify that they're submitting well-formed pull requests and opening useful issues. For more details please see https://help.github.com/articles/helping-people-contribute-to-your-project/
process
create github issue and pull request templates we need to introduce standards in project contribution scope of this task is to prepare issues and pull requests templates that helps contributors verify that they re submitting well formed pull requests and opening useful issues for more details please see
1
18,922
3,734,406,963
IssuesEvent
2016-03-08 06:41:42
kumulsoft/Fixed-Assets
https://api.github.com/repos/kumulsoft/Fixed-Assets
closed
Asset Transactions - Grid Page - Enhancement
enhancement Fixed HIGH Ready for testing
Remove the 'Trans Detail' column to give space to add two new columns 'Centre and Custodian) ![image](https://cloud.githubusercontent.com/assets/10192106/13310137/232bdbf2-dbcf-11e5-95e7-169430324517.png)
1.0
Asset Transactions - Grid Page - Enhancement - Remove the 'Trans Detail' column to give space to add two new columns 'Centre and Custodian) ![image](https://cloud.githubusercontent.com/assets/10192106/13310137/232bdbf2-dbcf-11e5-95e7-169430324517.png)
non_process
asset transactions grid page enhancement remove the trans detail column to give space to add two new columns centre and custodian
0
386,148
26,669,342,190
IssuesEvent
2023-01-26 08:51:32
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
opened
Add more "Don't Do This" content to the manual
T: Enhancement C: Documentation P: Medium E: All Editions
jOOQ 3.17 added a *"Don't Do This"* section to the manual (https://github.com/jOOQ/jOOQ/issues/13410, amended in 3.18: #13423). This is an epic task that will be continued in every minor release. ### SQL antipatterns **Rejected:** ### jOOQ antipatterns The list will be amended
1.0
Add more "Don't Do This" content to the manual - jOOQ 3.17 added a *"Don't Do This"* section to the manual (https://github.com/jOOQ/jOOQ/issues/13410, amended in 3.18: #13423). This is an epic task that will be continued in every minor release. ### SQL antipatterns **Rejected:** ### jOOQ antipatterns The list will be amended
non_process
add more don t do this content to the manual jooq added a don t do this section to the manual amended in this is an epic task that will be continued in every minor release sql antipatterns rejected jooq antipatterns the list will be amended
0
11,527
9,383,366,099
IssuesEvent
2019-04-05 03:03:54
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Switching to 64 bit
app-service-web/svc cxp doc-enhancement triaged
> Consider switching to 64-bit processes so you can take advantage of the additional memory available in your Web Worker role. This triggers a web app restart, so schedule accordingly. How do I do it? There is no **Platform** switch in the portal for Linux apps. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 3e26e5a4-7b72-ba7e-cfed-e31a4a8aaef9 * Version Independent ID: dc783fe3-bd1a-c25e-2b92-903595c0822e * Content: [Application performance FAQs - Azure App Service](https://docs.microsoft.com/en-us/azure/app-service/faq-availability-performance-application-issues?toc=%2fazure%2fapp-service%2fcontainers%2ftoc.json#i-see-the-message-worker-process-requested-recycle-due-to-percent-memory-limit-how-do-i-address-this-issue) * Content Source: [articles/app-service/faq-availability-performance-application-issues.md](https://github.com/Microsoft/azure-docs/blob/master/articles/app-service/faq-availability-performance-application-issues.md) * Service: **app-service-web** * GitHub Login: @genlin * Microsoft Alias: **genli**
1.0
Switching to 64 bit - > Consider switching to 64-bit processes so you can take advantage of the additional memory available in your Web Worker role. This triggers a web app restart, so schedule accordingly. How do I do it? There is no **Platform** switch in the portal for Linux apps. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 3e26e5a4-7b72-ba7e-cfed-e31a4a8aaef9 * Version Independent ID: dc783fe3-bd1a-c25e-2b92-903595c0822e * Content: [Application performance FAQs - Azure App Service](https://docs.microsoft.com/en-us/azure/app-service/faq-availability-performance-application-issues?toc=%2fazure%2fapp-service%2fcontainers%2ftoc.json#i-see-the-message-worker-process-requested-recycle-due-to-percent-memory-limit-how-do-i-address-this-issue) * Content Source: [articles/app-service/faq-availability-performance-application-issues.md](https://github.com/Microsoft/azure-docs/blob/master/articles/app-service/faq-availability-performance-application-issues.md) * Service: **app-service-web** * GitHub Login: @genlin * Microsoft Alias: **genli**
non_process
switching to bit consider switching to bit processes so you can take advantage of the additional memory available in your web worker role this triggers a web app restart so schedule accordingly how do i do it there is no platform switch in the portal for linux apps document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id cfed version independent id content content source service app service web github login genlin microsoft alias genli
0
288,413
31,861,347,635
IssuesEvent
2023-09-15 11:09:18
nidhi7598/linux-v4.19.72_CVE-2022-3564
https://api.github.com/repos/nidhi7598/linux-v4.19.72_CVE-2022-3564
opened
CVE-2023-1077 (High) detected in linuxlinux-4.19.294
Mend: dependency security vulnerability
## CVE-2023-1077 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.294</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-v4.19.72_CVE-2022-3564/commit/9ffee08efa44c7887e2babb8f304df0fa1094efb">9ffee08efa44c7887e2babb8f304df0fa1094efb</a></p> <p>Found in base branch: <b>main</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/sched/rt.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> In the Linux kernel, pick_next_rt_entity() may return a type confused entry, not detected by the BUG_ON condition, as the confused entry will not be NULL, but list_head.The buggy error condition would lead to a type confused entry with the list head,which would then be used as a type confused sched_rt_entity,causing memory corruption. <p>Publish Date: 2023-03-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-1077>CVE-2023-1077</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2023-1077">https://www.linuxkernelcves.com/cves/CVE-2023-1077</a></p> <p>Release Date: 2023-03-27</p> <p>Fix Resolution: v5.4.235,v5.10.173,v5.15.99,v6.1.16,v6.2.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2023-1077 (High) detected in linuxlinux-4.19.294 - ## CVE-2023-1077 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.19.294</b></p></summary> <p> <p>The Linux Kernel</p> <p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p> <p>Found in HEAD commit: <a href="https://github.com/nidhi7598/linux-v4.19.72_CVE-2022-3564/commit/9ffee08efa44c7887e2babb8f304df0fa1094efb">9ffee08efa44c7887e2babb8f304df0fa1094efb</a></p> <p>Found in base branch: <b>main</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/sched/rt.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> In the Linux kernel, pick_next_rt_entity() may return a type confused entry, not detected by the BUG_ON condition, as the confused entry will not be NULL, but list_head.The buggy error condition would lead to a type confused entry with the list head,which would then be used as a type confused sched_rt_entity,causing memory corruption. <p>Publish Date: 2023-03-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-1077>CVE-2023-1077</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.0</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: High - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2023-1077">https://www.linuxkernelcves.com/cves/CVE-2023-1077</a></p> <p>Release Date: 2023-03-27</p> <p>Fix Resolution: v5.4.235,v5.10.173,v5.15.99,v6.1.16,v6.2.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve high detected in linuxlinux cve high severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch main vulnerable source files kernel sched rt c vulnerability details in the linux kernel pick next rt entity may return a type confused entry not detected by the bug on condition as the confused entry will not be null but list head the buggy error condition would lead to a type confused entry with the list head which would then be used as a type confused sched rt entity causing memory corruption publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
12,101
14,740,292,872
IssuesEvent
2021-01-07 08:51:10
kdjstudios/SABillingGitlab
https://api.github.com/repos/kdjstudios/SABillingGitlab
closed
068: portland - Save Credit Card
anc-process anp-1 ant-support
In GitLab by @kdjstudios on Oct 30, 2018, 11:25 **Submitted by:** "Lettice Ross" <lettice.ross@answernet.com> **Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/5969200 **Server:** Internal **Client/Site:** Portland **Account:** AA2608 **Issue:** I’m sending this email in regards to the future in sab for saving credit cards. I don’t have the check box to save credit card on my sab as an option. If someone can please assist.
1.0
068: portland - Save Credit Card - In GitLab by @kdjstudios on Oct 30, 2018, 11:25 **Submitted by:** "Lettice Ross" <lettice.ross@answernet.com> **Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/5969200 **Server:** Internal **Client/Site:** Portland **Account:** AA2608 **Issue:** I’m sending this email in regards to the future in sab for saving credit cards. I don’t have the check box to save credit card on my sab as an option. If someone can please assist.
process
portland save credit card in gitlab by kdjstudios on oct submitted by lettice ross helpdesk server internal client site portland account issue i’m sending this email in regards to the future in sab for saving credit cards i don’t have the check box to save credit card on my sab as an option if someone can please assist
1
28,225
6,970,084,483
IssuesEvent
2017-12-11 09:00:26
Yoast/wpseo-news
https://api.github.com/repos/Yoast/wpseo-news
closed
Sitemap Is Not Sortable / 404 error on jquery.tablesorter.min.js
code-review support
Wrong URL here: https://github.com/Yoast/wpseo-news/blob/dbf495972772d9fc00c89dd08bdacff245b03294/assets/xml-news-sitemap-xsl.php#L19 Replace `js/jquery.tablesorter.min.js` with `js/dist/jquery.tablesorter.min.js` Manually modified the file in my demo site. The error went away and the table is sortable.
1.0
Sitemap Is Not Sortable / 404 error on jquery.tablesorter.min.js - Wrong URL here: https://github.com/Yoast/wpseo-news/blob/dbf495972772d9fc00c89dd08bdacff245b03294/assets/xml-news-sitemap-xsl.php#L19 Replace `js/jquery.tablesorter.min.js` with `js/dist/jquery.tablesorter.min.js` Manually modified the file in my demo site. The error went away and the table is sortable.
non_process
sitemap is not sortable error on jquery tablesorter min js wrong url here replace js jquery tablesorter min js with js dist jquery tablesorter min js manually modified the file in my demo site the error went away and the table is sortable
0
7,693
10,779,982,667
IssuesEvent
2019-11-04 11:54:12
threefoldtech/home
https://api.github.com/repos/threefoldtech/home
closed
Research Tarantool for Rivine
process_wontfix state_blocked type_story
Currently we are using BoltDB for Rivine, we might want to switch to Tarantool.
1.0
Research Tarantool for Rivine - Currently we are using BoltDB for Rivine, we might want to switch to Tarantool.
process
research tarantool for rivine currently we are using boltdb for rivine we might want to switch to tarantool
1
14,332
17,364,889,207
IssuesEvent
2021-07-30 05:22:03
googleapis/google-cloud-dotnet
https://api.github.com/repos/googleapis/google-cloud-dotnet
opened
Manual dependency updates required
type: process
Things Renovate found that need manual fixes: - Bigtable client generator has a very outdated gRPC dependency - PubSub test uses old Google.Api.Gax.Testing - Update Google.Apis to 1.53.0
1.0
Manual dependency updates required - Things Renovate found that need manual fixes: - Bigtable client generator has a very outdated gRPC dependency - PubSub test uses old Google.Api.Gax.Testing - Update Google.Apis to 1.53.0
process
manual dependency updates required things renovate found that need manual fixes bigtable client generator has a very outdated grpc dependency pubsub test uses old google api gax testing update google apis to
1
10,120
13,044,162,252
IssuesEvent
2020-07-29 03:47:31
tikv/tikv
https://api.github.com/repos/tikv/tikv
closed
UCP: Migrate scalar function `Date` from TiDB
challenge-program-2 component/coprocessor difficulty/easy sig/coprocessor
## Description Port the scalar function `Date` from TiDB to coprocessor. ## Score * 50 ## Mentor(s) * @andylokandy ## Recommended Skills * Rust programming ## Learning Materials Already implemented expressions ported from TiDB - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr) - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
2.0
UCP: Migrate scalar function `Date` from TiDB - ## Description Port the scalar function `Date` from TiDB to coprocessor. ## Score * 50 ## Mentor(s) * @andylokandy ## Recommended Skills * Rust programming ## Learning Materials Already implemented expressions ported from TiDB - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr) - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
process
ucp migrate scalar function date from tidb description port the scalar function date from tidb to coprocessor score mentor s andylokandy recommended skills rust programming learning materials already implemented expressions ported from tidb
1
758,196
26,546,023,874
IssuesEvent
2023-01-20 00:19:11
apache/incubator-devlake
https://api.github.com/repos/apache/incubator-devlake
closed
[Feature][Framework] StarRocks as Storage PoC
type/feature-request priority/low Stale
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-devlake/issues?q=is%3Aissue) and found no similar feature requirement. ### Description Follow up #2538 to create a PoC ### Use case _No response_ ### Related issues _No response_ ### Are you willing to submit a PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
1.0
[Feature][Framework] StarRocks as Storage PoC - ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-devlake/issues?q=is%3Aissue) and found no similar feature requirement. ### Description Follow up #2538 to create a PoC ### Use case _No response_ ### Related issues _No response_ ### Are you willing to submit a PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
non_process
starrocks as storage poc search before asking i had searched in the and found no similar feature requirement description follow up to create a poc use case no response related issues no response are you willing to submit a pr yes i am willing to submit a pr code of conduct i agree to follow this project s
0
413,011
12,059,203,294
IssuesEvent
2020-04-15 18:50:52
gabrieldluca/twu-biblioteca-gabrieldluca
https://api.github.com/repos/gabrieldluca/twu-biblioteca-gabrieldluca
closed
Checkout a book
Priority: Critical Type: Feature
## User Story > **As** a librarian > **I want** customers to be able to check-out a book > **So that** I can prepare the book for collection ## Additional Notes Checked out books should not appear in the list of all library books ## Dependencies - [x] #4
1.0
Checkout a book - ## User Story > **As** a librarian > **I want** customers to be able to check-out a book > **So that** I can prepare the book for collection ## Additional Notes Checked out books should not appear in the list of all library books ## Dependencies - [x] #4
non_process
checkout a book user story as a librarian i want customers to be able to check out a book so that i can prepare the book for collection additional notes checked out books should not appear in the list of all library books dependencies
0
10,693
13,489,700,520
IssuesEvent
2020-09-11 14:12:16
googleapis/google-api-go-client
https://api.github.com/repos/googleapis/google-api-go-client
closed
all: regen PRs should not need to be manually updated
type: process
For some reason our last couple of nightly regens are adding a dep to our `go.mod` file that is not really needed. Example #589. I have manually ran `go mod tidy` on the PR to fix it. Let's figure out why this is happening all of the sudden.
1.0
all: regen PRs should not need to be manually updated - For some reason our last couple of nightly regens are adding a dep to our `go.mod` file that is not really needed. Example #589. I have manually ran `go mod tidy` on the PR to fix it. Let's figure out why this is happening all of the sudden.
process
all regen prs should not need to be manually updated for some reason our last couple of nightly regens are adding a dep to our go mod file that is not really needed example i have manually ran go mod tidy on the pr to fix it let s figure out why this is happening all of the sudden
1
9,162
12,218,979,779
IssuesEvent
2020-05-01 20:35:04
GEOS-ESM/GEOSldas
https://api.github.com/repos/GEOS-ESM/GEOSldas
opened
add consistency checks of HISTORY.rc selections
0-diff pre-processing
Add the following consistency checks of HISTORY.rc selections to pre-processing: 1. Monthly-mean output is generated in post-processing for resource parameter `POSTPROC_HIST>0` (formerly `MONTHLY_OUTPUT>0`). Monthly-mean values are accurate **only** if `ref_time` is `000000` in `HISTORY.rc`. Currently, there is only a comment in `GEOSldas_LDAS.rc` to this effect. **Add a consistency check** that verifies that for `POSTPROC_HIST>0` all `ref_time` entries are `000000` in `HISTORY.rc`. Exit script and stop pre-processing if inputs are found to be inconsistent. 2. Owing to limitations in MAPL, HISTORY output in grid space (2d) does not yet work when running GEOSldas on EASE grid tiles. Currently, there is only a comment in the (fairly outdated) [GEOSldas tutorial](https://github.com/GEOS-ESM/GEOSldas/blob/master/doc/GEOSldas-tutorial.pptx). **Add a consistency check** that verifies that output is in tile space (1d) whenever GEOSldas runs on EASE grid tiles. Exit script and stop pre-processing if inputs are found to be inconsistent. cc: @gmao-jkolassa
1.0
add consistency checks of HISTORY.rc selections - Add the following consistency checks of HISTORY.rc selections to pre-processing: 1. Monthly-mean output is generated in post-processing for resource parameter `POSTPROC_HIST>0` (formerly `MONTHLY_OUTPUT>0`). Monthly-mean values are accurate **only** if `ref_time` is `000000` in `HISTORY.rc`. Currently, there is only a comment in `GEOSldas_LDAS.rc` to this effect. **Add a consistency check** that verifies that for `POSTPROC_HIST>0` all `ref_time` entries are `000000` in `HISTORY.rc`. Exit script and stop pre-processing if inputs are found to be inconsistent. 2. Owing to limitations in MAPL, HISTORY output in grid space (2d) does not yet work when running GEOSldas on EASE grid tiles. Currently, there is only a comment in the (fairly outdated) [GEOSldas tutorial](https://github.com/GEOS-ESM/GEOSldas/blob/master/doc/GEOSldas-tutorial.pptx). **Add a consistency check** that verifies that output is in tile space (1d) whenever GEOSldas runs on EASE grid tiles. Exit script and stop pre-processing if inputs are found to be inconsistent. cc: @gmao-jkolassa
process
add consistency checks of history rc selections add the following consistency checks of history rc selections to pre processing monthly mean output is generated in post processing for resource parameter postproc hist formerly monthly output monthly mean values are accurate only if ref time is in history rc currently there is only a comment in geosldas ldas rc to this effect add a consistency check that verifies that for postproc hist all ref time entries are in history rc exit script and stop pre processing if inputs are found to be inconsistent owing to limitations in mapl history output in grid space does not yet work when running geosldas on ease grid tiles currently there is only a comment in the fairly outdated add a consistency check that verifies that output is in tile space whenever geosldas runs on ease grid tiles exit script and stop pre processing if inputs are found to be inconsistent cc gmao jkolassa
1
194,110
6,891,622,093
IssuesEvent
2017-11-22 17:41:24
arfc/publications
https://api.github.com/repos/arfc/publications
closed
Moltres init: discuss issue of open-source nature of Moltres being thwarted by neutronics laws
Comp:Analysis Priority:1-Critical Status:4-In Progress Type:Docs
Address this: > Concerning the openness of the code and the possibility to contribute to it, it should be noted that codes solving for neutron transport can be subject to export restrictions (following their potential dual use), and in principle all contributors should get an export control authorization from their own country. The authors are not strictly required to change the manuscript, but they may consider mentioning the fact that the openness of a nuclear code can be somewhat thwarted by national and international laws. We could possibly find and cite some laws relevant to why neutronics code may typically not be open source. In addition, since the code only models diffusion neutronics, the updated paper could argue that authorities won't bring down the export-control hammer due to its relatively easily-implemented, low order nature.
1.0
Moltres init: discuss issue of open-source nature of Moltres being thwarted by neutronics laws - Address this: > Concerning the openness of the code and the possibility to contribute to it, it should be noted that codes solving for neutron transport can be subject to export restrictions (following their potential dual use), and in principle all contributors should get an export control authorization from their own country. The authors are not strictly required to change the manuscript, but they may consider mentioning the fact that the openness of a nuclear code can be somewhat thwarted by national and international laws. We could possibly find and cite some laws relevant to why neutronics code may typically not be open source. In addition, since the code only models diffusion neutronics, the updated paper could argue that authorities won't bring down the export-control hammer due to its relatively easily-implemented, low order nature.
non_process
moltres init discuss issue of open source nature of moltres being thwarted by neutronics laws address this concerning the openness of the code and the possibility to contribute to it it should be noted that codes solving for neutron transport can be subject to export restrictions following their potential dual use and in principle all contributors should get an export control authorization from their own country the authors are not strictly required to change the manuscript but they may consider mentioning the fact that the openness of a nuclear code can be somewhat thwarted by national and international laws we could possibly find and cite some laws relevant to why neutronics code may typically not be open source in addition since the code only models diffusion neutronics the updated paper could argue that authorities won t bring down the export control hammer due to its relatively easily implemented low order nature
0
164,311
6,223,980,048
IssuesEvent
2017-07-10 13:19:18
OWASP/BLT
https://api.github.com/repos/OWASP/BLT
closed
Make a new page for creating issues.
frontend in-progress priority: medium
Make sure it works with the chrome extension. Also have an automated test to make sure it works.
1.0
Make a new page for creating issues. - Make sure it works with the chrome extension. Also have an automated test to make sure it works.
non_process
make a new page for creating issues make sure it works with the chrome extension also have an automated test to make sure it works
0
363,005
25,403,318,081
IssuesEvent
2022-11-22 13:41:34
ProjectEvergreen/wcc
https://api.github.com/repos/ProjectEvergreen/wcc
closed
inline event handling
documentation feature question
## Type of Change <!-- Delete what does not apply --> - Documentation / Website ## Summary Want to make sure that this pattern applies (assuming it should) to help ensure declarative event handling, e.g. ```js class Header extends HTMLElement { connectedCallback() { if (!this.shadowRoot) { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = this.render(); } } toggle() { alert('this.toggle clicked!'); } render() { return ` <header class="header"> <button onClick="${this.toggle()}">Button To Click</button> </header> `; } } export { Header }; customElements.define('wcc-header', Header); ``` ## Details The current example looks like this, which is more imperative. ```js class Header extends HTMLElement { connectedCallback() { if (!this.shadowRoot) { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = this.render(); } else { const button = this.shadowRoot.querySelector('button'); button.addEventListener('click', this.toggle); } } toggle() { alert('this.toggle clicked!'); } render() { return ` <header class="header"> <button>Button To Click</button> </header> `; } } export { Header }; customElements.define('wcc-header', Header); ``` ---- That said, I'm not sure if one is more or less useful for something like #11 ? Because if we want to strip out "dead code", which one is easer to detect via AST?
1.0
inline event handling - ## Type of Change <!-- Delete what does not apply --> - Documentation / Website ## Summary Want to make sure that this pattern applies (assuming it should) to help ensure declarative event handling, e.g. ```js class Header extends HTMLElement { connectedCallback() { if (!this.shadowRoot) { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = this.render(); } } toggle() { alert('this.toggle clicked!'); } render() { return ` <header class="header"> <button onClick="${this.toggle()}">Button To Click</button> </header> `; } } export { Header }; customElements.define('wcc-header', Header); ``` ## Details The current example looks like this, which is more imperative. ```js class Header extends HTMLElement { connectedCallback() { if (!this.shadowRoot) { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = this.render(); } else { const button = this.shadowRoot.querySelector('button'); button.addEventListener('click', this.toggle); } } toggle() { alert('this.toggle clicked!'); } render() { return ` <header class="header"> <button>Button To Click</button> </header> `; } } export { Header }; customElements.define('wcc-header', Header); ``` ---- That said, I'm not sure if one is more or less useful for something like #11 ? Because if we want to strip out "dead code", which one is easer to detect via AST?
non_process
inline event handling type of change documentation website summary want to make sure that this pattern applies assuming it should to help ensure declarative event handling e g js class header extends htmlelement connectedcallback if this shadowroot this attachshadow mode open this shadowroot innerhtml this render toggle alert this toggle clicked render return button to click export header customelements define wcc header header details the current example looks like this which is more imperative js class header extends htmlelement connectedcallback if this shadowroot this attachshadow mode open this shadowroot innerhtml this render else const button this shadowroot queryselector button button addeventlistener click this toggle toggle alert this toggle clicked render return button to click export header customelements define wcc header header that said i m not sure if one is more or less useful for something like because if we want to strip out dead code which one is easer to detect via ast
0
21,326
28,963,912,152
IssuesEvent
2023-05-10 06:19:57
sap-tutorials/sap-build-process-automation
https://api.github.com/repos/sap-tutorials/sap-build-process-automation
closed
Create Action Project in Lobby
tutorial:spa-process-action-create
Tutorials: https://developers.sap.com/tutorials/spa-process-action-create.html -------------------------- Hi team, I was trying out this tutorial during L2W, and when I created an action project and went to "Test" tab, there're two Test buttons. But after release and publish, the test button at the bottom is gone. Can you investigate and see if it's a bug? Thank you! ![MicrosoftTeams-image](https://user-images.githubusercontent.com/100930555/223679900-4a9a3b84-62a7-4b3c-b11f-147fc3d2e39b.png)
1.0
Create Action Project in Lobby - Tutorials: https://developers.sap.com/tutorials/spa-process-action-create.html -------------------------- Hi team, I was trying out this tutorial during L2W, and when I created an action project and went to "Test" tab, there're two Test buttons. But after release and publish, the test button at the bottom is gone. Can you investigate and see if it's a bug? Thank you! ![MicrosoftTeams-image](https://user-images.githubusercontent.com/100930555/223679900-4a9a3b84-62a7-4b3c-b11f-147fc3d2e39b.png)
process
create action project in lobby tutorials hi team i was trying out this tutorial during and when i created an action project and went to test tab there re two test buttons but after release and publish the test button at the bottom is gone can you investigate and see if it s a bug thank you
1
16,989
22,351,369,320
IssuesEvent
2022-06-15 12:22:25
frgfm/torch-scan
https://api.github.com/repos/frgfm/torch-scan
closed
Negative RAM usage
type: bug module: process
### Bug description I have been following [DCGAN Tutorial with PyTorch](https://pytorch.org/tutorials/beginner/dcgan_faces_tutorial.html), and ran in my jupyter environment. I tried to show summary ant I got the result with negative RAM usage like `Framework & CUDA overhead: -390.33 Mb` I have 4 GPUs but use only 1 GPU for this script by config: ``` os.environ['CUDA_LAUNCH_BLOCKING'] = "1" os.environ["CUDA_VISIBLE_DEVICES"] = "0" ``` here is the define of model. ```py nz = 200 # Size of z latent vector ngf = 64 # Size of feature maps in generator nc = 3 # Number of channels in the training images. class Generator(nn.Module): def __init__(self): super(Generator, self).__init__() self.main = nn.Sequential( nn.ConvTranspose2d(nz, ngf * 8, 4, 1, 0, bias=False), nn.BatchNorm2d(ngf * 8), nn.ReLU(True), nn.ConvTranspose2d(ngf * 8, ngf * 4, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf * 4), nn.ReLU(True), nn.ConvTranspose2d(ngf * 4, ngf * 2, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf * 2), nn.ReLU(True), nn.ConvTranspose2d(ngf * 2, ngf, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf), nn.ReLU(True), nn.ConvTranspose2d(ngf, nc, 4, 2, 1, bias=False), nn.Tanh() ) def forward(self, input): return self.main(input) ``` ### Code snippet to reproduce the bug the result of `summary(netG, (nz, 1, 1))`: ``` __________________________________________________________________________________________ Layer Type Output Shape Param # ========================================================================================== generator Generator (-1, 3, 64, 64) 0 ├─main Sequential (-1, 3, 64, 64) 0 | └─0 ConvTranspose2d (-1, 512, 4, 4) 1,638,400 | └─1 BatchNorm2d (-1, 512, 4, 4) 2,049 | └─2 ReLU (-1, 512, 4, 4) 0 | └─3 ConvTranspose2d (-1, 256, 8, 8) 2,097,152 | └─4 BatchNorm2d (-1, 256, 8, 8) 1,025 | └─5 ReLU (-1, 256, 8, 8) 0 | └─6 ConvTranspose2d (-1, 128, 16, 16) 524,288 | └─7 BatchNorm2d (-1, 128, 16, 16) 513 | └─8 ReLU (-1, 128, 16, 16) 0 | └─9 ConvTranspose2d (-1, 64, 32, 32) 131,072 | └─10 BatchNorm2d (-1, 64, 32, 32) 257 | └─11 ReLU (-1, 64, 32, 32) 0 | └─12 ConvTranspose2d (-1, 3, 64, 64) 3,072 | └─13 Tanh (-1, 3, 64, 64) 0 ========================================================================================== Trainable params: 4,395,904 Non-trainable params: 0 Total params: 4,395,904 ------------------------------------------------------------------------------------------ Model size (params + buffers): 16.78 Mb Framework & CUDA overhead: -390.33 Mb Total RAM usage: -373.56 Mb ------------------------------------------------------------------------------------------ Floating Point Operations on forward: 883.95 MFLOPs Multiply-Accumulations on forward: 442.07 MMACs Direct memory accesses on forward: 446.39 MDMAs __________________________________________________________________________________________ ``` and this is result for comparing with other module ([torchsummary](https://github.com/sksq96/pytorch-summary)) the result of `torchsummary.summary(netG, (nz, 1, 1))`: ``` ---------------------------------------------------------------- Layer (type) Output Shape Param # ================================================================ ConvTranspose2d-1 [-1, 512, 4, 4] 1,638,400 BatchNorm2d-2 [-1, 512, 4, 4] 1,024 ReLU-3 [-1, 512, 4, 4] 0 ConvTranspose2d-4 [-1, 256, 8, 8] 2,097,152 BatchNorm2d-5 [-1, 256, 8, 8] 512 ReLU-6 [-1, 256, 8, 8] 0 ConvTranspose2d-7 [-1, 128, 16, 16] 524,288 BatchNorm2d-8 [-1, 128, 16, 16] 256 ReLU-9 [-1, 128, 16, 16] 0 ConvTranspose2d-10 [-1, 64, 32, 32] 131,072 BatchNorm2d-11 [-1, 64, 32, 32] 128 ReLU-12 [-1, 64, 32, 32] 0 ConvTranspose2d-13 [-1, 3, 64, 64] 3,072 Tanh-14 [-1, 3, 64, 64] 0 ================================================================ Total params: 4,395,904 Trainable params: 4,395,904 Non-trainable params: 0 ---------------------------------------------------------------- Input size (MB): 0.00 Forward/backward pass size (MB): 3.00 Params size (MB): 16.77 Estimated Total Size (MB): 19.77 ---------------------------------------------------------------- ``` ### Error traceback No error message. ### Environment - TorchScan version: 0.1.1 - PyTorch version: 1.11.0+cu102 - OS: Ubuntu 18.04.5 LTS - Python version: 3.9.4 - Is CUDA available: Yes - CUDA runtime version: Could not collect - 4 GPUs - Nvidia driver version: 460.27.04 I would prefer not to share environment details, sorry for having problem with security agreement.
1.0
Negative RAM usage - ### Bug description I have been following [DCGAN Tutorial with PyTorch](https://pytorch.org/tutorials/beginner/dcgan_faces_tutorial.html), and ran in my jupyter environment. I tried to show summary ant I got the result with negative RAM usage like `Framework & CUDA overhead: -390.33 Mb` I have 4 GPUs but use only 1 GPU for this script by config: ``` os.environ['CUDA_LAUNCH_BLOCKING'] = "1" os.environ["CUDA_VISIBLE_DEVICES"] = "0" ``` here is the define of model. ```py nz = 200 # Size of z latent vector ngf = 64 # Size of feature maps in generator nc = 3 # Number of channels in the training images. class Generator(nn.Module): def __init__(self): super(Generator, self).__init__() self.main = nn.Sequential( nn.ConvTranspose2d(nz, ngf * 8, 4, 1, 0, bias=False), nn.BatchNorm2d(ngf * 8), nn.ReLU(True), nn.ConvTranspose2d(ngf * 8, ngf * 4, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf * 4), nn.ReLU(True), nn.ConvTranspose2d(ngf * 4, ngf * 2, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf * 2), nn.ReLU(True), nn.ConvTranspose2d(ngf * 2, ngf, 4, 2, 1, bias=False), nn.BatchNorm2d(ngf), nn.ReLU(True), nn.ConvTranspose2d(ngf, nc, 4, 2, 1, bias=False), nn.Tanh() ) def forward(self, input): return self.main(input) ``` ### Code snippet to reproduce the bug the result of `summary(netG, (nz, 1, 1))`: ``` __________________________________________________________________________________________ Layer Type Output Shape Param # ========================================================================================== generator Generator (-1, 3, 64, 64) 0 ├─main Sequential (-1, 3, 64, 64) 0 | └─0 ConvTranspose2d (-1, 512, 4, 4) 1,638,400 | └─1 BatchNorm2d (-1, 512, 4, 4) 2,049 | └─2 ReLU (-1, 512, 4, 4) 0 | └─3 ConvTranspose2d (-1, 256, 8, 8) 2,097,152 | └─4 BatchNorm2d (-1, 256, 8, 8) 1,025 | └─5 ReLU (-1, 256, 8, 8) 0 | └─6 ConvTranspose2d (-1, 128, 16, 16) 524,288 | └─7 BatchNorm2d (-1, 128, 16, 16) 513 | └─8 ReLU (-1, 128, 16, 16) 0 | └─9 ConvTranspose2d (-1, 64, 32, 32) 131,072 | └─10 BatchNorm2d (-1, 64, 32, 32) 257 | └─11 ReLU (-1, 64, 32, 32) 0 | └─12 ConvTranspose2d (-1, 3, 64, 64) 3,072 | └─13 Tanh (-1, 3, 64, 64) 0 ========================================================================================== Trainable params: 4,395,904 Non-trainable params: 0 Total params: 4,395,904 ------------------------------------------------------------------------------------------ Model size (params + buffers): 16.78 Mb Framework & CUDA overhead: -390.33 Mb Total RAM usage: -373.56 Mb ------------------------------------------------------------------------------------------ Floating Point Operations on forward: 883.95 MFLOPs Multiply-Accumulations on forward: 442.07 MMACs Direct memory accesses on forward: 446.39 MDMAs __________________________________________________________________________________________ ``` and this is result for comparing with other module ([torchsummary](https://github.com/sksq96/pytorch-summary)) the result of `torchsummary.summary(netG, (nz, 1, 1))`: ``` ---------------------------------------------------------------- Layer (type) Output Shape Param # ================================================================ ConvTranspose2d-1 [-1, 512, 4, 4] 1,638,400 BatchNorm2d-2 [-1, 512, 4, 4] 1,024 ReLU-3 [-1, 512, 4, 4] 0 ConvTranspose2d-4 [-1, 256, 8, 8] 2,097,152 BatchNorm2d-5 [-1, 256, 8, 8] 512 ReLU-6 [-1, 256, 8, 8] 0 ConvTranspose2d-7 [-1, 128, 16, 16] 524,288 BatchNorm2d-8 [-1, 128, 16, 16] 256 ReLU-9 [-1, 128, 16, 16] 0 ConvTranspose2d-10 [-1, 64, 32, 32] 131,072 BatchNorm2d-11 [-1, 64, 32, 32] 128 ReLU-12 [-1, 64, 32, 32] 0 ConvTranspose2d-13 [-1, 3, 64, 64] 3,072 Tanh-14 [-1, 3, 64, 64] 0 ================================================================ Total params: 4,395,904 Trainable params: 4,395,904 Non-trainable params: 0 ---------------------------------------------------------------- Input size (MB): 0.00 Forward/backward pass size (MB): 3.00 Params size (MB): 16.77 Estimated Total Size (MB): 19.77 ---------------------------------------------------------------- ``` ### Error traceback No error message. ### Environment - TorchScan version: 0.1.1 - PyTorch version: 1.11.0+cu102 - OS: Ubuntu 18.04.5 LTS - Python version: 3.9.4 - Is CUDA available: Yes - CUDA runtime version: Could not collect - 4 GPUs - Nvidia driver version: 460.27.04 I would prefer not to share environment details, sorry for having problem with security agreement.
process
negative ram usage bug description i have been following and ran in my jupyter environment i tried to show summary ant i got the result with negative ram usage like framework cuda overhead mb i have gpus but use only gpu for this script by config os environ os environ here is the define of model py nz size of z latent vector ngf size of feature maps in generator nc number of channels in the training images class generator nn module def init self super generator self init self main nn sequential nn nz ngf bias false nn ngf nn relu true nn ngf ngf bias false nn ngf nn relu true nn ngf ngf bias false nn ngf nn relu true nn ngf ngf bias false nn ngf nn relu true nn ngf nc bias false nn tanh def forward self input return self main input code snippet to reproduce the bug the result of summary netg nz layer type output shape param generator generator ├─main sequential └─ └─ └─ relu └─ └─ └─ relu └─ └─ └─ relu └─ └─ └─ relu └─ └─ tanh trainable params non trainable params total params model size params buffers mb framework cuda overhead mb total ram usage mb floating point operations on forward mflops multiply accumulations on forward mmacs direct memory accesses on forward mdmas and this is result for comparing with other module the result of torchsummary summary netg nz layer type output shape param relu relu relu relu tanh total params trainable params non trainable params input size mb forward backward pass size mb params size mb estimated total size mb error traceback no error message environment torchscan version pytorch version os ubuntu lts python version is cuda available yes cuda runtime version could not collect gpus nvidia driver version i would prefer not to share environment details sorry for having problem with security agreement
1
2,871
5,830,389,877
IssuesEvent
2017-05-08 16:42:31
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
Linux Process.WaitForExit(Infinite) takes longer than needs to
area-System.Diagnostics.Process tenet-performance
On Linux with timeout infinite Process.WaitForExit will take an average minimum time of 90ms https://gist.github.com/adamjez/521581903cac93653ab568fc4d7feda0 Meaning a max of 11 processes can be launched and waited for exit per second. Changing that to a 1ms wait and timeout check loop it takes an average of 4ms https://gist.github.com/adamjez/441e19c16a7a61c0aa518f2c7abc7222 Meaning a max of 250 processes can be launched on and waited for exit per second (x22 thoughput increase) The reason and solution for this is actually called out in the code https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Process/src/System/Diagnostics/ProcessWaitState.Unix.cs#L430-L501 But essentially it checks for exit; [sleeps for 100ms](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Process/src/System/Diagnostics/ProcessWaitState.Unix.cs#L500-L501) (is Delay but upper call is blocking) in a loop; hence the 90ms average. Either this could be resolved using the blocking OS signal as touched on in the code; or the cycle time could be reduced from 100ms. Effects driving command batching from dotnet. May effect dotnet restore->build command chaining thoughput itself? /cc @karelz @stephentoub @adamjez
1.0
Linux Process.WaitForExit(Infinite) takes longer than needs to - On Linux with timeout infinite Process.WaitForExit will take an average minimum time of 90ms https://gist.github.com/adamjez/521581903cac93653ab568fc4d7feda0 Meaning a max of 11 processes can be launched and waited for exit per second. Changing that to a 1ms wait and timeout check loop it takes an average of 4ms https://gist.github.com/adamjez/441e19c16a7a61c0aa518f2c7abc7222 Meaning a max of 250 processes can be launched on and waited for exit per second (x22 thoughput increase) The reason and solution for this is actually called out in the code https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Process/src/System/Diagnostics/ProcessWaitState.Unix.cs#L430-L501 But essentially it checks for exit; [sleeps for 100ms](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Process/src/System/Diagnostics/ProcessWaitState.Unix.cs#L500-L501) (is Delay but upper call is blocking) in a loop; hence the 90ms average. Either this could be resolved using the blocking OS signal as touched on in the code; or the cycle time could be reduced from 100ms. Effects driving command batching from dotnet. May effect dotnet restore->build command chaining thoughput itself? /cc @karelz @stephentoub @adamjez
process
linux process waitforexit infinite takes longer than needs to on linux with timeout infinite process waitforexit will take an average minimum time of meaning a max of processes can be launched and waited for exit per second changing that to a wait and timeout check loop it takes an average of meaning a max of processes can be launched on and waited for exit per second thoughput increase the reason and solution for this is actually called out in the code but essentially it checks for exit is delay but upper call is blocking in a loop hence the average either this could be resolved using the blocking os signal as touched on in the code or the cycle time could be reduced from effects driving command batching from dotnet may effect dotnet restore build command chaining thoughput itself cc karelz stephentoub adamjez
1
5,643
8,506,443,853
IssuesEvent
2018-10-30 16:35:01
GoogleCloudPlatform/cloud-opensource-java
https://api.github.com/repos/GoogleCloudPlatform/cloud-opensource-java
reopened
Log of fixes applied
process
To other projects. @patflynn suggests we may be able to link other issues from our own issue tracker? Investigate.
1.0
Log of fixes applied - To other projects. @patflynn suggests we may be able to link other issues from our own issue tracker? Investigate.
process
log of fixes applied to other projects patflynn suggests we may be able to link other issues from our own issue tracker investigate
1
142,531
21,782,314,834
IssuesEvent
2022-05-13 20:23:57
carbon-design-system/carbon-for-ibm-dotcom
https://api.github.com/repos/carbon-design-system/carbon-for-ibm-dotcom
closed
[Figma] Feature section
design design kit stretch project
Add the Feature section component to Figma kit. Remember we are only building variants for `xlg`, `md`, and `sm`. [Design spec](https://ibm.ent.box.com/folder/137684054266) [Website](https://www.ibm.com/standards/carbon/components/feature-section) **Must haves:** - [ ] Content should be flexible - the designer should be able to condense or stretch the component and the content should respond. Removing text for example should maintain the right padding automatically through auto layout. - [ ] This component uses a fluid type token for the heading. If this is not created already, create a base to help swap the header type based on breakpoint size. See `Content group` in the library. This should be tested with for `Cards`. - [ ] Use existing Figma components where possible: `Image` and `Card link`. Image can only appear in the 1:1 aspect ratio - [ ] Variant toggle for Eyebrow (can be on or off). - [ ] Variant toggle for media alignment (right or left) **Resources** - C4IBM.com Component checklist is available in the Read Me 👀 page of the Figma library - [Bases demo](https://secure.video.ibm.com/channel/23570833/playlist/641336/video/131117161) from the Figma Fridays (Episode 23) - Reference the [best practices](https://www.figma.com/file/8n9IJtHnICSydODoYl4ueW/Figma-Best-Practices?node-id=52%3A6706) from Figma guild - Info on [auto layout](https://www.figma.com/proto/RQhu2NWQVr1JDaU4mpRuZh/Figma-Exercises?node-id=422%3A2366&scaling=min-zoom&page-id=52%3A6706&starting-point-node-id=422%3A2366)
2.0
[Figma] Feature section - Add the Feature section component to Figma kit. Remember we are only building variants for `xlg`, `md`, and `sm`. [Design spec](https://ibm.ent.box.com/folder/137684054266) [Website](https://www.ibm.com/standards/carbon/components/feature-section) **Must haves:** - [ ] Content should be flexible - the designer should be able to condense or stretch the component and the content should respond. Removing text for example should maintain the right padding automatically through auto layout. - [ ] This component uses a fluid type token for the heading. If this is not created already, create a base to help swap the header type based on breakpoint size. See `Content group` in the library. This should be tested with for `Cards`. - [ ] Use existing Figma components where possible: `Image` and `Card link`. Image can only appear in the 1:1 aspect ratio - [ ] Variant toggle for Eyebrow (can be on or off). - [ ] Variant toggle for media alignment (right or left) **Resources** - C4IBM.com Component checklist is available in the Read Me 👀 page of the Figma library - [Bases demo](https://secure.video.ibm.com/channel/23570833/playlist/641336/video/131117161) from the Figma Fridays (Episode 23) - Reference the [best practices](https://www.figma.com/file/8n9IJtHnICSydODoYl4ueW/Figma-Best-Practices?node-id=52%3A6706) from Figma guild - Info on [auto layout](https://www.figma.com/proto/RQhu2NWQVr1JDaU4mpRuZh/Figma-Exercises?node-id=422%3A2366&scaling=min-zoom&page-id=52%3A6706&starting-point-node-id=422%3A2366)
non_process
feature section add the feature section component to figma kit remember we are only building variants for xlg md and sm must haves content should be flexible the designer should be able to condense or stretch the component and the content should respond removing text for example should maintain the right padding automatically through auto layout this component uses a fluid type token for the heading if this is not created already create a base to help swap the header type based on breakpoint size see content group in the library this should be tested with for cards use existing figma components where possible image and card link image can only appear in the aspect ratio variant toggle for eyebrow can be on or off variant toggle for media alignment right or left resources com component checklist is available in the read me 👀 page of the figma library from the figma fridays episode reference the from figma guild info on
0
211,545
7,202,047,398
IssuesEvent
2018-02-06 01:39:03
StrangeLoopGames/EcoIssues
https://api.github.com/repos/StrangeLoopGames/EcoIssues
opened
Workorder madness
Medium Priority
Sometimes the icons for needed resources do not properly display in workorders
1.0
Workorder madness - Sometimes the icons for needed resources do not properly display in workorders
non_process
workorder madness sometimes the icons for needed resources do not properly display in workorders
0
11,597
14,448,916,556
IssuesEvent
2020-12-08 07:11:09
eduardofrancisco1733533/4a
https://api.github.com/repos/eduardofrancisco1733533/4a
closed
fii_size_estemating_template
process dashboard
-llenado de template de estimación en process dashboard -correr el PROBE wizard
1.0
fii_size_estemating_template - -llenado de template de estimación en process dashboard -correr el PROBE wizard
process
fii size estemating template llenado de template de estimación en process dashboard correr el probe wizard
1
12,649
15,022,412,629
IssuesEvent
2021-02-01 16:55:26
prisma/prisma
https://api.github.com/repos/prisma/prisma
closed
RHEL error after updating Prisma to 2.15.0
bug/1-repro-available kind/bug process/candidate team/client topic: deployment-platform
<!-- Thanks for helping us improve Prisma! 🙏 Please follow the sections in the template and provide as much information as possible about your problem, e.g. by setting the `DEBUG="*"` environment variable and enabling additional logging output in Prisma Client. Learn more about writing proper bug reports here: https://pris.ly/d/bug-reports --> ## Bug description <!-- A clear and concise description of what the bug is. --> After updating Prisma from 2.14.0 to 2.15.0, I started getting TypeScript errors about `.prisma/client` not exporting types (but only on CI), so I thought I'd manually run `npx prisma generate` but it throws an error: ``` yarn workspace foo prisma generate yarn workspace v1.22.4 yarn run v1.22.4 $ /usr/src/app/jenkins/workspace/foo/node_modules/.bin/prisma generate Environment variables loaded from .env Prisma schema loaded from prisma/schema.prisma Error: Get config /usr/src/app/jenkins/workspace/foo/node_modules/@prisma/cli/query-engine-rhel-openssl-1.0.x: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /usr/src/app/jenkins/workspace/foo/node_modules/@prisma/cli/query-engine-rhel-openssl-1.0.x) error Command failed with exit code 1. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. error Command failed. Exit code: 1 Command: /usr/src/app/jenkins/nodejs/12.18.4/linux_x64/bin/node Arguments: /usr/src/app/jenkins/workspace/foo/bin/yarn-1.22.4.js prisma generate Directory: /usr/src/app/jenkins/workspace/foo/services/foo Output: info Visit https://yarnpkg.com/en/docs/cli/workspace for documentation about this command. ``` Locally I use Ubuntu and there's no error thrown. In the changelog I saw something about RHEL, so could be related? > We've upgraded our RHEL base image from CentOS 6 to Amazon Linux 2. CentOS 6 reached end-of-life on November 30th, 2020. This may affect machines still running Amazon Linux 1. If you run into problems with this upgrade, please don't hesitate to [reach out](https://github.com/prisma/prisma/issues/new/choose). ## How to reproduce <!-- Steps to reproduce the behavior: 1. Go to '...' 2. Change '....' 3. Run '....' 4. See error --> 1. Update Prisma from 2.14.0 to 2.15.0 2. Run `npx prisma generate` 3. See above error ## Expected behavior <!-- A clear and concise description of what you expected to happen. --> No error. ## Prisma information <!-- Your Prisma schema, Prisma Client queries, ... Do not include your database credentials when sharing your Prisma schema! --> ## Environment & setup <!-- In which environment does the problem occur --> - OS: Red Hat Enterprise Linux Server release 7.9 (Maipo) (`cat /etc/redhat-release`) - Database: MariaDB - Node.js version: 12.18.4 - Prisma version: 2.15.0. Running `prisma -v` also throws the above error. <!--[Run `prisma -v` to see your Prisma version and paste it between the ´´´]--> <!-- ``` ``` -->
1.0
RHEL error after updating Prisma to 2.15.0 - <!-- Thanks for helping us improve Prisma! 🙏 Please follow the sections in the template and provide as much information as possible about your problem, e.g. by setting the `DEBUG="*"` environment variable and enabling additional logging output in Prisma Client. Learn more about writing proper bug reports here: https://pris.ly/d/bug-reports --> ## Bug description <!-- A clear and concise description of what the bug is. --> After updating Prisma from 2.14.0 to 2.15.0, I started getting TypeScript errors about `.prisma/client` not exporting types (but only on CI), so I thought I'd manually run `npx prisma generate` but it throws an error: ``` yarn workspace foo prisma generate yarn workspace v1.22.4 yarn run v1.22.4 $ /usr/src/app/jenkins/workspace/foo/node_modules/.bin/prisma generate Environment variables loaded from .env Prisma schema loaded from prisma/schema.prisma Error: Get config /usr/src/app/jenkins/workspace/foo/node_modules/@prisma/cli/query-engine-rhel-openssl-1.0.x: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by /usr/src/app/jenkins/workspace/foo/node_modules/@prisma/cli/query-engine-rhel-openssl-1.0.x) error Command failed with exit code 1. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. error Command failed. Exit code: 1 Command: /usr/src/app/jenkins/nodejs/12.18.4/linux_x64/bin/node Arguments: /usr/src/app/jenkins/workspace/foo/bin/yarn-1.22.4.js prisma generate Directory: /usr/src/app/jenkins/workspace/foo/services/foo Output: info Visit https://yarnpkg.com/en/docs/cli/workspace for documentation about this command. ``` Locally I use Ubuntu and there's no error thrown. In the changelog I saw something about RHEL, so could be related? > We've upgraded our RHEL base image from CentOS 6 to Amazon Linux 2. CentOS 6 reached end-of-life on November 30th, 2020. This may affect machines still running Amazon Linux 1. If you run into problems with this upgrade, please don't hesitate to [reach out](https://github.com/prisma/prisma/issues/new/choose). ## How to reproduce <!-- Steps to reproduce the behavior: 1. Go to '...' 2. Change '....' 3. Run '....' 4. See error --> 1. Update Prisma from 2.14.0 to 2.15.0 2. Run `npx prisma generate` 3. See above error ## Expected behavior <!-- A clear and concise description of what you expected to happen. --> No error. ## Prisma information <!-- Your Prisma schema, Prisma Client queries, ... Do not include your database credentials when sharing your Prisma schema! --> ## Environment & setup <!-- In which environment does the problem occur --> - OS: Red Hat Enterprise Linux Server release 7.9 (Maipo) (`cat /etc/redhat-release`) - Database: MariaDB - Node.js version: 12.18.4 - Prisma version: 2.15.0. Running `prisma -v` also throws the above error. <!--[Run `prisma -v` to see your Prisma version and paste it between the ´´´]--> <!-- ``` ``` -->
process
rhel error after updating prisma to thanks for helping us improve prisma 🙏 please follow the sections in the template and provide as much information as possible about your problem e g by setting the debug environment variable and enabling additional logging output in prisma client learn more about writing proper bug reports here bug description after updating prisma from to i started getting typescript errors about prisma client not exporting types but only on ci so i thought i d manually run npx prisma generate but it throws an error yarn workspace foo prisma generate yarn workspace yarn run usr src app jenkins workspace foo node modules bin prisma generate environment variables loaded from env prisma schema loaded from prisma schema prisma error get config usr src app jenkins workspace foo node modules prisma cli query engine rhel openssl x libc so version glibc not found required by usr src app jenkins workspace foo node modules prisma cli query engine rhel openssl x error command failed with exit code info visit for documentation about this command error command failed exit code command usr src app jenkins nodejs linux bin node arguments usr src app jenkins workspace foo bin yarn js prisma generate directory usr src app jenkins workspace foo services foo output info visit for documentation about this command locally i use ubuntu and there s no error thrown in the changelog i saw something about rhel so could be related we ve upgraded our rhel base image from centos to amazon linux centos reached end of life on november this may affect machines still running amazon linux if you run into problems with this upgrade please don t hesitate to how to reproduce steps to reproduce the behavior go to change run see error update prisma from to run npx prisma generate see above error expected behavior no error prisma information your prisma schema prisma client queries do not include your database credentials when sharing your prisma schema environment setup os red hat enterprise linux server release maipo cat etc redhat release database mariadb node js version prisma version running prisma v also throws the above error
1
13,379
15,857,097,113
IssuesEvent
2021-04-08 03:57:44
Andon-A/New-Hoard-Generator
https://api.github.com/repos/Andon-A/New-Hoard-Generator
closed
Use dynamic, system-based folders
In Process enhancement
The [appdirs library](https://pypi.org/project/appdirs/) allows usage of safe folders that aren't the program's location folder. This would allow for easier mobility of where the program's installed.
1.0
Use dynamic, system-based folders - The [appdirs library](https://pypi.org/project/appdirs/) allows usage of safe folders that aren't the program's location folder. This would allow for easier mobility of where the program's installed.
process
use dynamic system based folders the allows usage of safe folders that aren t the program s location folder this would allow for easier mobility of where the program s installed
1
41,224
6,895,863,894
IssuesEvent
2017-11-23 15:23:56
MicrosoftDX/nether
https://api.github.com/repos/MicrosoftDX/nether
closed
Improvements to facebook configuration docs
Documentation Identity
Notes from @krist00fer in #422: > I managed to follow the updated documentation, but we could do better around a few things like: > > When should I use what kind of Identity Provider and setting > Even though it's stated in the beginning of the documentation, I did not at first understand what file to change the AppID and Client Secret for. Perhaps we should always state what file we are referring to when showing settings that should/could be changed. > The referred to documentation on how to create a Facebook App goes way beyond what need to be done in order to use Facebook authentication with Nether. Perhaps we should specify what part of the referred documentation that should be followed or we could write a simplified own version.
1.0
Improvements to facebook configuration docs - Notes from @krist00fer in #422: > I managed to follow the updated documentation, but we could do better around a few things like: > > When should I use what kind of Identity Provider and setting > Even though it's stated in the beginning of the documentation, I did not at first understand what file to change the AppID and Client Secret for. Perhaps we should always state what file we are referring to when showing settings that should/could be changed. > The referred to documentation on how to create a Facebook App goes way beyond what need to be done in order to use Facebook authentication with Nether. Perhaps we should specify what part of the referred documentation that should be followed or we could write a simplified own version.
non_process
improvements to facebook configuration docs notes from in i managed to follow the updated documentation but we could do better around a few things like when should i use what kind of identity provider and setting even though it s stated in the beginning of the documentation i did not at first understand what file to change the appid and client secret for perhaps we should always state what file we are referring to when showing settings that should could be changed the referred to documentation on how to create a facebook app goes way beyond what need to be done in order to use facebook authentication with nether perhaps we should specify what part of the referred documentation that should be followed or we could write a simplified own version
0
535,044
15,681,178,576
IssuesEvent
2021-03-25 04:43:37
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
Improve logging in the migration client
Priority/Normal Type/Improvement migration-4.0.0
### Describe your problem(s) Add some adequate logging for APIM migration client.
1.0
Improve logging in the migration client - ### Describe your problem(s) Add some adequate logging for APIM migration client.
non_process
improve logging in the migration client describe your problem s add some adequate logging for apim migration client
0
8,640
11,787,805,352
IssuesEvent
2020-03-17 14:36:28
MicrosoftDocs/vsts-docs
https://api.github.com/repos/MicrosoftDocs/vsts-docs
closed
Variable group yaml variable expression in Azure Devops Pipeline
Pri1 devops-cicd-process/tech devops/prod doc-bug
I'm having difficulties with variable expression with the AzureKeyVault task. Both the azureSubscription and KeyVaultName values expressions are not being resolved to have variables in a variable Group. It works if I define those variables manually in any way in the yaml. Either in azure-pipelines.yml or in the template variables_test.yml that I import at the beginning of the stage. I read in the documentation, that variables from a variable group should be used like this $(var) but then it throws an error saying a subscription like '$(var)' does not exist. Template: azure-pipelines.yml: ``` - stage: Test variables: - template: variables_Test.yml # Template reference - group: testVariableGroup dependsOn: [] jobs: - job: Test steps: - task: AzureKeyVault@1 inputs: azureSubscription: ${{ variables.spn_kv_app }} # Service connection Name KeyVaultName: ${{ variables.keyVaultName }} SecretsFilter: '*' ``` In the logs from the staging i can see the variables being set from the variable group: ``` Job preparation parameters Variables: keyVaultName: $[ variablegroups.testVariableGroup.keyVaultName ] resourceGroupName: $[ variablegroups.testVariableGroup.resourceGroupName ] spn_cd_app: $[ variablegroups.testVariableGroup.spn_cd_app ] spn_kv_app: $[ variablegroups.testVariableGroup.spn_kv_app ] storageAccountName: $[ variablegroups.testVariableGroup.storageAccountName ] ``` One thing to note that those variables are not set to secrets in the variable group. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: dd7e0bd3-1f7d-d7b6-cc72-5ef63c31b46a * Version Independent ID: dae87abd-b73d-9120-bcdb-6097d4b40f2a * Content: [Define variables - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#feedback) * Content Source: [docs/pipelines/process/variables.md](https://github.com/MicrosoftDocs/vsts-docs/blob/master/docs/pipelines/process/variables.md) * Product: **devops** * Technology: **devops-cicd-process** * GitHub Login: @juliakm * Microsoft Alias: **jukullam**
1.0
Variable group yaml variable expression in Azure Devops Pipeline - I'm having difficulties with variable expression with the AzureKeyVault task. Both the azureSubscription and KeyVaultName values expressions are not being resolved to have variables in a variable Group. It works if I define those variables manually in any way in the yaml. Either in azure-pipelines.yml or in the template variables_test.yml that I import at the beginning of the stage. I read in the documentation, that variables from a variable group should be used like this $(var) but then it throws an error saying a subscription like '$(var)' does not exist. Template: azure-pipelines.yml: ``` - stage: Test variables: - template: variables_Test.yml # Template reference - group: testVariableGroup dependsOn: [] jobs: - job: Test steps: - task: AzureKeyVault@1 inputs: azureSubscription: ${{ variables.spn_kv_app }} # Service connection Name KeyVaultName: ${{ variables.keyVaultName }} SecretsFilter: '*' ``` In the logs from the staging i can see the variables being set from the variable group: ``` Job preparation parameters Variables: keyVaultName: $[ variablegroups.testVariableGroup.keyVaultName ] resourceGroupName: $[ variablegroups.testVariableGroup.resourceGroupName ] spn_cd_app: $[ variablegroups.testVariableGroup.spn_cd_app ] spn_kv_app: $[ variablegroups.testVariableGroup.spn_kv_app ] storageAccountName: $[ variablegroups.testVariableGroup.storageAccountName ] ``` One thing to note that those variables are not set to secrets in the variable group. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: dd7e0bd3-1f7d-d7b6-cc72-5ef63c31b46a * Version Independent ID: dae87abd-b73d-9120-bcdb-6097d4b40f2a * Content: [Define variables - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#feedback) * Content Source: [docs/pipelines/process/variables.md](https://github.com/MicrosoftDocs/vsts-docs/blob/master/docs/pipelines/process/variables.md) * Product: **devops** * Technology: **devops-cicd-process** * GitHub Login: @juliakm * Microsoft Alias: **jukullam**
process
variable group yaml variable expression in azure devops pipeline i m having difficulties with variable expression with the azurekeyvault task both the azuresubscription and keyvaultname values expressions are not being resolved to have variables in a variable group it works if i define those variables manually in any way in the yaml either in azure pipelines yml or in the template variables test yml that i import at the beginning of the stage i read in the documentation that variables from a variable group should be used like this var but then it throws an error saying a subscription like var does not exist template azure pipelines yml stage test variables template variables test yml template reference group testvariablegroup dependson jobs job test steps task azurekeyvault inputs azuresubscription variables spn kv app service connection name keyvaultname variables keyvaultname secretsfilter in the logs from the staging i can see the variables being set from the variable group job preparation parameters variables keyvaultname resourcegroupname spn cd app spn kv app storageaccountname one thing to note that those variables are not set to secrets in the variable group document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id bcdb content content source product devops technology devops cicd process github login juliakm microsoft alias jukullam
1
3,875
6,812,088,591
IssuesEvent
2017-11-06 00:16:48
learn-anything/maps
https://api.github.com/repos/learn-anything/maps
closed
best path for learning natural language processing
main study plan natural language processing
Take a look [here](https://my.mindnode.com/nFFywmhppMRxw1Z6n7QNxikisQo9q9egH5jL8PfD#171.2,5.5,2). If you think there is a better way one can learn natural language processing or you think the way the nodes are structured is wrong, please say it here. Also if you think there are some really amazing resources on natural language processing that are missing or you wish something was added, you can say it here.
1.0
best path for learning natural language processing - Take a look [here](https://my.mindnode.com/nFFywmhppMRxw1Z6n7QNxikisQo9q9egH5jL8PfD#171.2,5.5,2). If you think there is a better way one can learn natural language processing or you think the way the nodes are structured is wrong, please say it here. Also if you think there are some really amazing resources on natural language processing that are missing or you wish something was added, you can say it here.
process
best path for learning natural language processing take a look if you think there is a better way one can learn natural language processing or you think the way the nodes are structured is wrong please say it here also if you think there are some really amazing resources on natural language processing that are missing or you wish something was added you can say it here
1
4,216
7,178,394,055
IssuesEvent
2018-01-31 16:22:26
itsyouonline/identityserver
https://api.github.com/repos/itsyouonline/identityserver
closed
shouldn't be able to invite someone with non-existing email address
process_wontfix
try to invite someone using a fake email address ![image](https://user-images.githubusercontent.com/24386820/35611590-343754a0-066e-11e8-8df7-ec1cf5604c8d.png) ### expected behavior no user found matching this email address
1.0
shouldn't be able to invite someone with non-existing email address - try to invite someone using a fake email address ![image](https://user-images.githubusercontent.com/24386820/35611590-343754a0-066e-11e8-8df7-ec1cf5604c8d.png) ### expected behavior no user found matching this email address
process
shouldn t be able to invite someone with non existing email address try to invite someone using a fake email address expected behavior no user found matching this email address
1
5,997
4,111,523,959
IssuesEvent
2016-06-07 06:40:28
Virtual-Labs/image-processing-iiith
https://api.github.com/repos/Virtual-Labs/image-processing-iiith
closed
QA_Image Arithmetic_Back to experiment_smk
Category: Usability Developed By: VLEAD Release Number: 1.0 Resolved Severity: S2
Defect Description : In the "Image Arithmetic" experiment,the back to experiments link is not present in the page instead the back to experiments link should be displayed on the screen in-order to view the list of experiments by the user Actual Result : In the "Image Arithmetic" experiment,the back to experiments link is not present in the page Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Test Step Link: https://github.com/Virtual-Labs/image-processing-iiith/blob/master/test-cases/integration_test-cases/Image%20Arithmetic/Image%20Arithmetic_18_Back%20to%20experiment_smk.org Attachment: ![ip7](https://cloud.githubusercontent.com/assets/14869397/14631005/c72f8aa8-062e-11e6-8eea-49c713905b08.png)
True
QA_Image Arithmetic_Back to experiment_smk - Defect Description : In the "Image Arithmetic" experiment,the back to experiments link is not present in the page instead the back to experiments link should be displayed on the screen in-order to view the list of experiments by the user Actual Result : In the "Image Arithmetic" experiment,the back to experiments link is not present in the page Environment : OS: Windows 7, Ubuntu-16.04,Centos-6 Browsers: Firefox-42.0,Chrome-47.0,chromium-45.0 Bandwidth : 100Mbps Hardware Configuration:8GBRAM , Processor:i5 Test Step Link: https://github.com/Virtual-Labs/image-processing-iiith/blob/master/test-cases/integration_test-cases/Image%20Arithmetic/Image%20Arithmetic_18_Back%20to%20experiment_smk.org Attachment: ![ip7](https://cloud.githubusercontent.com/assets/14869397/14631005/c72f8aa8-062e-11e6-8eea-49c713905b08.png)
non_process
qa image arithmetic back to experiment smk defect description in the image arithmetic experiment the back to experiments link is not present in the page instead the back to experiments link should be displayed on the screen in order to view the list of experiments by the user actual result in the image arithmetic experiment the back to experiments link is not present in the page environment os windows ubuntu centos browsers firefox chrome chromium bandwidth hardware configuration processor test step link attachment
0
10,089
13,044,162,030
IssuesEvent
2020-07-29 03:47:28
tikv/tikv
https://api.github.com/repos/tikv/tikv
closed
UCP: Migrate scalar function `SubDatetimeAndString` from TiDB
challenge-program-2 component/coprocessor difficulty/easy sig/coprocessor
## Description Port the scalar function `SubDatetimeAndString` from TiDB to coprocessor. ## Score * 50 ## Mentor(s) * @sticnarf ## Recommended Skills * Rust programming ## Learning Materials Already implemented expressions ported from TiDB - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr) - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
2.0
UCP: Migrate scalar function `SubDatetimeAndString` from TiDB - ## Description Port the scalar function `SubDatetimeAndString` from TiDB to coprocessor. ## Score * 50 ## Mentor(s) * @sticnarf ## Recommended Skills * Rust programming ## Learning Materials Already implemented expressions ported from TiDB - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/rpn_expr) - https://github.com/tikv/tikv/tree/master/components/tidb_query/src/expr)
process
ucp migrate scalar function subdatetimeandstring from tidb description port the scalar function subdatetimeandstring from tidb to coprocessor score mentor s sticnarf recommended skills rust programming learning materials already implemented expressions ported from tidb
1