Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 757 | labels stringlengths 4 664 | body stringlengths 3 261k | index stringclasses 10 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 232k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
71,146 | 23,469,296,338 | IssuesEvent | 2022-08-16 20:00:56 | department-of-veterans-affairs/va.gov-cms | https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms | opened | Duplicate "Edit" links on Satellite table in CMS Vet Centers Dashboard | Needs refining ⭐️ Sitewide CMS 508/Accessibility 508-defect-4 | ## Description
On the Vet Center Dashboard in the CMS screen, there is a table displaying all Satellite locations. Within this table, each row has a call to action that says "Edit". This can cause duplicate links on the same page when there are multiple locations. Ideally each link should have distinct, unique text to indicate to the user where the link would direct them - "Edit Lowell Vet Center - Danvers"
## Screenshot

## Accessibility Standard
WCAG version 2.0 AAA, [Criterion 2.4.9](https://www.w3.org/WAI/WCAG21/Understanding/link-purpose-link-only.html)
## Acceptance Criteria
- [ ] UX review to determine content updates for links
- [ ] Technical review
- [ ] Change management consulted
- [ ] Implementation ticket created
### CMS Team
Please check the team(s) that will do this work.
- [ ] `Program`
- [ ] `Platform CMS Team`
- [ ] `Sitewide Crew`
- [ ] `⭐️ Sitewide CMS`
- [ ] `⭐️ Public Websites`
- [ ] `⭐️ Facilities`
- [ ] `⭐️ User support`
| 1.0 | Duplicate "Edit" links on Satellite table in CMS Vet Centers Dashboard - ## Description
On the Vet Center Dashboard in the CMS screen, there is a table displaying all Satellite locations. Within this table, each row has a call to action that says "Edit". This can cause duplicate links on the same page when there are multiple locations. Ideally each link should have distinct, unique text to indicate to the user where the link would direct them - "Edit Lowell Vet Center - Danvers"
## Screenshot

## Accessibility Standard
WCAG version 2.0 AAA, [Criterion 2.4.9](https://www.w3.org/WAI/WCAG21/Understanding/link-purpose-link-only.html)
## Acceptance Criteria
- [ ] UX review to determine content updates for links
- [ ] Technical review
- [ ] Change management consulted
- [ ] Implementation ticket created
### CMS Team
Please check the team(s) that will do this work.
- [ ] `Program`
- [ ] `Platform CMS Team`
- [ ] `Sitewide Crew`
- [ ] `⭐️ Sitewide CMS`
- [ ] `⭐️ Public Websites`
- [ ] `⭐️ Facilities`
- [ ] `⭐️ User support`
| defect | duplicate edit links on satellite table in cms vet centers dashboard description on the vet center dashboard in the cms screen there is a table displaying all satellite locations within this table each row has a call to action that says edit this can cause duplicate links on the same page when there are multiple locations ideally each link should have distinct unique text to indicate to the user where the link would direct them edit lowell vet center danvers screenshot accessibility standard wcag version aaa acceptance criteria ux review to determine content updates for links technical review change management consulted implementation ticket created cms team please check the team s that will do this work program platform cms team sitewide crew ⭐️ sitewide cms ⭐️ public websites ⭐️ facilities ⭐️ user support | 1 |
37,184 | 8,288,370,068 | IssuesEvent | 2018-09-19 11:47:50 | opencaching/opencaching-pl | https://api.github.com/repos/opencaching/opencaching-pl | closed | Attend event in future | Component_CacheLog Priority_Medium Type_Defect | Perhaps it could be possible not to show logtype(s) "Attended" and/or "Maintenance performed" for a event before event has taken place.
Only "Comment" and "Will attend" should be visible.

| 1.0 | Attend event in future - Perhaps it could be possible not to show logtype(s) "Attended" and/or "Maintenance performed" for a event before event has taken place.
Only "Comment" and "Will attend" should be visible.

| defect | attend event in future perhaps it could be possible not to show logtype s attended and or maintenance performed for a event before event has taken place only comment and will attend should be visible | 1 |
45,382 | 18,677,394,620 | IssuesEvent | 2021-10-31 19:48:09 | Azure/azure-sdk-for-python | https://api.github.com/repos/Azure/azure-sdk-for-python | closed | [BUG Bash] Bug in usage operation of CostManagementClient | question Service Attention Mgmt customer-reported needs-author-feedback | **Describe the bug**
Inside QueryFilter key `dimension` should be `dimensions`: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/costmanagement/azure-mgmt-costmanagement/azure/mgmt/costmanagement/models/_models_py3.py#L811
***Exception or Stack Trace***
```bash
ErrorResponseException Traceback (most recent call last)
<ipython-input-22-225ed7001742> in <module>
17 # Query
18 q_definition = QueryDefinition(type='ActualCost', timeframe='Custom', time_period=q_period, dataset=ds_defintion)
---> 19 results = costmanagement_client.query.usage(scope=f'/subscriptions/{SUBSCRIPTION_ID}', parameters=q_definition)
20 print(list(results.rows)[0][0])
~/.local/my_proj/lib/python3.8/site-packages/azure/mgmt/costmanagement/operations/_query_operations.py in usage(self, scope, parameters, custom_headers, raw, **operation_config)
108 response = self._client.send(request, stream=False, **operation_config)
109
--> 110 if response.status_code not in [200]:
111 raise models.ErrorResponseException(self._deserialize, response)
112
ErrorResponseException: (BadRequest) Invalid query definition: Invalid dataset filter; on a QueryFilter one and only one of and/or/not/dimension/tag can be set.
(Request ID: xx-xx-xx)
```
**To Reproduce**
Steps to reproduce the behavior:
***Code Snippet***
```python
from_ts = '2020-11-07T00:00:00+00:00'
to_ts = '2020-11-13T23:59:59+00:00'
resourceGroupName = 'my_resource'
# Aggregation
q_aggregation = QueryAggregation(name='Cost', function='Sum')
# Dimension
dim = QueryComparisonExpression(name='ResourceGroupName', operator='In', values=[resourceGroupName])
# Filter
q_filter = QueryFilter(dimension=dim, dimensions=dim)
# Query
ds_defintion = QueryDataset(aggregation={'totalCost': q_aggregation}, granularity='None', filter=q_filter)
# Date Filter
q_period = QueryTimePeriod(from_property=from_ts, to=to_ts)
# Query
q_definition = QueryDefinition(type='ActualCost', timeframe='Custom', time_period=q_period, dataset=ds_defintion)
results = costmanagement_client.query.usage(scope=f'/subscriptions/{SUBSCRIPTION_ID}', parameters=q_definition)
print(list(results.rows)[0][0])
```
**Expected behavior**
Return a number which is cost in USD
**Setup (please complete the following information):**
- Python Version: Python 3.8
- SDK Version: azure-mgmt-resource==10.2.0 (but present in master as well)
**Additional context**
I compared the portal AJAX Request and found `dimensions` rather than `dimension`
**Information Checklist**
Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report
- [x] Bug Description Added
- [x] Repro Steps Added
- [x] Setup information Added | 1.0 | [BUG Bash] Bug in usage operation of CostManagementClient - **Describe the bug**
Inside QueryFilter key `dimension` should be `dimensions`: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/costmanagement/azure-mgmt-costmanagement/azure/mgmt/costmanagement/models/_models_py3.py#L811
***Exception or Stack Trace***
```bash
ErrorResponseException Traceback (most recent call last)
<ipython-input-22-225ed7001742> in <module>
17 # Query
18 q_definition = QueryDefinition(type='ActualCost', timeframe='Custom', time_period=q_period, dataset=ds_defintion)
---> 19 results = costmanagement_client.query.usage(scope=f'/subscriptions/{SUBSCRIPTION_ID}', parameters=q_definition)
20 print(list(results.rows)[0][0])
~/.local/my_proj/lib/python3.8/site-packages/azure/mgmt/costmanagement/operations/_query_operations.py in usage(self, scope, parameters, custom_headers, raw, **operation_config)
108 response = self._client.send(request, stream=False, **operation_config)
109
--> 110 if response.status_code not in [200]:
111 raise models.ErrorResponseException(self._deserialize, response)
112
ErrorResponseException: (BadRequest) Invalid query definition: Invalid dataset filter; on a QueryFilter one and only one of and/or/not/dimension/tag can be set.
(Request ID: xx-xx-xx)
```
**To Reproduce**
Steps to reproduce the behavior:
***Code Snippet***
```python
from_ts = '2020-11-07T00:00:00+00:00'
to_ts = '2020-11-13T23:59:59+00:00'
resourceGroupName = 'my_resource'
# Aggregation
q_aggregation = QueryAggregation(name='Cost', function='Sum')
# Dimension
dim = QueryComparisonExpression(name='ResourceGroupName', operator='In', values=[resourceGroupName])
# Filter
q_filter = QueryFilter(dimension=dim, dimensions=dim)
# Query
ds_defintion = QueryDataset(aggregation={'totalCost': q_aggregation}, granularity='None', filter=q_filter)
# Date Filter
q_period = QueryTimePeriod(from_property=from_ts, to=to_ts)
# Query
q_definition = QueryDefinition(type='ActualCost', timeframe='Custom', time_period=q_period, dataset=ds_defintion)
results = costmanagement_client.query.usage(scope=f'/subscriptions/{SUBSCRIPTION_ID}', parameters=q_definition)
print(list(results.rows)[0][0])
```
**Expected behavior**
Return a number which is cost in USD
**Setup (please complete the following information):**
- Python Version: Python 3.8
- SDK Version: azure-mgmt-resource==10.2.0 (but present in master as well)
**Additional context**
I compared the portal AJAX Request and found `dimensions` rather than `dimension`
**Information Checklist**
Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report
- [x] Bug Description Added
- [x] Repro Steps Added
- [x] Setup information Added | non_defect | bug in usage operation of costmanagementclient describe the bug inside queryfilter key dimension should be dimensions exception or stack trace bash errorresponseexception traceback most recent call last in query q definition querydefinition type actualcost timeframe custom time period q period dataset ds defintion results costmanagement client query usage scope f subscriptions subscription id parameters q definition print list results rows local my proj lib site packages azure mgmt costmanagement operations query operations py in usage self scope parameters custom headers raw operation config response self client send request stream false operation config if response status code not in raise models errorresponseexception self deserialize response errorresponseexception badrequest invalid query definition invalid dataset filter on a queryfilter one and only one of and or not dimension tag can be set request id xx xx xx to reproduce steps to reproduce the behavior code snippet python from ts to ts resourcegroupname my resource aggregation q aggregation queryaggregation name cost function sum dimension dim querycomparisonexpression name resourcegroupname operator in values filter q filter queryfilter dimension dim dimensions dim query ds defintion querydataset aggregation totalcost q aggregation granularity none filter q filter date filter q period querytimeperiod from property from ts to to ts query q definition querydefinition type actualcost timeframe custom time period q period dataset ds defintion results costmanagement client query usage scope f subscriptions subscription id parameters q definition print list results rows expected behavior return a number which is cost in usd setup please complete the following information python version python sdk version azure mgmt resource but present in master as well additional context i compared the portal ajax request and found dimensions rather than dimension information checklist kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report bug description added repro steps added setup information added | 0 |
69,708 | 22,622,817,068 | IssuesEvent | 2022-06-30 08:05:36 | matrix-org/synapse | https://api.github.com/repos/matrix-org/synapse | opened | `/profile/<USER_ID>/avatar_url` returns 200 with no `avatar_url` for users lacking an avatar, contradicting the spec | A-Spec-Compliance S-Tolerable T-Defect | https://spec.matrix.org/v1.3/client-server-api/#get_matrixclientv3profileuseridavatar_url
> <h2>Responses</h2>
>
>
> Status | Description
> -- | --
> 200 | The avatar URL for this user.
> 404 | There is no avatar URL for this user or this user does not exist.
Synapse only returns 404 when the requested user doesn't exist.
(Note that the server-server API has [a different response shape](https://spec.matrix.org/v1.3/server-server-api/#get_matrixfederationv1queryprofile).)
Easy enough to fix, but needs some thought to see if clients will be affected. We could event alter the spec to match Synapse's implementation if that's what clients and other servers are expecting and doing. | 1.0 | `/profile/<USER_ID>/avatar_url` returns 200 with no `avatar_url` for users lacking an avatar, contradicting the spec - https://spec.matrix.org/v1.3/client-server-api/#get_matrixclientv3profileuseridavatar_url
> <h2>Responses</h2>
>
>
> Status | Description
> -- | --
> 200 | The avatar URL for this user.
> 404 | There is no avatar URL for this user or this user does not exist.
Synapse only returns 404 when the requested user doesn't exist.
(Note that the server-server API has [a different response shape](https://spec.matrix.org/v1.3/server-server-api/#get_matrixfederationv1queryprofile).)
Easy enough to fix, but needs some thought to see if clients will be affected. We could event alter the spec to match Synapse's implementation if that's what clients and other servers are expecting and doing. | defect | profile avatar url returns with no avatar url for users lacking an avatar contradicting the spec responses status description the avatar url for this user there is no avatar url for this user or this user does not exist synapse only returns when the requested user doesn t exist note that the server server api has easy enough to fix but needs some thought to see if clients will be affected we could event alter the spec to match synapse s implementation if that s what clients and other servers are expecting and doing | 1 |
82,016 | 31,857,321,950 | IssuesEvent | 2023-09-15 08:25:41 | cf-convention/cf-conventions | https://api.github.com/repos/cf-convention/cf-conventions | closed | Typo in end-date in example 7.12 | defect | Example 7.12 describes the winter-season 2007-2008, but the climatological end-bound was given in August 2000. This is fixed to March 2008 in the PR.
# Associated pull request
Link to associated pull request, if present.
https://github.com/cf-convention/cf-conventions/pull/448 | 1.0 | Typo in end-date in example 7.12 - Example 7.12 describes the winter-season 2007-2008, but the climatological end-bound was given in August 2000. This is fixed to March 2008 in the PR.
# Associated pull request
Link to associated pull request, if present.
https://github.com/cf-convention/cf-conventions/pull/448 | defect | typo in end date in example example describes the winter season but the climatological end bound was given in august this is fixed to march in the pr associated pull request link to associated pull request if present | 1 |
313,151 | 23,458,833,173 | IssuesEvent | 2022-08-16 11:21:51 | hashgraph/guardian | https://api.github.com/repos/hashgraph/guardian | opened | Hedera Message Formats | documentation technical task | ### Problem description
Currently, Hedera Message formats are not standardized which can create confusion
### Requirements
We need to rename and standardized Hedera Message formats so that all are read similarly and clearly understood.
### Definition of done
All naming for Message formats is consistent with the above standard
### Acceptance criteria
Message formats are set clearly and documentation to be completed
| 1.0 | Hedera Message Formats - ### Problem description
Currently, Hedera Message formats are not standardized which can create confusion
### Requirements
We need to rename and standardized Hedera Message formats so that all are read similarly and clearly understood.
### Definition of done
All naming for Message formats is consistent with the above standard
### Acceptance criteria
Message formats are set clearly and documentation to be completed
| non_defect | hedera message formats problem description currently hedera message formats are not standardized which can create confusion requirements we need to rename and standardized hedera message formats so that all are read similarly and clearly understood definition of done all naming for message formats is consistent with the above standard acceptance criteria message formats are set clearly and documentation to be completed | 0 |
416,804 | 28,101,132,381 | IssuesEvent | 2023-03-30 19:36:04 | kube-hetzner/terraform-hcloud-kube-hetzner | https://api.github.com/repos/kube-hetzner/terraform-hcloud-kube-hetzner | closed | Latest version does not work with existing cluster and running " terraform apply -auto-approve" | documentation | ### Description
Hello,
Using the latest version we get the following error. For the moment we set "version = "v1.10.9"" as workaround.
terraform apply -auto-approve
module.kube-hetzner.data.hcloud_servers.autoscaled_nodes["autoscaler"]: Reading...
module.kube-hetzner.hcloud_network.k3s: Refreshing state... [id=2568275]
module.kube-hetzner.hcloud_ssh_key.k3s[0]: Refreshing state... [id=10282504]
module.kube-hetzner.data.hcloud_image.microos_snapshot: Reading...
module.kube-hetzner.hcloud_placement_group.control_plane[0]: Refreshing state... [id=130759]
module.kube-hetzner.hcloud_firewall.k3s: Refreshing state... [id=749497]
module.kube-hetzner.data.github_release.kured[0]: Reading...
module.kube-hetzner.data.github_release.hetzner_csi[0]: Reading...
module.kube-hetzner.data.github_release.calico[0]: Reading...
module.kube-hetzner.data.github_release.hetzner_ccm[0]: Reading...
module.kube-hetzner.data.github_release.hetzner_csi[0]: Read complete after 0s [id=93149128]
module.kube-hetzner.hcloud_network_subnet.agent[0]: Refreshing state... [id=2568275-172.16.0.0/24]
module.kube-hetzner.hcloud_network_subnet.control_plane[0]: Refreshing state... [id=2568275-172.16.255.0/24]
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].random_string.identity_file: Refreshing state... [id=kn5s6zqvtjee0apl6519]
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].random_string.server: Refreshing state... [id=zbu]
module.kube-hetzner.data.github_release.calico[0]: Read complete after 1s [id=88796454]
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].data.cloudinit_config.config: Reading...
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].data.cloudinit_config.config: Read complete after 0s [id=3924688064]
module.kube-hetzner.data.github_release.hetzner_ccm[0]: Read complete after 1s [id=95988311]
module.kube-hetzner.data.hcloud_servers.autoscaled_nodes["autoscaler"]: Read complete after 1s [id=9c2b069b3ce6f4e49f55a7ced66c187022aa0fe9]
module.kube-hetzner.data.github_release.kured[0]: Read complete after 1s [id=95732764]
╷
│ Error: no image found for selector "microos-snapshot=yes"
│
│ with module.kube-hetzner.data.hcloud_image.microos_snapshot,
│ on .terraform/modules/kube-hetzner/main.tf line 6, in data "hcloud_image" "microos_snapshot":
│ 6: data "hcloud_image" "microos_snapshot" {
### Kube.tf file
```terraform
module "kube-hetzner" {
providers = {
hcloud = hcloud
}
hcloud_token = local.hcloud_token
source = "kube-hetzner/kube-hetzner/hcloud"
ssh_public_key = file("/home/***/.ssh/web_app_scaler.pub")
ssh_private_key = file("/home/***/.ssh/web_app_scaler")
network_region = "eu-central"
control_plane_nodepools = [
{
name = "control-plane-fsn1",
server_type = "cpx11",
location = "fsn1",
labels = [],
taints = [],
count = 1
}
]
agent_nodepools = [
{
name = "agent-middle",
server_type = "cx31",
location = "fsn1",
labels = [],
taints = [],
count = 0
},
{
name = "agent-large",
server_type = "cx51",
location = "fsn1",
labels = [],
taints = [],
count = 2
},
]
extra_firewall_rules = [
{
description = "For outgoing."
direction = "out"
protocol = "tcp"
port = "any"
source_ips = []
destination_ips = ["0.0.0.0/0", "::/0"]
}
]
network_ipv4_cidr = "172.16.0.0/16"
cluster_ipv4_cidr = "172.17.0.0/24"
load_balancer_type = "lb11"
load_balancer_location = "fsn1"
base_domain = "app.****.com"
disable_hetzner_csi = true
automatically_upgrade_k3s = false
automatically_upgrade_os = false
ingress_controller = "none"
cluster_name = "app-scaler"
allow_scheduling_on_control_plane = true
lb_hostname = "app.*****.com"
autoscaler_nodepools = [
{
name = "autoscaler"
server_type = "cx41"
location = "fsn1"
min_nodes = 0
max_nodes = 5
}
]
}
provider "hcloud" {
token = local.hcloud_token
}
terraform {
required_version = ">= 1.3.3"
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.35.2"
}
}
}
output "kubeconfig" {
value = module.kube-hetzner.kubeconfig
sensitive = true
}
```
### Screenshots
_No response_
### Platform
Linux | 1.0 | Latest version does not work with existing cluster and running " terraform apply -auto-approve" - ### Description
Hello,
Using the latest version we get the following error. For the moment we set "version = "v1.10.9"" as workaround.
terraform apply -auto-approve
module.kube-hetzner.data.hcloud_servers.autoscaled_nodes["autoscaler"]: Reading...
module.kube-hetzner.hcloud_network.k3s: Refreshing state... [id=2568275]
module.kube-hetzner.hcloud_ssh_key.k3s[0]: Refreshing state... [id=10282504]
module.kube-hetzner.data.hcloud_image.microos_snapshot: Reading...
module.kube-hetzner.hcloud_placement_group.control_plane[0]: Refreshing state... [id=130759]
module.kube-hetzner.hcloud_firewall.k3s: Refreshing state... [id=749497]
module.kube-hetzner.data.github_release.kured[0]: Reading...
module.kube-hetzner.data.github_release.hetzner_csi[0]: Reading...
module.kube-hetzner.data.github_release.calico[0]: Reading...
module.kube-hetzner.data.github_release.hetzner_ccm[0]: Reading...
module.kube-hetzner.data.github_release.hetzner_csi[0]: Read complete after 0s [id=93149128]
module.kube-hetzner.hcloud_network_subnet.agent[0]: Refreshing state... [id=2568275-172.16.0.0/24]
module.kube-hetzner.hcloud_network_subnet.control_plane[0]: Refreshing state... [id=2568275-172.16.255.0/24]
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].random_string.identity_file: Refreshing state... [id=kn5s6zqvtjee0apl6519]
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].random_string.server: Refreshing state... [id=zbu]
module.kube-hetzner.data.github_release.calico[0]: Read complete after 1s [id=88796454]
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].data.cloudinit_config.config: Reading...
module.kube-hetzner.module.control_planes["0-0-control-plane-fsn1"].data.cloudinit_config.config: Read complete after 0s [id=3924688064]
module.kube-hetzner.data.github_release.hetzner_ccm[0]: Read complete after 1s [id=95988311]
module.kube-hetzner.data.hcloud_servers.autoscaled_nodes["autoscaler"]: Read complete after 1s [id=9c2b069b3ce6f4e49f55a7ced66c187022aa0fe9]
module.kube-hetzner.data.github_release.kured[0]: Read complete after 1s [id=95732764]
╷
│ Error: no image found for selector "microos-snapshot=yes"
│
│ with module.kube-hetzner.data.hcloud_image.microos_snapshot,
│ on .terraform/modules/kube-hetzner/main.tf line 6, in data "hcloud_image" "microos_snapshot":
│ 6: data "hcloud_image" "microos_snapshot" {
### Kube.tf file
```terraform
module "kube-hetzner" {
providers = {
hcloud = hcloud
}
hcloud_token = local.hcloud_token
source = "kube-hetzner/kube-hetzner/hcloud"
ssh_public_key = file("/home/***/.ssh/web_app_scaler.pub")
ssh_private_key = file("/home/***/.ssh/web_app_scaler")
network_region = "eu-central"
control_plane_nodepools = [
{
name = "control-plane-fsn1",
server_type = "cpx11",
location = "fsn1",
labels = [],
taints = [],
count = 1
}
]
agent_nodepools = [
{
name = "agent-middle",
server_type = "cx31",
location = "fsn1",
labels = [],
taints = [],
count = 0
},
{
name = "agent-large",
server_type = "cx51",
location = "fsn1",
labels = [],
taints = [],
count = 2
},
]
extra_firewall_rules = [
{
description = "For outgoing."
direction = "out"
protocol = "tcp"
port = "any"
source_ips = []
destination_ips = ["0.0.0.0/0", "::/0"]
}
]
network_ipv4_cidr = "172.16.0.0/16"
cluster_ipv4_cidr = "172.17.0.0/24"
load_balancer_type = "lb11"
load_balancer_location = "fsn1"
base_domain = "app.****.com"
disable_hetzner_csi = true
automatically_upgrade_k3s = false
automatically_upgrade_os = false
ingress_controller = "none"
cluster_name = "app-scaler"
allow_scheduling_on_control_plane = true
lb_hostname = "app.*****.com"
autoscaler_nodepools = [
{
name = "autoscaler"
server_type = "cx41"
location = "fsn1"
min_nodes = 0
max_nodes = 5
}
]
}
provider "hcloud" {
token = local.hcloud_token
}
terraform {
required_version = ">= 1.3.3"
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.35.2"
}
}
}
output "kubeconfig" {
value = module.kube-hetzner.kubeconfig
sensitive = true
}
```
### Screenshots
_No response_
### Platform
Linux | non_defect | latest version does not work with existing cluster and running terraform apply auto approve description hello using the latest version we get the following error for the moment we set version as workaround terraform apply auto approve module kube hetzner data hcloud servers autoscaled nodes reading module kube hetzner hcloud network refreshing state module kube hetzner hcloud ssh key refreshing state module kube hetzner data hcloud image microos snapshot reading module kube hetzner hcloud placement group control plane refreshing state module kube hetzner hcloud firewall refreshing state module kube hetzner data github release kured reading module kube hetzner data github release hetzner csi reading module kube hetzner data github release calico reading module kube hetzner data github release hetzner ccm reading module kube hetzner data github release hetzner csi read complete after module kube hetzner hcloud network subnet agent refreshing state module kube hetzner hcloud network subnet control plane refreshing state module kube hetzner module control planes random string identity file refreshing state module kube hetzner module control planes random string server refreshing state module kube hetzner data github release calico read complete after module kube hetzner module control planes data cloudinit config config reading module kube hetzner module control planes data cloudinit config config read complete after module kube hetzner data github release hetzner ccm read complete after module kube hetzner data hcloud servers autoscaled nodes read complete after module kube hetzner data github release kured read complete after ╷ │ error no image found for selector microos snapshot yes │ │ with module kube hetzner data hcloud image microos snapshot │ on terraform modules kube hetzner main tf line in data hcloud image microos snapshot │ data hcloud image microos snapshot kube tf file terraform module kube hetzner providers hcloud hcloud hcloud token local hcloud token source kube hetzner kube hetzner hcloud ssh public key file home ssh web app scaler pub ssh private key file home ssh web app scaler network region eu central control plane nodepools name control plane server type location labels taints count agent nodepools name agent middle server type location labels taints count name agent large server type location labels taints count extra firewall rules description for outgoing direction out protocol tcp port any source ips destination ips network cidr cluster cidr load balancer type load balancer location base domain app com disable hetzner csi true automatically upgrade false automatically upgrade os false ingress controller none cluster name app scaler allow scheduling on control plane true lb hostname app com autoscaler nodepools name autoscaler server type location min nodes max nodes provider hcloud token local hcloud token terraform required version required providers hcloud source hetznercloud hcloud version output kubeconfig value module kube hetzner kubeconfig sensitive true screenshots no response platform linux | 0 |
92,100 | 8,345,474,258 | IssuesEvent | 2018-10-01 02:58:10 | thinkingmachines/linksight | https://api.github.com/repos/thinkingmachines/linksight | closed | Standardize matchers | matcher algo test | - [x] put them in a `matchers` directory
- [x] have them all extend an abstract `Matcher` class | 1.0 | Standardize matchers - - [x] put them in a `matchers` directory
- [x] have them all extend an abstract `Matcher` class | non_defect | standardize matchers put them in a matchers directory have them all extend an abstract matcher class | 0 |
74,195 | 7,388,879,235 | IssuesEvent | 2018-03-16 05:43:48 | pixelhumain/co2 | https://api.github.com/repos/pixelhumain/co2 | closed | Network - ouverture des filtres impossible | clique sur les filtres header innefficace (ex gestion de projet) | to test | 
| 1.0 | Network - ouverture des filtres impossible | clique sur les filtres header innefficace (ex gestion de projet) - 
| non_defect | network ouverture des filtres impossible clique sur les filtres header innefficace ex gestion de projet | 0 |
42,023 | 10,742,336,305 | IssuesEvent | 2019-10-29 22:18:23 | google/caliper | https://api.github.com/repos/google/caliper | closed | Caliper seems to have painfully high overhead between trials | status: accepted type=defect | ```
I have some trials which should take only about (1 second + VM startup time),
yet caliper is inching along at a rate of about 15 seconds per trial.
Can we please try to look into where all that time is going? It's quite
excruciating and will definitely hamper users' willingness to run lots of
trials of lots of parameters.
```
Original issue reported on code.google.com by `kevinb@google.com` on 29 Jan 2013 at 12:37
| 1.0 | Caliper seems to have painfully high overhead between trials - ```
I have some trials which should take only about (1 second + VM startup time),
yet caliper is inching along at a rate of about 15 seconds per trial.
Can we please try to look into where all that time is going? It's quite
excruciating and will definitely hamper users' willingness to run lots of
trials of lots of parameters.
```
Original issue reported on code.google.com by `kevinb@google.com` on 29 Jan 2013 at 12:37
| defect | caliper seems to have painfully high overhead between trials i have some trials which should take only about second vm startup time yet caliper is inching along at a rate of about seconds per trial can we please try to look into where all that time is going it s quite excruciating and will definitely hamper users willingness to run lots of trials of lots of parameters original issue reported on code google com by kevinb google com on jan at | 1 |
217,955 | 24,351,695,802 | IssuesEvent | 2022-10-03 01:10:40 | jasonjberry/CDM | https://api.github.com/repos/jasonjberry/CDM | opened | CVE-2022-42004 (Medium) detected in jackson-databind-2.10.0.jar | security vulnerability | ## CVE-2022-42004 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.10.0.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: /objectModel/Java/objectmodel/pom.xml</p>
<p>Path to vulnerable library: /er/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar</p>
<p>
Dependency Hierarchy:
- :x: **jackson-databind-2.10.0.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jasonjberry/CDM/commit/2f532047f0b9e231c1602df6a076c534fba6d73a">2f532047f0b9e231c1602df6a076c534fba6d73a</a></p>
<p>Found in base branch: <b>master</b></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>
In FasterXML jackson-databind before 2.13.4, resource exhaustion can occur because of a lack of a check in BeanDeserializer._deserializeFromArray to prevent use of deeply nested arrays. An application is vulnerable only with certain customized choices for deserialization.
<p>Publish Date: 2022-10-02
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-42004>CVE-2022-42004</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.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- 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>Release Date: 2022-10-02</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.13.4</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-2022-42004 (Medium) detected in jackson-databind-2.10.0.jar - ## CVE-2022-42004 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.10.0.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: /objectModel/Java/objectmodel/pom.xml</p>
<p>Path to vulnerable library: /er/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar,/home/wss-scanner/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar</p>
<p>
Dependency Hierarchy:
- :x: **jackson-databind-2.10.0.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/jasonjberry/CDM/commit/2f532047f0b9e231c1602df6a076c534fba6d73a">2f532047f0b9e231c1602df6a076c534fba6d73a</a></p>
<p>Found in base branch: <b>master</b></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>
In FasterXML jackson-databind before 2.13.4, resource exhaustion can occur because of a lack of a check in BeanDeserializer._deserializeFromArray to prevent use of deeply nested arrays. An application is vulnerable only with certain customized choices for deserialization.
<p>Publish Date: 2022-10-02
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-42004>CVE-2022-42004</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.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- 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>Release Date: 2022-10-02</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.13.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve medium detected in jackson databind jar cve medium severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file objectmodel java objectmodel pom xml path to vulnerable library er repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar home wss scanner repository com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy x jackson databind jar vulnerable library found in head commit a href found in base branch master vulnerability details in fasterxml jackson databind before resource exhaustion can occur because of a lack of a check in beandeserializer deserializefromarray to prevent use of deeply nested arrays an application is vulnerable only with certain customized choices for deserialization publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution com fasterxml jackson core jackson databind step up your open source security game with mend | 0 |
53,496 | 13,261,759,720 | IssuesEvent | 2020-08-20 20:29:02 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | closed | [genie-icetray] tests taking 1000+ minutes to run (Trac #1536) | Migrated from Trac combo simulation defect | The test process automatically quits after 1200 seconds w/o output. Tests should only take a few 10s of seconds at most.
```text
9088 ? R 983:28 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
15646 ? R 914:11 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
27741 ? R 299:10 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
30551 ? R 1056:17 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
```
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1536">https://code.icecube.wisc.edu/projects/icecube/ticket/1536</a>, reported by negaand owned by melanie.day</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:13:35",
"_ts": "1550067215093672",
"description": "The test process automatically quits after 1200 seconds w/o output. Tests should only take a few 10s of seconds at most.\n\n{{{\n 9088 ? R 983:28 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n15646 ? R 914:11 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n27741 ? R 299:10 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n30551 ? R 1056:17 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n}}}",
"reporter": "nega",
"cc": "kclark",
"resolution": "duplicate",
"time": "2016-01-29T21:16:50",
"component": "combo simulation",
"summary": "[genie-icetray] tests taking 1000+ minutes to run",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "melanie.day",
"type": "defect"
}
```
</p>
</details>
| 1.0 | [genie-icetray] tests taking 1000+ minutes to run (Trac #1536) - The test process automatically quits after 1200 seconds w/o output. Tests should only take a few 10s of seconds at most.
```text
9088 ? R 983:28 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
15646 ? R 914:11 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
27741 ? R 299:10 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
30551 ? R 1056:17 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py
```
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1536">https://code.icecube.wisc.edu/projects/icecube/ticket/1536</a>, reported by negaand owned by melanie.day</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:13:35",
"_ts": "1550067215093672",
"description": "The test process automatically quits after 1200 seconds w/o output. Tests should only take a few 10s of seconds at most.\n\n{{{\n 9088 ? R 983:28 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n15646 ? R 914:11 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n27741 ? R 299:10 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n30551 ? R 1056:17 python /build/buildslave/morax_cvmfs/Scientific_Linux_6__cvmfs_/source/genie-icetray/resources/test/GENIETest.py\n}}}",
"reporter": "nega",
"cc": "kclark",
"resolution": "duplicate",
"time": "2016-01-29T21:16:50",
"component": "combo simulation",
"summary": "[genie-icetray] tests taking 1000+ minutes to run",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "melanie.day",
"type": "defect"
}
```
</p>
</details>
| defect | tests taking minutes to run trac the test process automatically quits after seconds w o output tests should only take a few of seconds at most text r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py migrated from json status closed changetime ts description the test process automatically quits after seconds w o output tests should only take a few of seconds at most n n n r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py r python build buildslave morax cvmfs scientific linux cvmfs source genie icetray resources test genietest py n reporter nega cc kclark resolution duplicate time component combo simulation summary tests taking minutes to run priority normal keywords milestone owner melanie day type defect | 1 |
53,686 | 13,262,097,189 | IssuesEvent | 2020-08-20 21:05:54 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | closed | [combo] make rsync appears to do nothing (Trac #1876) | Migrated from Trac combo core defect | Following the "Getting Started" instructions, Section 'Rsync the test data', make rsync does not bring in the test data; it says it was successful and exits immediately.
On OS X 10.11.6, mac specific instructions followed
```text
[11:11:32 kvasir] $ pwd
/Users/beatty/IceCubeSoft/combo/build
<~/IceCubeSoft/combo/build>
[11:11:39 kvasir] $ echo $I3_TESTDATA
/Users/beatty/IceCubeSoft/TestData/
<~/IceCubeSoft/combo/build>
[11:11:51 kvasir] $ make rsync
Built target rsync
<~/IceCubeSoft/combo/build>
[11:11:59 kvasir] $ ls ~/IceCubeSoft/TestData
<~/IceCubeSoft/combo/build>
[11:12:06 kvasir] $
```
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1876">https://code.icecube.wisc.edu/projects/icecube/ticket/1876</a>, reported by jbeattyand owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2017-02-15T17:37:19",
"_ts": "1487180239616003",
"description": "Following the \"Getting Started\" instructions, Section 'Rsync the test data', make rsync does not bring in the test data; it says it was successful and exits immediately.\n\nOn OS X 10.11.6, mac specific instructions followed\n\n{{{\n[11:11:32 kvasir] $ pwd\n/Users/beatty/IceCubeSoft/combo/build\n<~/IceCubeSoft/combo/build>\n[11:11:39 kvasir] $ echo $I3_TESTDATA\n/Users/beatty/IceCubeSoft/TestData/\n<~/IceCubeSoft/combo/build>\n[11:11:51 kvasir] $ make rsync\nBuilt target rsync\n<~/IceCubeSoft/combo/build>\n[11:11:59 kvasir] $ ls ~/IceCubeSoft/TestData\n<~/IceCubeSoft/combo/build>\n[11:12:06 kvasir] $ \n}}}",
"reporter": "jbeatty",
"cc": "",
"resolution": "fixed",
"time": "2016-10-01T15:15:54",
"component": "combo core",
"summary": "[combo] make rsync appears to do nothing",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| 1.0 | [combo] make rsync appears to do nothing (Trac #1876) - Following the "Getting Started" instructions, Section 'Rsync the test data', make rsync does not bring in the test data; it says it was successful and exits immediately.
On OS X 10.11.6, mac specific instructions followed
```text
[11:11:32 kvasir] $ pwd
/Users/beatty/IceCubeSoft/combo/build
<~/IceCubeSoft/combo/build>
[11:11:39 kvasir] $ echo $I3_TESTDATA
/Users/beatty/IceCubeSoft/TestData/
<~/IceCubeSoft/combo/build>
[11:11:51 kvasir] $ make rsync
Built target rsync
<~/IceCubeSoft/combo/build>
[11:11:59 kvasir] $ ls ~/IceCubeSoft/TestData
<~/IceCubeSoft/combo/build>
[11:12:06 kvasir] $
```
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1876">https://code.icecube.wisc.edu/projects/icecube/ticket/1876</a>, reported by jbeattyand owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2017-02-15T17:37:19",
"_ts": "1487180239616003",
"description": "Following the \"Getting Started\" instructions, Section 'Rsync the test data', make rsync does not bring in the test data; it says it was successful and exits immediately.\n\nOn OS X 10.11.6, mac specific instructions followed\n\n{{{\n[11:11:32 kvasir] $ pwd\n/Users/beatty/IceCubeSoft/combo/build\n<~/IceCubeSoft/combo/build>\n[11:11:39 kvasir] $ echo $I3_TESTDATA\n/Users/beatty/IceCubeSoft/TestData/\n<~/IceCubeSoft/combo/build>\n[11:11:51 kvasir] $ make rsync\nBuilt target rsync\n<~/IceCubeSoft/combo/build>\n[11:11:59 kvasir] $ ls ~/IceCubeSoft/TestData\n<~/IceCubeSoft/combo/build>\n[11:12:06 kvasir] $ \n}}}",
"reporter": "jbeatty",
"cc": "",
"resolution": "fixed",
"time": "2016-10-01T15:15:54",
"component": "combo core",
"summary": "[combo] make rsync appears to do nothing",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| defect | make rsync appears to do nothing trac following the getting started instructions section rsync the test data make rsync does not bring in the test data it says it was successful and exits immediately on os x mac specific instructions followed text pwd users beatty icecubesoft combo build echo testdata users beatty icecubesoft testdata make rsync built target rsync ls icecubesoft testdata migrated from json status closed changetime ts description following the getting started instructions section rsync the test data make rsync does not bring in the test data it says it was successful and exits immediately n non os x mac specific instructions followed n n n pwd n users beatty icecubesoft combo build n n echo testdata n users beatty icecubesoft testdata n n make rsync nbuilt target rsync n n ls icecubesoft testdata n n n reporter jbeatty cc resolution fixed time component combo core summary make rsync appears to do nothing priority normal keywords milestone owner nega type defect | 1 |
17,703 | 4,186,911,011 | IssuesEvent | 2016-06-23 15:50:29 | ehcache/ehcache3 | https://api.github.com/repos/ehcache/ehcache3 | closed | Rework Ehcache distribution jars | api clustering documentation | Following the proposal on [ehcache-dev](https://groups.google.com/forum/#!searchin/ehcache-dev/distribution/ehcache-dev/hg8LLwxNZfw/OQ5v-tOcBgAJ), we will move forward with option 2:
* `org.ehcache:ehcache:jar` will be the main distribution to have a functional standalone Ehcache
* No longer contains the transaction module
* `org.ehcache:ehcache-transactions:jar` is an extension jar for transactions
* depends on `org.ehcache:ehcache`
* `org.ehcache:ehcache-clustered:jar` is an extension for clustering Ehcache
* depends on `org.ehcache:ehcache`
Work to be done:
* Adapt current uber jars found in `dist` and `clustered/dist` modules
* Adapt clustered documentation
* Adapt `transactions` module
* osgi headers
* adapt transaction documentation | 1.0 | Rework Ehcache distribution jars - Following the proposal on [ehcache-dev](https://groups.google.com/forum/#!searchin/ehcache-dev/distribution/ehcache-dev/hg8LLwxNZfw/OQ5v-tOcBgAJ), we will move forward with option 2:
* `org.ehcache:ehcache:jar` will be the main distribution to have a functional standalone Ehcache
* No longer contains the transaction module
* `org.ehcache:ehcache-transactions:jar` is an extension jar for transactions
* depends on `org.ehcache:ehcache`
* `org.ehcache:ehcache-clustered:jar` is an extension for clustering Ehcache
* depends on `org.ehcache:ehcache`
Work to be done:
* Adapt current uber jars found in `dist` and `clustered/dist` modules
* Adapt clustered documentation
* Adapt `transactions` module
* osgi headers
* adapt transaction documentation | non_defect | rework ehcache distribution jars following the proposal on we will move forward with option org ehcache ehcache jar will be the main distribution to have a functional standalone ehcache no longer contains the transaction module org ehcache ehcache transactions jar is an extension jar for transactions depends on org ehcache ehcache org ehcache ehcache clustered jar is an extension for clustering ehcache depends on org ehcache ehcache work to be done adapt current uber jars found in dist and clustered dist modules adapt clustered documentation adapt transactions module osgi headers adapt transaction documentation | 0 |
77,452 | 26,998,815,617 | IssuesEvent | 2023-02-10 05:13:10 | hazelcast/hazelcast-go-client | https://api.github.com/repos/hazelcast/hazelcast-go-client | closed | Portable objects cannot be written with an idenified data serializable serializer | Type: Defect Source: Internal | When users want to write through raw object data output, portable writer returns `GetRawDataOutput` but it fails when `WriteObject` method is used for nested portable object. See the following snippet:
`
func (p APortable) WritePortable(writer serialization.PortableWriter) {
out := writer.GetRawDataOutput()
out.WriteObject(p.nestedPortable)
}
`
This code produces: `interface conversion: serialization.DataOutput is *serialization.ObjectDataOutput, not *serialization.PositionalObjectDataOutput`
The following line should change: https://github.com/hazelcast/hazelcast-go-client/blob/master/internal/serialization/default_portable_writer.go#L272 | 1.0 | Portable objects cannot be written with an idenified data serializable serializer - When users want to write through raw object data output, portable writer returns `GetRawDataOutput` but it fails when `WriteObject` method is used for nested portable object. See the following snippet:
`
func (p APortable) WritePortable(writer serialization.PortableWriter) {
out := writer.GetRawDataOutput()
out.WriteObject(p.nestedPortable)
}
`
This code produces: `interface conversion: serialization.DataOutput is *serialization.ObjectDataOutput, not *serialization.PositionalObjectDataOutput`
The following line should change: https://github.com/hazelcast/hazelcast-go-client/blob/master/internal/serialization/default_portable_writer.go#L272 | defect | portable objects cannot be written with an idenified data serializable serializer when users want to write through raw object data output portable writer returns getrawdataoutput but it fails when writeobject method is used for nested portable object see the following snippet func p aportable writeportable writer serialization portablewriter out writer getrawdataoutput out writeobject p nestedportable this code produces interface conversion serialization dataoutput is serialization objectdataoutput not serialization positionalobjectdataoutput the following line should change | 1 |
28,905 | 5,428,028,173 | IssuesEvent | 2017-03-03 14:57:22 | bridgedotnet/Bridge | https://api.github.com/repos/bridgedotnet/Bridge | closed | External enum has incorrect type in ToString statement if custom Enum mode is used | defect in progress | ### Steps To Reproduce
http://deck.net/3a975961937348dc1acb982bfe9d79e0
```c#
[External]
[Enum(Emit.StringName)]
public enum format
{
one,
two
}
public class Program
{
public static void Main()
{
string s = format.one.ToString();
Console.WriteLine("Expected \"one\":" + s);
}
}
```
### Expected Result
```js
var s = System.Enum.toString(System.String, "one");
```
### Actual Result
```js
var s = System.Enum.toString(Demo.format, "one");
```
| 1.0 | External enum has incorrect type in ToString statement if custom Enum mode is used - ### Steps To Reproduce
http://deck.net/3a975961937348dc1acb982bfe9d79e0
```c#
[External]
[Enum(Emit.StringName)]
public enum format
{
one,
two
}
public class Program
{
public static void Main()
{
string s = format.one.ToString();
Console.WriteLine("Expected \"one\":" + s);
}
}
```
### Expected Result
```js
var s = System.Enum.toString(System.String, "one");
```
### Actual Result
```js
var s = System.Enum.toString(Demo.format, "one");
```
| defect | external enum has incorrect type in tostring statement if custom enum mode is used steps to reproduce c public enum format one two public class program public static void main string s format one tostring console writeline expected one s expected result js var s system enum tostring system string one actual result js var s system enum tostring demo format one | 1 |
612,363 | 19,010,782,416 | IssuesEvent | 2021-11-23 09:04:39 | gardener/gardener | https://api.github.com/repos/gardener/gardener | closed | Add integration test for SSH keypair rotation operation | kind/enhancement priority/3 | **How to categorize this issue?**
<!--
Please select area, kind, and priority for this issue. This helps the community categorizing it.
Replace below TODOs or exchange the existing identifiers with those that fit best in your opinion.
If multiple identifiers make sense you can also state the commands multiple times, e.g.
/area control-plane
/area auto-scaling
...
"/area" identifiers: audit-logging|auto-scaling|backup|certification|control-plane-migration|control-plane|cost|delivery|dev-productivity|disaster-recovery|documentation|high-availability|logging|metering|monitoring|networking|open-source|ops-productivity|os|performance|quality|robustness|scalability|security|storage|testing|usability|user-management
"/kind" identifiers: api-change|bug|cleanup|discussion|enhancement|epic|impediment|poc|post-mortem|question|regression|task|technical-debt|test
"/priority" identifiers: 1|2|3|4|5 (ordered from greatest to least)
-->
/kind enhancement
/priority 3
**What would you like to be added**:
Add integration test for SSH keypair rotation operation.
**Why is this needed**:
To prevent any regressions and to make sure that the feature is working on all environments. | 1.0 | Add integration test for SSH keypair rotation operation - **How to categorize this issue?**
<!--
Please select area, kind, and priority for this issue. This helps the community categorizing it.
Replace below TODOs or exchange the existing identifiers with those that fit best in your opinion.
If multiple identifiers make sense you can also state the commands multiple times, e.g.
/area control-plane
/area auto-scaling
...
"/area" identifiers: audit-logging|auto-scaling|backup|certification|control-plane-migration|control-plane|cost|delivery|dev-productivity|disaster-recovery|documentation|high-availability|logging|metering|monitoring|networking|open-source|ops-productivity|os|performance|quality|robustness|scalability|security|storage|testing|usability|user-management
"/kind" identifiers: api-change|bug|cleanup|discussion|enhancement|epic|impediment|poc|post-mortem|question|regression|task|technical-debt|test
"/priority" identifiers: 1|2|3|4|5 (ordered from greatest to least)
-->
/kind enhancement
/priority 3
**What would you like to be added**:
Add integration test for SSH keypair rotation operation.
**Why is this needed**:
To prevent any regressions and to make sure that the feature is working on all environments. | non_defect | add integration test for ssh keypair rotation operation how to categorize this issue please select area kind and priority for this issue this helps the community categorizing it replace below todos or exchange the existing identifiers with those that fit best in your opinion if multiple identifiers make sense you can also state the commands multiple times e g area control plane area auto scaling area identifiers audit logging auto scaling backup certification control plane migration control plane cost delivery dev productivity disaster recovery documentation high availability logging metering monitoring networking open source ops productivity os performance quality robustness scalability security storage testing usability user management kind identifiers api change bug cleanup discussion enhancement epic impediment poc post mortem question regression task technical debt test priority identifiers ordered from greatest to least kind enhancement priority what would you like to be added add integration test for ssh keypair rotation operation why is this needed to prevent any regressions and to make sure that the feature is working on all environments | 0 |
43,975 | 11,886,088,300 | IssuesEvent | 2020-03-27 21:03:16 | extnet/Ext.NET | https://api.github.com/repos/extnet/Ext.NET | opened | absent: ext-cyclebutton's Menu inner property | 7.x asp-net-core defect | [buttons/basic/overview/index.cshtml#L103-L110](https://github.com/objectdotnet/ext7-sandbox/blob/04b9618e95e849678bde58b469bc4466aa450fbf/ExtNetCore7-20200325/Pages/examples/buttons/basic/overview/index.cshtml#L103-L110)
Notes
- Without this, the cycle button is pretty much useless, so can't further test the component before this is fixed. | 1.0 | absent: ext-cyclebutton's Menu inner property - [buttons/basic/overview/index.cshtml#L103-L110](https://github.com/objectdotnet/ext7-sandbox/blob/04b9618e95e849678bde58b469bc4466aa450fbf/ExtNetCore7-20200325/Pages/examples/buttons/basic/overview/index.cshtml#L103-L110)
Notes
- Without this, the cycle button is pretty much useless, so can't further test the component before this is fixed. | defect | absent ext cyclebutton s menu inner property notes without this the cycle button is pretty much useless so can t further test the component before this is fixed | 1 |
50,430 | 13,187,488,452 | IssuesEvent | 2020-08-13 03:34:30 | icecube-trac/tix3 | https://api.github.com/repos/icecube-trac/tix3 | closed | workaround for boost::dynamic_bitset for gcc4.3.3 (Trac #679) | Migrated from Trac defect tools/ports | It turns out that dynamic_bitset (used in dataclasses/*OMKeyMask) triggers a compiler bug in gcc 4.3.3. I backported a patch from newer boost versions to make 1.38 work with this particular version of gcc.
For the record, I attach this patch here. I am not sure if this should go into our boost port, that probably depends on how many systems with gcc4.3.3 are out there.
<details>
<summary><em>Migrated from https://code.icecube.wisc.edu/ticket/679
, reported by claudio.kopper and owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2015-02-11T20:50:13",
"description": "It turns out that dynamic_bitset (used in dataclasses/*OMKeyMask) triggers a compiler bug in gcc 4.3.3. I backported a patch from newer boost versions to make 1.38 work with this particular version of gcc.\n\nFor the record, I attach this patch here. I am not sure if this should go into our boost port, that probably depends on how many systems with gcc4.3.3 are out there.\n",
"reporter": "claudio.kopper",
"cc": "",
"resolution": "wontfix",
"_ts": "1423687813350361",
"component": "tools/ports",
"summary": "workaround for boost::dynamic_bitset for gcc4.3.3",
"priority": "normal",
"keywords": "boost dynamic_bitset",
"time": "2012-05-29T19:39:20",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| 1.0 | workaround for boost::dynamic_bitset for gcc4.3.3 (Trac #679) - It turns out that dynamic_bitset (used in dataclasses/*OMKeyMask) triggers a compiler bug in gcc 4.3.3. I backported a patch from newer boost versions to make 1.38 work with this particular version of gcc.
For the record, I attach this patch here. I am not sure if this should go into our boost port, that probably depends on how many systems with gcc4.3.3 are out there.
<details>
<summary><em>Migrated from https://code.icecube.wisc.edu/ticket/679
, reported by claudio.kopper and owned by nega</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2015-02-11T20:50:13",
"description": "It turns out that dynamic_bitset (used in dataclasses/*OMKeyMask) triggers a compiler bug in gcc 4.3.3. I backported a patch from newer boost versions to make 1.38 work with this particular version of gcc.\n\nFor the record, I attach this patch here. I am not sure if this should go into our boost port, that probably depends on how many systems with gcc4.3.3 are out there.\n",
"reporter": "claudio.kopper",
"cc": "",
"resolution": "wontfix",
"_ts": "1423687813350361",
"component": "tools/ports",
"summary": "workaround for boost::dynamic_bitset for gcc4.3.3",
"priority": "normal",
"keywords": "boost dynamic_bitset",
"time": "2012-05-29T19:39:20",
"milestone": "",
"owner": "nega",
"type": "defect"
}
```
</p>
</details>
| defect | workaround for boost dynamic bitset for trac it turns out that dynamic bitset used in dataclasses omkeymask triggers a compiler bug in gcc i backported a patch from newer boost versions to make work with this particular version of gcc for the record i attach this patch here i am not sure if this should go into our boost port that probably depends on how many systems with are out there migrated from reported by claudio kopper and owned by nega json status closed changetime description it turns out that dynamic bitset used in dataclasses omkeymask triggers a compiler bug in gcc i backported a patch from newer boost versions to make work with this particular version of gcc n nfor the record i attach this patch here i am not sure if this should go into our boost port that probably depends on how many systems with are out there n reporter claudio kopper cc resolution wontfix ts component tools ports summary workaround for boost dynamic bitset for priority normal keywords boost dynamic bitset time milestone owner nega type defect | 1 |
50,531 | 13,539,596,338 | IssuesEvent | 2020-09-16 13:39:58 | apache/pulsar | https://api.github.com/repos/apache/pulsar | closed | [Java Client 2.6.1] Client keeps retrying for about 30 seconds when there is an Authentication failure | component/client component/security triage/week-36 type/bug | **Describe the bug**
While testing Authentication the Java Client keeps retrying a number of times for approx. 30 seconds even though there is a bad JWT token or a missing JWT token and the broker is responding with
**To Reproduce**
Steps to reproduce the behavior:
1. Turn on Authentication in the Proxy and the Broker
2. Build a Pulsar Client with no authentication
```
return PulsarClient.builder()
.allowTlsInsecureConnection(false)
.serviceUrl("pulsar://" + SERVER + ":6650")
.build();
```
3. Create a Producer e.g.
```
Producer<byte[]> producer = pulsarClient.newProducer()
.topic(topicBeingRequested)
.create();
```
4. See errors and retries in log file - takes approx 30 seconds for this to stop
5. Setting ```.maxNumberOfRejectedRequestPerConnection(1)``` on the client did not improve things
6. I see the same problem on an Authorization error (can provide separate logs if neede)
**Expected behavior**
I would expect an AuthN or AuthZ failure to return immediately and not retry
**Screenshots**
The client logs show this repeatedly
```
2020-08-28 11:52:17,368 - INFO - [pulsar-client-io-8-1:ClientCnx@226] - [id: 0xa0555737, L:/127.0.0.1:63523 ! R:localhost/127.0.0.1:6650] Disconnected
2020-08-28 11:52:23,382 - WARN - [pulsar-external-listener-9-1:PulsarClientImpl@695] - [topic: persistent://testTenant1/testNamespace1/topic1] Could not get connection while getPartitionedTopicMetadata -- Will try again in 6010 ms
2020-08-28 11:52:23,383 - INFO - [pulsar-client-io-8-1:ConnectionPool@167] - [[id: 0x87f61dcc, L:/127.0.0.1:63524 - R:localhost/127.0.0.1:6650]] Connected to server
2020-08-28 11:52:23,423 - ERROR - [pulsar-client-io-8-1:ClientCnx@898] - [id: 0x87f61dcc, L:/127.0.0.1:63524 - R:localhost/127.0.0.1:6650] Close connection because received internal-server error org.apache.pulsar.client.api.PulsarClientException: Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
2020-08-28 11:52:23,424 - WARN - [pulsar-client-io-8-1:BinaryProtoLookupService@197] - [persistent://testTenant1/testNamespace1/topic1] failed to get Partitioned metadata : org.apache.pulsar.client.api.PulsarClientException: Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
```
I see this in the logs for the proxy repeatedly
```
5:51:53.467 [pulsar-proxy-io-2-1] INFO org.apache.pulsar.client.impl.ConnectionPool - [[id: 0xec6c801e, L:/172.17.0.4:55792 - R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650]] Connected to server
15:51:53.486 [pulsar-proxy-io-2-1] WARN org.apache.pulsar.client.impl.ClientCnx - [id: 0xec6c801e, L:/172.17.0.4:55792 - R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650] Received error from server: Unable to authenticate
15:51:53.486 [pulsar-proxy-io-2-1] WARN org.apache.pulsar.client.impl.ClientCnx - [id: 0xec6c801e, L:/172.17.0.4:55792 - R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650] Received unknown request id from server: -1
15:51:53.487 [pulsar-proxy-io-2-1] INFO org.apache.pulsar.client.impl.ClientCnx - [id: 0xec6c801e, L:/172.17.0.4:55792 ! R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650] Disconnected
15:51:53.488 [pulsar-proxy-io-2-1] WARN org.apache.pulsar.proxy.server.LookupProxyHandler - [persistent://testTenant1/testNamespace1/topic1] failed to get Partitioned metadata : Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
java.util.concurrent.CompletionException: org.apache.pulsar.client.api.PulsarClientException: Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
```
**Desktop (please complete the following information):**
- Pulsar 2.6.1 deployed in Minikube (separate proxy/broker/bookies/zk etc.)
- Pulsar Client 2.6.1
| True | [Java Client 2.6.1] Client keeps retrying for about 30 seconds when there is an Authentication failure - **Describe the bug**
While testing Authentication the Java Client keeps retrying a number of times for approx. 30 seconds even though there is a bad JWT token or a missing JWT token and the broker is responding with
**To Reproduce**
Steps to reproduce the behavior:
1. Turn on Authentication in the Proxy and the Broker
2. Build a Pulsar Client with no authentication
```
return PulsarClient.builder()
.allowTlsInsecureConnection(false)
.serviceUrl("pulsar://" + SERVER + ":6650")
.build();
```
3. Create a Producer e.g.
```
Producer<byte[]> producer = pulsarClient.newProducer()
.topic(topicBeingRequested)
.create();
```
4. See errors and retries in log file - takes approx 30 seconds for this to stop
5. Setting ```.maxNumberOfRejectedRequestPerConnection(1)``` on the client did not improve things
6. I see the same problem on an Authorization error (can provide separate logs if neede)
**Expected behavior**
I would expect an AuthN or AuthZ failure to return immediately and not retry
**Screenshots**
The client logs show this repeatedly
```
2020-08-28 11:52:17,368 - INFO - [pulsar-client-io-8-1:ClientCnx@226] - [id: 0xa0555737, L:/127.0.0.1:63523 ! R:localhost/127.0.0.1:6650] Disconnected
2020-08-28 11:52:23,382 - WARN - [pulsar-external-listener-9-1:PulsarClientImpl@695] - [topic: persistent://testTenant1/testNamespace1/topic1] Could not get connection while getPartitionedTopicMetadata -- Will try again in 6010 ms
2020-08-28 11:52:23,383 - INFO - [pulsar-client-io-8-1:ConnectionPool@167] - [[id: 0x87f61dcc, L:/127.0.0.1:63524 - R:localhost/127.0.0.1:6650]] Connected to server
2020-08-28 11:52:23,423 - ERROR - [pulsar-client-io-8-1:ClientCnx@898] - [id: 0x87f61dcc, L:/127.0.0.1:63524 - R:localhost/127.0.0.1:6650] Close connection because received internal-server error org.apache.pulsar.client.api.PulsarClientException: Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
2020-08-28 11:52:23,424 - WARN - [pulsar-client-io-8-1:BinaryProtoLookupService@197] - [persistent://testTenant1/testNamespace1/topic1] failed to get Partitioned metadata : org.apache.pulsar.client.api.PulsarClientException: Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
```
I see this in the logs for the proxy repeatedly
```
5:51:53.467 [pulsar-proxy-io-2-1] INFO org.apache.pulsar.client.impl.ConnectionPool - [[id: 0xec6c801e, L:/172.17.0.4:55792 - R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650]] Connected to server
15:51:53.486 [pulsar-proxy-io-2-1] WARN org.apache.pulsar.client.impl.ClientCnx - [id: 0xec6c801e, L:/172.17.0.4:55792 - R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650] Received error from server: Unable to authenticate
15:51:53.486 [pulsar-proxy-io-2-1] WARN org.apache.pulsar.client.impl.ClientCnx - [id: 0xec6c801e, L:/172.17.0.4:55792 - R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650] Received unknown request id from server: -1
15:51:53.487 [pulsar-proxy-io-2-1] INFO org.apache.pulsar.client.impl.ClientCnx - [id: 0xec6c801e, L:/172.17.0.4:55792 ! R:pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650] Disconnected
15:51:53.488 [pulsar-proxy-io-2-1] WARN org.apache.pulsar.proxy.server.LookupProxyHandler - [persistent://testTenant1/testNamespace1/topic1] failed to get Partitioned metadata : Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
java.util.concurrent.CompletionException: org.apache.pulsar.client.api.PulsarClientException: Disconnected from server at pulsar-broker.cogito.svc.cluster.local/10.100.43.26:6650
```
**Desktop (please complete the following information):**
- Pulsar 2.6.1 deployed in Minikube (separate proxy/broker/bookies/zk etc.)
- Pulsar Client 2.6.1
| non_defect | client keeps retrying for about seconds when there is an authentication failure describe the bug while testing authentication the java client keeps retrying a number of times for approx seconds even though there is a bad jwt token or a missing jwt token and the broker is responding with to reproduce steps to reproduce the behavior turn on authentication in the proxy and the broker build a pulsar client with no authentication return pulsarclient builder allowtlsinsecureconnection false serviceurl pulsar server build create a producer e g producer producer pulsarclient newproducer topic topicbeingrequested create see errors and retries in log file takes approx seconds for this to stop setting maxnumberofrejectedrequestperconnection on the client did not improve things i see the same problem on an authorization error can provide separate logs if neede expected behavior i would expect an authn or authz failure to return immediately and not retry screenshots the client logs show this repeatedly info disconnected warn could not get connection while getpartitionedtopicmetadata will try again in ms info connected to server error close connection because received internal server error org apache pulsar client api pulsarclientexception disconnected from server at pulsar broker cogito svc cluster local warn failed to get partitioned metadata org apache pulsar client api pulsarclientexception disconnected from server at pulsar broker cogito svc cluster local i see this in the logs for the proxy repeatedly info org apache pulsar client impl connectionpool connected to server warn org apache pulsar client impl clientcnx received error from server unable to authenticate warn org apache pulsar client impl clientcnx received unknown request id from server info org apache pulsar client impl clientcnx disconnected warn org apache pulsar proxy server lookupproxyhandler failed to get partitioned metadata disconnected from server at pulsar broker cogito svc cluster local java util concurrent completionexception org apache pulsar client api pulsarclientexception disconnected from server at pulsar broker cogito svc cluster local desktop please complete the following information pulsar deployed in minikube separate proxy broker bookies zk etc pulsar client | 0 |
34,086 | 7,342,757,503 | IssuesEvent | 2018-03-07 09:06:21 | primefaces/primefaces | https://api.github.com/repos/primefaces/primefaces | closed | Schedule: description not shown as title | defect enhancement | ## Environment
- PrimeFaces version: 6.1
- Application server + version: payara 4.1.1.171
- Affected browsers: all (as it's not present in the html code)
## 2) Expected behavior
Like described in the documentation:
> description: Tooltip text to display on mouseover of an event.
## 3) Actual behavior
I create a `DefaultScheduleEvent` and set it's description to "something". I can see the event in the `Schedule` as expected
- the Java attribute `title` is correctly translated to the events body
- the Java attribute `description` is being ignored.
## 5) Sample XHTML
<p:schedule value="#{myBean.eventModel}" view="agendaWeek"
weekNumberCalculation="ISO" locale="de_DE" timeZone="Europe/Berlin"
draggable="false" resizable="false" firstHour="7" showWeekNumbers="true"
rightHeaderTemplate="month, agendaWeek"
style="width: 100%" aspectRatio="1.57"/>
## 6) Sample bean
final DefaultScheduleEvent event = new DefaultScheduleEvent("my body", new Date(), new Date());
event.setDescription("anything");
ScheduleModel eventModel = new DefaultScheduleModel();
eventModel.addEvent(event);
| 1.0 | Schedule: description not shown as title - ## Environment
- PrimeFaces version: 6.1
- Application server + version: payara 4.1.1.171
- Affected browsers: all (as it's not present in the html code)
## 2) Expected behavior
Like described in the documentation:
> description: Tooltip text to display on mouseover of an event.
## 3) Actual behavior
I create a `DefaultScheduleEvent` and set it's description to "something". I can see the event in the `Schedule` as expected
- the Java attribute `title` is correctly translated to the events body
- the Java attribute `description` is being ignored.
## 5) Sample XHTML
<p:schedule value="#{myBean.eventModel}" view="agendaWeek"
weekNumberCalculation="ISO" locale="de_DE" timeZone="Europe/Berlin"
draggable="false" resizable="false" firstHour="7" showWeekNumbers="true"
rightHeaderTemplate="month, agendaWeek"
style="width: 100%" aspectRatio="1.57"/>
## 6) Sample bean
final DefaultScheduleEvent event = new DefaultScheduleEvent("my body", new Date(), new Date());
event.setDescription("anything");
ScheduleModel eventModel = new DefaultScheduleModel();
eventModel.addEvent(event);
| defect | schedule description not shown as title environment primefaces version application server version payara affected browsers all as it s not present in the html code expected behavior like described in the documentation description tooltip text to display on mouseover of an event actual behavior i create a defaultscheduleevent and set it s description to something i can see the event in the schedule as expected the java attribute title is correctly translated to the events body the java attribute description is being ignored sample xhtml p schedule value mybean eventmodel view agendaweek weeknumbercalculation iso locale de de timezone europe berlin draggable false resizable false firsthour showweeknumbers true rightheadertemplate month agendaweek style width aspectratio sample bean final defaultscheduleevent event new defaultscheduleevent my body new date new date event setdescription anything schedulemodel eventmodel new defaultschedulemodel eventmodel addevent event | 1 |
386,358 | 11,437,512,248 | IssuesEvent | 2020-02-05 00:13:56 | kubernetes-sigs/krew | https://api.github.com/repos/kubernetes-sigs/krew | closed | Print warning on every command if PATH does not have KREW_ROOT/bin | good first issue help wanted priority/P2 | ## Scenario 1: Homebrew
This came up in the Homebrew formula (which we aren't supporting officially at the moment). https://github.com/Homebrew/homebrew-core/pull/49547
Homebrew maintainers refuse to have Caveats for `krew` formula that tells users to:
```
To complete the installation, you need to add the following to your
~/.bash_profile, ~/.bashrc or ~/.zshrc:
export PATH="${PATH}:${HOME}/.krew/bin"
```
But it does link `kubectl-krew` in PATH. So, users will do `kubectl krew install foo` but `kubectl foo` mysteriously won't work (and `kubectl plugin list` won't show `foo` despite `kubectl krew list` does).
User is left confused.
## Scenario 2: Incomplete krew installations
User followed instructions from Krew's README to install krew. But they did not follow the PATH update (or they did not restart their shell).
So they type `./krew install foo`, it works. But `kubectl foo` mysteriously won't work (and `kubectl plugin list` won't show `foo` despite `kubectl krew list` does).
So the user is left confused.
## Proposed solution
In both problems, user does not have $KREW_ROOT/"bin" directory in their PATH.
So, let's add a PreRun **warning** to root krew command that informs the user about this situation, with the message above.
In addition, we can determine which of `~/.bash_profile`, `~/.bashrc` or `~/.zshrc` or Windows instructions we should be mentioning from environment variables (using $SHELL + GOOS).
**Corner case:** This should not print when `krew` running first time ever, to installing itself (e.g. for the first time) using the instructions in the readme.
/good-first-issue
/priority P2 | 1.0 | Print warning on every command if PATH does not have KREW_ROOT/bin - ## Scenario 1: Homebrew
This came up in the Homebrew formula (which we aren't supporting officially at the moment). https://github.com/Homebrew/homebrew-core/pull/49547
Homebrew maintainers refuse to have Caveats for `krew` formula that tells users to:
```
To complete the installation, you need to add the following to your
~/.bash_profile, ~/.bashrc or ~/.zshrc:
export PATH="${PATH}:${HOME}/.krew/bin"
```
But it does link `kubectl-krew` in PATH. So, users will do `kubectl krew install foo` but `kubectl foo` mysteriously won't work (and `kubectl plugin list` won't show `foo` despite `kubectl krew list` does).
User is left confused.
## Scenario 2: Incomplete krew installations
User followed instructions from Krew's README to install krew. But they did not follow the PATH update (or they did not restart their shell).
So they type `./krew install foo`, it works. But `kubectl foo` mysteriously won't work (and `kubectl plugin list` won't show `foo` despite `kubectl krew list` does).
So the user is left confused.
## Proposed solution
In both problems, user does not have $KREW_ROOT/"bin" directory in their PATH.
So, let's add a PreRun **warning** to root krew command that informs the user about this situation, with the message above.
In addition, we can determine which of `~/.bash_profile`, `~/.bashrc` or `~/.zshrc` or Windows instructions we should be mentioning from environment variables (using $SHELL + GOOS).
**Corner case:** This should not print when `krew` running first time ever, to installing itself (e.g. for the first time) using the instructions in the readme.
/good-first-issue
/priority P2 | non_defect | print warning on every command if path does not have krew root bin scenario homebrew this came up in the homebrew formula which we aren t supporting officially at the moment homebrew maintainers refuse to have caveats for krew formula that tells users to to complete the installation you need to add the following to your bash profile bashrc or zshrc export path path home krew bin but it does link kubectl krew in path so users will do kubectl krew install foo but kubectl foo mysteriously won t work and kubectl plugin list won t show foo despite kubectl krew list does user is left confused scenario incomplete krew installations user followed instructions from krew s readme to install krew but they did not follow the path update or they did not restart their shell so they type krew install foo it works but kubectl foo mysteriously won t work and kubectl plugin list won t show foo despite kubectl krew list does so the user is left confused proposed solution in both problems user does not have krew root bin directory in their path so let s add a prerun warning to root krew command that informs the user about this situation with the message above in addition we can determine which of bash profile bashrc or zshrc or windows instructions we should be mentioning from environment variables using shell goos corner case this should not print when krew running first time ever to installing itself e g for the first time using the instructions in the readme good first issue priority | 0 |
67,551 | 20,991,161,768 | IssuesEvent | 2022-03-29 09:25:00 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | New threads created go to the end of the thread list (Thread list ordering) | T-Defect X-Blocked S-Minor O-Frequent A-Threads Z-Labs | ### Steps to reproduce
1. Visit a room with threads.
2. Open the thread panel to browse the current thread list.
3. Start a new thread.
### Outcome
#### What did you expect?
The new thread to be added to the topmost position of the thread list.
#### What happened instead?
It seems to go like this. When you first visit a room and are just browsing it, the order for threads is correct, but as soon as you create a new thread it gets added to the last position in the stack, instead of the topmost.
### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
develop.element.io
### Application version
Element version: c40dbf158019-react-f59ea6d7adf5-js-230e3b4acee3 Olm version: 3.2.8
### Homeserver
matrix.org
### Will you send logs?
No | 1.0 | New threads created go to the end of the thread list (Thread list ordering) - ### Steps to reproduce
1. Visit a room with threads.
2. Open the thread panel to browse the current thread list.
3. Start a new thread.
### Outcome
#### What did you expect?
The new thread to be added to the topmost position of the thread list.
#### What happened instead?
It seems to go like this. When you first visit a room and are just browsing it, the order for threads is correct, but as soon as you create a new thread it gets added to the last position in the stack, instead of the topmost.
### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
develop.element.io
### Application version
Element version: c40dbf158019-react-f59ea6d7adf5-js-230e3b4acee3 Olm version: 3.2.8
### Homeserver
matrix.org
### Will you send logs?
No | defect | new threads created go to the end of the thread list thread list ordering steps to reproduce visit a room with threads open the thread panel to browse the current thread list start a new thread outcome what did you expect the new thread to be added to the topmost position of the thread list what happened instead it seems to go like this when you first visit a room and are just browsing it the order for threads is correct but as soon as you create a new thread it gets added to the last position in the stack instead of the topmost operating system no response browser information no response url for webapp develop element io application version element version react js olm version homeserver matrix org will you send logs no | 1 |
21,955 | 3,587,215,213 | IssuesEvent | 2016-01-30 05:06:12 | mash99/crypto-js | https://api.github.com/repos/mash99/crypto-js | closed | Public-key cryptography | auto-migrated Priority-Medium Type-Defect | ```
Not a problem, but I would like to see public-key cryptography in this project,
such as RSA, ECC and IBE. So a feature suggestion.
```
Original issue reported on code.google.com by `rudd...@gmail.com` on 19 Mar 2014 at 3:54 | 1.0 | Public-key cryptography - ```
Not a problem, but I would like to see public-key cryptography in this project,
such as RSA, ECC and IBE. So a feature suggestion.
```
Original issue reported on code.google.com by `rudd...@gmail.com` on 19 Mar 2014 at 3:54 | defect | public key cryptography not a problem but i would like to see public key cryptography in this project such as rsa ecc and ibe so a feature suggestion original issue reported on code google com by rudd gmail com on mar at | 1 |
62,291 | 17,023,890,342 | IssuesEvent | 2021-07-03 04:23:46 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | bay not rendered as water | Component: mapnik Priority: minor Resolution: invalid Type: defect | **[Submitted to the original trac issue database at 7.26pm, Monday, 9th December 2013]**
Something related to the rendering of natural=bay seems to have changed in the last month or so.
See [http://www.openstreetmap.org/#map=15/30.4017/-88.8503]. There should be water following that county border towards the north west.
I checked the tagging on the multipolygon and it appears correct. Also checked the xml include file referenced in #1795 and it appears untouched for many months. Something else may be overriding it. | 1.0 | bay not rendered as water - **[Submitted to the original trac issue database at 7.26pm, Monday, 9th December 2013]**
Something related to the rendering of natural=bay seems to have changed in the last month or so.
See [http://www.openstreetmap.org/#map=15/30.4017/-88.8503]. There should be water following that county border towards the north west.
I checked the tagging on the multipolygon and it appears correct. Also checked the xml include file referenced in #1795 and it appears untouched for many months. Something else may be overriding it. | defect | bay not rendered as water something related to the rendering of natural bay seems to have changed in the last month or so see there should be water following that county border towards the north west i checked the tagging on the multipolygon and it appears correct also checked the xml include file referenced in and it appears untouched for many months something else may be overriding it | 1 |
53,589 | 6,734,679,309 | IssuesEvent | 2017-10-18 18:54:08 | callemall/material-ui | https://api.github.com/repos/callemall/material-ui | closed | Nested List Animation (Expand / Collapse Animation) | component: List material design spec | <!--- Provide a general summary of the issue in the Title above -->
Enhancement request:
The expand/collapse behavior of [Nested Lists](http://www.material-ui.com/#/components/list) should animate open/closed.
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the [issues](https://github.com/callemall/material-ui/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20animate%20nested%20list) of this repository and believe that this is not a duplicate.
## Expected Behavior
<!---
If you're describing a bug, tell us what should happen.
If you're suggesting a change/improvement, tell us how it should work.
-->
Lists should animate when they expand / collapse.
## Current Behavior
<!---
If describing a bug, tell us what happens instead of the expected behavior.
If suggesting a change/improvement, explain the difference from current behavior.
-->
Lists currently snap to the state, without any visual explanation of what happened. This is comprehendible to most user, but gets disorienting if lists are large.
| 1.0 | Nested List Animation (Expand / Collapse Animation) - <!--- Provide a general summary of the issue in the Title above -->
Enhancement request:
The expand/collapse behavior of [Nested Lists](http://www.material-ui.com/#/components/list) should animate open/closed.
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the [issues](https://github.com/callemall/material-ui/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20animate%20nested%20list) of this repository and believe that this is not a duplicate.
## Expected Behavior
<!---
If you're describing a bug, tell us what should happen.
If you're suggesting a change/improvement, tell us how it should work.
-->
Lists should animate when they expand / collapse.
## Current Behavior
<!---
If describing a bug, tell us what happens instead of the expected behavior.
If suggesting a change/improvement, explain the difference from current behavior.
-->
Lists currently snap to the state, without any visual explanation of what happened. This is comprehendible to most user, but gets disorienting if lists are large.
| non_defect | nested list animation expand collapse animation enhancement request the expand collapse behavior of should animate open closed thank you very much for contributing to material ui by creating an issue ❤️ to avoid duplicate issues we ask you to check off the following list i have searched the of this repository and believe that this is not a duplicate expected behavior if you re describing a bug tell us what should happen if you re suggesting a change improvement tell us how it should work lists should animate when they expand collapse current behavior if describing a bug tell us what happens instead of the expected behavior if suggesting a change improvement explain the difference from current behavior lists currently snap to the state without any visual explanation of what happened this is comprehendible to most user but gets disorienting if lists are large | 0 |
11,077 | 2,632,356,912 | IssuesEvent | 2015-03-08 01:36:39 | marmarek/test | https://api.github.com/repos/marmarek/test | opened | Automatically start nm-applet in the default (all?) netvm | C: core P: major R: implemented T: defect | **Reported by joanna on 25 Mar 2011 14:29 UTC**
None
Migrated-From: https://wiki.qubes-os.org/ticket/137 | 1.0 | Automatically start nm-applet in the default (all?) netvm - **Reported by joanna on 25 Mar 2011 14:29 UTC**
None
Migrated-From: https://wiki.qubes-os.org/ticket/137 | defect | automatically start nm applet in the default all netvm reported by joanna on mar utc none migrated from | 1 |
74,993 | 25,473,515,459 | IssuesEvent | 2022-11-25 12:22:08 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | When scrolling thread list up, scroll gets reset to the bottom at random | T-Defect S-Minor O-Occasional A-Threads | ### Steps to reproduce
1. scroll backwards in a very long list of threads
### Outcome
#### What did you expect?
natural scrolling backwards
#### What happened instead?
you sometimes get jumped at the very bottom of the list, seemingly at random
### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
_No response_
### Application version
_No response_
### Homeserver
_No response_
### Will you send logs?
No | 1.0 | When scrolling thread list up, scroll gets reset to the bottom at random - ### Steps to reproduce
1. scroll backwards in a very long list of threads
### Outcome
#### What did you expect?
natural scrolling backwards
#### What happened instead?
you sometimes get jumped at the very bottom of the list, seemingly at random
### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
_No response_
### Application version
_No response_
### Homeserver
_No response_
### Will you send logs?
No | defect | when scrolling thread list up scroll gets reset to the bottom at random steps to reproduce scroll backwards in a very long list of threads outcome what did you expect natural scrolling backwards what happened instead you sometimes get jumped at the very bottom of the list seemingly at random operating system no response browser information no response url for webapp no response application version no response homeserver no response will you send logs no | 1 |
31,221 | 6,461,547,312 | IssuesEvent | 2017-08-16 08:26:05 | contao/core | https://api.github.com/repos/contao/core | closed | Frontend-Vorschau als Mitglied wenn Benutzername Sonderzeichen enthält | defect | Wenn man im Backend über die Mitgliederliste die Frontend-Vorschau als Mitglied aufruft und der Benutzername des Mitgliedes Sonderzeichen wie ````&```` enthält, funktioniert dies nicht und es wird die Frontend-Vorschau als Gast angezeigt.
Warum wird hier eigentlich der Benutzername als Parameter übergeben und nicht die ID des Mitglieds? | 1.0 | Frontend-Vorschau als Mitglied wenn Benutzername Sonderzeichen enthält - Wenn man im Backend über die Mitgliederliste die Frontend-Vorschau als Mitglied aufruft und der Benutzername des Mitgliedes Sonderzeichen wie ````&```` enthält, funktioniert dies nicht und es wird die Frontend-Vorschau als Gast angezeigt.
Warum wird hier eigentlich der Benutzername als Parameter übergeben und nicht die ID des Mitglieds? | defect | frontend vorschau als mitglied wenn benutzername sonderzeichen enthält wenn man im backend über die mitgliederliste die frontend vorschau als mitglied aufruft und der benutzername des mitgliedes sonderzeichen wie enthält funktioniert dies nicht und es wird die frontend vorschau als gast angezeigt warum wird hier eigentlich der benutzername als parameter übergeben und nicht die id des mitglieds | 1 |
176,506 | 6,560,366,101 | IssuesEvent | 2017-09-07 09:01:39 | salesagility/SuiteCRM | https://api.github.com/repos/salesagility/SuiteCRM | closed | Possible opportunity for SQL injection attack in file modules/Emails/EmailUIAjax.php | bug Fix Proposed High Priority Resolved: Next Release | inside:
`case "getTemplateAttachments":`
line:
`$where = "parent_id='{$_REQUEST['parent_id']}'";`
All user inputs must be used after validation/sanitisation/escaping in SQL commands.
Refer to usage of DBManager::quote() function
| 1.0 | Possible opportunity for SQL injection attack in file modules/Emails/EmailUIAjax.php - inside:
`case "getTemplateAttachments":`
line:
`$where = "parent_id='{$_REQUEST['parent_id']}'";`
All user inputs must be used after validation/sanitisation/escaping in SQL commands.
Refer to usage of DBManager::quote() function
| non_defect | possible opportunity for sql injection attack in file modules emails emailuiajax php inside case gettemplateattachments line where parent id request all user inputs must be used after validation sanitisation escaping in sql commands refer to usage of dbmanager quote function | 0 |
191,580 | 22,215,809,133 | IssuesEvent | 2022-06-08 01:25:54 | panasalap/linux-4.1.15 | https://api.github.com/repos/panasalap/linux-4.1.15 | reopened | CVE-2019-20636 (Medium) detected in linux179e72b561d3d331c850e1a5779688d7a7de5246 | security vulnerability | ## CVE-2019-20636 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux179e72b561d3d331c850e1a5779688d7a7de5246</b></p></summary>
<p>
<p>Linux kernel stable tree mirror</p>
<p>Library home page: <a href=https://github.com/gregkh/linux.git>https://github.com/gregkh/linux.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.1.15/commit/aae4c2fa46027fd4c477372871df090c6b94f3f1">aae4c2fa46027fd4c477372871df090c6b94f3f1</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 (1)</summary>
<p></p>
<p>
</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>
In the Linux kernel before 5.4.12, drivers/input/input.c has out-of-bounds writes via a crafted keycode table, as demonstrated by input_set_keycode, aka CID-cb222aed03d7.
<p>Publish Date: 2020-04-08
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-20636>CVE-2019-20636</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.7</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: High
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20636">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20636</a></p>
<p>Release Date: 2020-06-10</p>
<p>Fix Resolution: v5.5-rc6</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-2019-20636 (Medium) detected in linux179e72b561d3d331c850e1a5779688d7a7de5246 - ## CVE-2019-20636 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux179e72b561d3d331c850e1a5779688d7a7de5246</b></p></summary>
<p>
<p>Linux kernel stable tree mirror</p>
<p>Library home page: <a href=https://github.com/gregkh/linux.git>https://github.com/gregkh/linux.git</a></p>
<p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.1.15/commit/aae4c2fa46027fd4c477372871df090c6b94f3f1">aae4c2fa46027fd4c477372871df090c6b94f3f1</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 (1)</summary>
<p></p>
<p>
</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>
In the Linux kernel before 5.4.12, drivers/input/input.c has out-of-bounds writes via a crafted keycode table, as demonstrated by input_set_keycode, aka CID-cb222aed03d7.
<p>Publish Date: 2020-04-08
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-20636>CVE-2019-20636</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.7</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: Low
- Privileges Required: High
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20636">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-20636</a></p>
<p>Release Date: 2020-06-10</p>
<p>Fix Resolution: v5.5-rc6</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve medium detected in cve medium severity vulnerability vulnerable library linux kernel stable tree mirror library home page a href found in head commit a href found in base branch master vulnerable source files vulnerability details in the linux kernel before drivers input input c has out of bounds writes via a crafted keycode table as demonstrated by input set keycode aka cid publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required high 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 whitesource | 0 |
2,152 | 2,603,977,214 | IssuesEvent | 2015-02-24 19:01:48 | chrsmith/nishazi6 | https://api.github.com/repos/chrsmith/nishazi6 | opened | 沈阳人乳头瘤病毒18型 | auto-migrated Priority-Medium Type-Defect | ```
沈阳人乳头瘤病毒18型〓沈陽軍區政治部醫院性病〓TEL:024-31
023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。��
�于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌��
�歷史悠久、設備精良、技術權威、專家云集,是預防、保健�
��醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等
部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、��
�南大學等知名高等院校的教學醫院。曾被中國人民解放軍空�
��后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二
等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:25 | 1.0 | 沈阳人乳头瘤病毒18型 - ```
沈阳人乳头瘤病毒18型〓沈陽軍區政治部醫院性病〓TEL:024-31
023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。��
�于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌��
�歷史悠久、設備精良、技術權威、專家云集,是預防、保健�
��醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等
部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、��
�南大學等知名高等院校的教學醫院。曾被中國人民解放軍空�
��后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二
等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 8:25 | defect | 〓沈陽軍區政治部醫院性病〓tel: 〓 , 。�� � 。是一所與新中國同建立共輝煌�� �歷史悠久、設備精良、技術權威、專家云集,是預防、保健� ��醫療、科研康復為一體的綜合性醫院。是國家首批公立甲等 部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�� �南大學等知名高等院校的教學醫院。曾被中國人民解放軍空� ��后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體二 等功。 original issue reported on code google com by gmail com on jun at | 1 |
26,974 | 5,306,285,368 | IssuesEvent | 2017-02-11 00:17:10 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | Generate API docs grouped by .NET Platform Standard version from packages | area-Meta documentation | The same way we generated this list:
https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/standard-platform.md#list-of-net-corefx-apis-and-their-associated-net-standard-platform-version-tentative
It would be cool if we could generate an MSDN style API doc experience for the .NET Standard Platform versions.
/cc @ericstj @richlander @Petermarcu
| 1.0 | Generate API docs grouped by .NET Platform Standard version from packages - The same way we generated this list:
https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/standard-platform.md#list-of-net-corefx-apis-and-their-associated-net-standard-platform-version-tentative
It would be cool if we could generate an MSDN style API doc experience for the .NET Standard Platform versions.
/cc @ericstj @richlander @Petermarcu
| non_defect | generate api docs grouped by net platform standard version from packages the same way we generated this list it would be cool if we could generate an msdn style api doc experience for the net standard platform versions cc ericstj richlander petermarcu | 0 |
25,221 | 4,235,983,952 | IssuesEvent | 2016-07-05 16:53:33 | opencaching/opencaching-pl | https://api.github.com/repos/opencaching/opencaching-pl | closed | Error with honered cache | Priority_Low Type_Defect | Last night ocnl tried to make a cache of the month (ocpl has cache of the week). When running the cron for this it give the next error.
+++ PDO Error +++
+++ Debug: Query|Params: INSERT INTO cache_titled
(cache_id, rate, ratio, rating, found, days, date_alg, log_id)
VALUES (:1, :2, :3, :4, :5, :6, :7, :8) | | | | | | | 2016-07-01 |
+++ Ex_Code: 23000
+++ Ex_Msg: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'cache_id' cannot be null
+++ Ex_Trace:
#0 /var/www/www.opencaching.nl/Utils/Database/OcDb.php(278): PDOStatement->execute()
#1 /var/www/www.opencaching.nl/cache_titled_add.php(136): Utils\Database\OcDb->multiVariableQuery('INSERT INTO cac...', NULL, NULL, NULL, NULL, NULL, NULL, '2016-07-01', NULL)
#2 {main}
Can please some one take a look at this.
Thanks. | 1.0 | Error with honered cache - Last night ocnl tried to make a cache of the month (ocpl has cache of the week). When running the cron for this it give the next error.
+++ PDO Error +++
+++ Debug: Query|Params: INSERT INTO cache_titled
(cache_id, rate, ratio, rating, found, days, date_alg, log_id)
VALUES (:1, :2, :3, :4, :5, :6, :7, :8) | | | | | | | 2016-07-01 |
+++ Ex_Code: 23000
+++ Ex_Msg: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'cache_id' cannot be null
+++ Ex_Trace:
#0 /var/www/www.opencaching.nl/Utils/Database/OcDb.php(278): PDOStatement->execute()
#1 /var/www/www.opencaching.nl/cache_titled_add.php(136): Utils\Database\OcDb->multiVariableQuery('INSERT INTO cac...', NULL, NULL, NULL, NULL, NULL, NULL, '2016-07-01', NULL)
#2 {main}
Can please some one take a look at this.
Thanks. | defect | error with honered cache last night ocnl tried to make a cache of the month ocpl has cache of the week when running the cron for this it give the next error pdo error debug query params insert into cache titled cache id rate ratio rating found days date alg log id values ex code ex msg sqlstate integrity constraint violation column cache id cannot be null ex trace var www pdostatement execute var www utils database ocdb multivariablequery insert into cac null null null null null null null main can please some one take a look at this thanks | 1 |
4,860 | 5,302,749,004 | IssuesEvent | 2017-02-10 13:59:07 | camptocamp/ngeo | https://api.github.com/repos/camptocamp/ngeo | closed | We should be able to use the not minified files in the whitespace build | Infrastructure Ready | And by the way provide `dist/external.js` and `dist/external.min.js` files to be easier used in the projects applications. | 1.0 | We should be able to use the not minified files in the whitespace build - And by the way provide `dist/external.js` and `dist/external.min.js` files to be easier used in the projects applications. | non_defect | we should be able to use the not minified files in the whitespace build and by the way provide dist external js and dist external min js files to be easier used in the projects applications | 0 |
72,019 | 23,897,672,229 | IssuesEvent | 2022-09-08 15:56:18 | cakephp/debug_kit | https://api.github.com/repos/cakephp/debug_kit | closed | DebugKit's iframe height is extremely small and adds scroll bars on medium resolution monitors | defect | DebugKit's iframe height is extremely small and adds scroll bars on medium resolution monitors, not allowing full display of options. The problem was identified when using a notebook with a 1366 x 768 resolution monitor. Removing the CSS property "overflow: auto" from the ".c-toolbar" class used in `<ul id="toolbar" />` solves the problem.
Problem:

Solves the problem:

| 1.0 | DebugKit's iframe height is extremely small and adds scroll bars on medium resolution monitors - DebugKit's iframe height is extremely small and adds scroll bars on medium resolution monitors, not allowing full display of options. The problem was identified when using a notebook with a 1366 x 768 resolution monitor. Removing the CSS property "overflow: auto" from the ".c-toolbar" class used in `<ul id="toolbar" />` solves the problem.
Problem:

Solves the problem:

| defect | debugkit s iframe height is extremely small and adds scroll bars on medium resolution monitors debugkit s iframe height is extremely small and adds scroll bars on medium resolution monitors not allowing full display of options the problem was identified when using a notebook with a x resolution monitor removing the css property overflow auto from the c toolbar class used in solves the problem problem solves the problem | 1 |
826,427 | 31,623,569,207 | IssuesEvent | 2023-09-06 02:20:28 | puyu-pe/puka | https://api.github.com/repos/puyu-pe/puka | reopened | Mejorar sistema de logs | enhancement priority: highest point: 2 | # **🚀 Enhancement Request**
## **Is your enhancement request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
* No puedo realizar un mejor seguimiento a los logs de depuración
* En lanzamiento a producción (release) se generan tambien mensajes de depuración
---
## **Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->
* Incluir directivas de preprocesador para reconocer un entorno release o debug , y solo ejecutar cierto codigo en producción como en lanzamiento
---
### **Additional context**
<!-- Add any other context or additional information about the problem here.-->
* No se puede hacer un buen seguimiento al flujo de tickets en caso de errores .
<!--📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛
Oh, hi there! 😄
To expedite issue processing, please search open and closed issues before submitting a new one.
Please read our Rules of Conduct at this repository's `.github/CODE_OF_CONDUCT.md`
📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛-->
| 1.0 | Mejorar sistema de logs - # **🚀 Enhancement Request**
## **Is your enhancement request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
* No puedo realizar un mejor seguimiento a los logs de depuración
* En lanzamiento a producción (release) se generan tambien mensajes de depuración
---
## **Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->
* Incluir directivas de preprocesador para reconocer un entorno release o debug , y solo ejecutar cierto codigo en producción como en lanzamiento
---
### **Additional context**
<!-- Add any other context or additional information about the problem here.-->
* No se puede hacer un buen seguimiento al flujo de tickets en caso de errores .
<!--📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛
Oh, hi there! 😄
To expedite issue processing, please search open and closed issues before submitting a new one.
Please read our Rules of Conduct at this repository's `.github/CODE_OF_CONDUCT.md`
📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛-->
| non_defect | mejorar sistema de logs 🚀 enhancement request is your enhancement request related to a problem please describe no puedo realizar un mejor seguimiento a los logs de depuración en lanzamiento a producción release se generan tambien mensajes de depuración describe the solution you d like incluir directivas de preprocesador para reconocer un entorno release o debug y solo ejecutar cierto codigo en producción como en lanzamiento additional context no se puede hacer un buen seguimiento al flujo de tickets en caso de errores 📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛 oh hi there 😄 to expedite issue processing please search open and closed issues before submitting a new one please read our rules of conduct at this repository s github code of conduct md 📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛📛 | 0 |
54,744 | 13,911,146,557 | IssuesEvent | 2020-10-20 16:59:31 | Alfresco/alfresco-php-sdk | https://api.github.com/repos/Alfresco/alfresco-php-sdk | closed | PHPUnit tests do not work | Priority-Medium Type-Defect auto-migrated | ```
The PHPUnit tests do not work with the latest release of PHPUnit.
Following the instructions in the Wiki renders an empty page.
Suggest a revaluation of how we use PHPUnit, given we where so behind the
development of PHPUnit.
```
Original issue reported on code.google.com by `rwether...@gmail.com` on 29 Nov 2011 at 5:40
| 1.0 | PHPUnit tests do not work - ```
The PHPUnit tests do not work with the latest release of PHPUnit.
Following the instructions in the Wiki renders an empty page.
Suggest a revaluation of how we use PHPUnit, given we where so behind the
development of PHPUnit.
```
Original issue reported on code.google.com by `rwether...@gmail.com` on 29 Nov 2011 at 5:40
| defect | phpunit tests do not work the phpunit tests do not work with the latest release of phpunit following the instructions in the wiki renders an empty page suggest a revaluation of how we use phpunit given we where so behind the development of phpunit original issue reported on code google com by rwether gmail com on nov at | 1 |
75,502 | 25,886,444,770 | IssuesEvent | 2022-12-14 14:52:33 | hazelcast/hazelcast | https://api.github.com/repos/hazelcast/hazelcast | opened | NPE in MulticastConfig.hashCode() | Type: Defect | Hazelcast 5.2.1.
com.hazelcast.config.MulticastConfig has a member
`private Boolean loopbackModeEnabled`
and the following hashCode implementation:
> public final int hashCode() {
> int result = (enabled ? 1 : 0);
> result = 31 * result + (multicastGroup != null ? multicastGroup.hashCode() : 0);
> result = 31 * result + multicastPort;
> result = 31 * result + multicastTimeoutSeconds;
> result = 31 * result + multicastTimeToLive;
> result = 31 * result + trustedInterfaces.hashCode();
> result = 31 * result + (loopbackModeEnabled ? 1 : 0);
> return result;
> }
**Describe the bug**
Activating the _hashCode_ method when the _loopbackModeEnabled_ is null (default value if none was provided by the user) causes NPE.
**Expected behavior**
_hashCode_ method does not throw NPE
<!--
Add any other context about the problem here.
Common details that we're often interested in:
- Detailed description of the steps to reproduce your issue
- Logs and stack traces, if available
- Hazelcast version that you use (e.g. 3.4, also specify whether it is a minor release or the latest snapshot)
- If available, integration module versions (e.g. Tomcat, Jetty, Spring, Hibernate). Also, include their detailed configuration information such as web.xml, Hibernate configuration and `context.xml` for Spring
- Cluster size, i.e. the number of Hazelcast cluster members
- Number of the clients
- Version of Java. It is also helpful to mention the JVM parameters
- Operating system. If it is Linux, kernel version is helpful
- Unit test with the `hazelcast.xml` file. If you could include a unit test which reproduces your issue, we would be grateful
-->
| 1.0 | NPE in MulticastConfig.hashCode() - Hazelcast 5.2.1.
com.hazelcast.config.MulticastConfig has a member
`private Boolean loopbackModeEnabled`
and the following hashCode implementation:
> public final int hashCode() {
> int result = (enabled ? 1 : 0);
> result = 31 * result + (multicastGroup != null ? multicastGroup.hashCode() : 0);
> result = 31 * result + multicastPort;
> result = 31 * result + multicastTimeoutSeconds;
> result = 31 * result + multicastTimeToLive;
> result = 31 * result + trustedInterfaces.hashCode();
> result = 31 * result + (loopbackModeEnabled ? 1 : 0);
> return result;
> }
**Describe the bug**
Activating the _hashCode_ method when the _loopbackModeEnabled_ is null (default value if none was provided by the user) causes NPE.
**Expected behavior**
_hashCode_ method does not throw NPE
<!--
Add any other context about the problem here.
Common details that we're often interested in:
- Detailed description of the steps to reproduce your issue
- Logs and stack traces, if available
- Hazelcast version that you use (e.g. 3.4, also specify whether it is a minor release or the latest snapshot)
- If available, integration module versions (e.g. Tomcat, Jetty, Spring, Hibernate). Also, include their detailed configuration information such as web.xml, Hibernate configuration and `context.xml` for Spring
- Cluster size, i.e. the number of Hazelcast cluster members
- Number of the clients
- Version of Java. It is also helpful to mention the JVM parameters
- Operating system. If it is Linux, kernel version is helpful
- Unit test with the `hazelcast.xml` file. If you could include a unit test which reproduces your issue, we would be grateful
-->
| defect | npe in multicastconfig hashcode hazelcast com hazelcast config multicastconfig has a member private boolean loopbackmodeenabled and the following hashcode implementation public final int hashcode int result enabled result result multicastgroup null multicastgroup hashcode result result multicastport result result multicasttimeoutseconds result result multicasttimetolive result result trustedinterfaces hashcode result result loopbackmodeenabled return result describe the bug activating the hashcode method when the loopbackmodeenabled is null default value if none was provided by the user causes npe expected behavior hashcode method does not throw npe add any other context about the problem here common details that we re often interested in detailed description of the steps to reproduce your issue logs and stack traces if available hazelcast version that you use e g also specify whether it is a minor release or the latest snapshot if available integration module versions e g tomcat jetty spring hibernate also include their detailed configuration information such as web xml hibernate configuration and context xml for spring cluster size i e the number of hazelcast cluster members number of the clients version of java it is also helpful to mention the jvm parameters operating system if it is linux kernel version is helpful unit test with the hazelcast xml file if you could include a unit test which reproduces your issue we would be grateful | 1 |
177,673 | 28,963,462,842 | IssuesEvent | 2023-05-10 05:52:40 | openedx/paragon | https://api.github.com/repos/openedx/paragon | closed | Tertiary `Button` does not match its design in focused state | bug raccoon-gang design | On the [docs site](https://paragon-openedx.netlify.app/components/button/#core-buttons) with `edx.org` theme selected `Button` with tertiary variant has white background in focused state:

According to [design](https://www.figma.com/file/eGmDp94FlqEr4iSqy1Uc1K/Paragon-Design-System?type=design&node-id=9076-32&t=bpFi2tGW88bny1e9-0) background should be transparent

This is likely caused by [these styles](https://github.com/edx/brand-edx.org/blob/master/paragon/_overrides.scss#L95) in `edx.org` brand repo.
```[tasklist]
### AC
- [ ] Ensure tertiary `Button` has the same styles as in design when in focus state
- [ ] Validate that all buttons match design in all states
```
| 1.0 | Tertiary `Button` does not match its design in focused state - On the [docs site](https://paragon-openedx.netlify.app/components/button/#core-buttons) with `edx.org` theme selected `Button` with tertiary variant has white background in focused state:

According to [design](https://www.figma.com/file/eGmDp94FlqEr4iSqy1Uc1K/Paragon-Design-System?type=design&node-id=9076-32&t=bpFi2tGW88bny1e9-0) background should be transparent

This is likely caused by [these styles](https://github.com/edx/brand-edx.org/blob/master/paragon/_overrides.scss#L95) in `edx.org` brand repo.
```[tasklist]
### AC
- [ ] Ensure tertiary `Button` has the same styles as in design when in focus state
- [ ] Validate that all buttons match design in all states
```
| non_defect | tertiary button does not match its design in focused state on the with edx org theme selected button with tertiary variant has white background in focused state according to background should be transparent this is likely caused by in edx org brand repo ac ensure tertiary button has the same styles as in design when in focus state validate that all buttons match design in all states | 0 |
60,690 | 17,023,494,183 | IssuesEvent | 2021-07-03 02:18:48 | tomhughes/trac-tickets | https://api.github.com/repos/tomhughes/trac-tickets | closed | Problem with Template:RU:* | Component: website Priority: major Resolution: invalid Type: defect | **[Submitted to the original trac issue database at 1.17pm, Tuesday, 13th October 2009]**
{{Fi:KeyDescription}} - going to Template:Fi:KeyDescription - And it is good, but
{{RU:KeyDescription}} - going to RU:KeyDescription - it is BAD. Anybody can FIX it? | 1.0 | Problem with Template:RU:* - **[Submitted to the original trac issue database at 1.17pm, Tuesday, 13th October 2009]**
{{Fi:KeyDescription}} - going to Template:Fi:KeyDescription - And it is good, but
{{RU:KeyDescription}} - going to RU:KeyDescription - it is BAD. Anybody can FIX it? | defect | problem with template ru fi keydescription going to template fi keydescription and it is good but ru keydescription going to ru keydescription it is bad anybody can fix it | 1 |
67,145 | 20,916,121,046 | IssuesEvent | 2022-03-24 13:35:20 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | "Show more" link on Invite dialog | T-Defect | ### Steps to reproduce
1. Open the invite dialog
### Outcome
#### What did you expect?
Margin between the user row and `Show more` should be retained.

#### What happened instead?
Margin setting is not respected.

### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
localhost
### Application version
develop branch
### Homeserver
_No response_
### Will you send logs?
No | 1.0 | "Show more" link on Invite dialog - ### Steps to reproduce
1. Open the invite dialog
### Outcome
#### What did you expect?
Margin between the user row and `Show more` should be retained.

#### What happened instead?
Margin setting is not respected.

### Operating system
_No response_
### Browser information
_No response_
### URL for webapp
localhost
### Application version
develop branch
### Homeserver
_No response_
### Will you send logs?
No | defect | show more link on invite dialog steps to reproduce open the invite dialog outcome what did you expect margin between the user row and show more should be retained what happened instead margin setting is not respected operating system no response browser information no response url for webapp localhost application version develop branch homeserver no response will you send logs no | 1 |
24,794 | 4,104,037,710 | IssuesEvent | 2016-06-05 03:38:40 | zealdocs/zeal | https://api.github.com/repos/zealdocs/zeal | closed | Zeal can be launched twice | Component: Core Resolution: Fixed Type: Defect | Original report: blakeembrey/atom-dash#33.
Test case:
```bash
(zeal 1 &) && (zeal 2 &)
```
| 1.0 | Zeal can be launched twice - Original report: blakeembrey/atom-dash#33.
Test case:
```bash
(zeal 1 &) && (zeal 2 &)
```
| defect | zeal can be launched twice original report blakeembrey atom dash test case bash zeal zeal | 1 |
2,891 | 2,607,964,741 | IssuesEvent | 2015-02-26 00:41:49 | chrsmithdemos/leveldb | https://api.github.com/repos/chrsmithdemos/leveldb | closed | Too Many deleted fd | auto-migrated Priority-Medium Type-Defect | ```
I use leveldb on Linux, there are some read/write in each second.
After running three days, there are 1386 deleted fd. I think it is abnormal.
the attachment is the output of "ls -al /proc/$pid/fd"
```
-----
Original issue reported on code.google.com by `yafei.zh...@langtaojin.com` on 12 Jan 2012 at 9:05
Attachments:
* [fd.log](https://storage.googleapis.com/google-code-attachments/leveldb/issue-66/comment-0/fd.log)
| 1.0 | Too Many deleted fd - ```
I use leveldb on Linux, there are some read/write in each second.
After running three days, there are 1386 deleted fd. I think it is abnormal.
the attachment is the output of "ls -al /proc/$pid/fd"
```
-----
Original issue reported on code.google.com by `yafei.zh...@langtaojin.com` on 12 Jan 2012 at 9:05
Attachments:
* [fd.log](https://storage.googleapis.com/google-code-attachments/leveldb/issue-66/comment-0/fd.log)
| defect | too many deleted fd i use leveldb on linux there are some read write in each second after running three days there are deleted fd i think it is abnormal the attachment is the output of ls al proc pid fd original issue reported on code google com by yafei zh langtaojin com on jan at attachments | 1 |
762,749 | 26,728,571,613 | IssuesEvent | 2023-01-30 00:41:46 | AlphaBeta906/BloodAlchemy2 | https://api.github.com/repos/AlphaBeta906/BloodAlchemy2 | closed | Migrate data fetching to React Query | priority: 2-medium release: canary issue: migration | ## Introduction
React Query simplifies data fetching APIs.
## Tasks
- [x] Migrate all code to React Query | 1.0 | Migrate data fetching to React Query - ## Introduction
React Query simplifies data fetching APIs.
## Tasks
- [x] Migrate all code to React Query | non_defect | migrate data fetching to react query introduction react query simplifies data fetching apis tasks migrate all code to react query | 0 |
271,289 | 20,627,434,183 | IssuesEvent | 2022-03-08 00:45:22 | bounswe/bounswe2022group6 | https://api.github.com/repos/bounswe/bounswe2022group6 | closed | Creation of a Communication Plan Page | Documentation Wiki Priority: Low State: Approved State: Completed | We need to create a communication plan with the following information:
- Who will participate
- Where
- Purpose
- When
After creation, the link should be added to the [sidebar](https://github.com/bounswe/bounswe2022group6/wiki/_Sidebar/_edit).
Deadline: 07.03.2022 | 1.0 | Creation of a Communication Plan Page - We need to create a communication plan with the following information:
- Who will participate
- Where
- Purpose
- When
After creation, the link should be added to the [sidebar](https://github.com/bounswe/bounswe2022group6/wiki/_Sidebar/_edit).
Deadline: 07.03.2022 | non_defect | creation of a communication plan page we need to create a communication plan with the following information who will participate where purpose when after creation the link should be added to the deadline | 0 |
9,250 | 2,615,141,397 | IssuesEvent | 2015-03-01 06:16:05 | chrsmith/reaver-wps | https://api.github.com/repos/chrsmith/reaver-wps | closed | error: sqlite3 library not found! | auto-migrated Priority-Medium Type-Defect | ```
What steps will reproduce the problem?
1. sudo ./configure
2. checking ...
3. error: sqlite3 library not found!
What version of the product are you using? On what operating system?
I'm using the 1.3 version in xubuntu 11.10.
```
Original issue reported on code.google.com by `mitropou...@gmail.com` on 5 Jan 2012 at 2:40 | 1.0 | error: sqlite3 library not found! - ```
What steps will reproduce the problem?
1. sudo ./configure
2. checking ...
3. error: sqlite3 library not found!
What version of the product are you using? On what operating system?
I'm using the 1.3 version in xubuntu 11.10.
```
Original issue reported on code.google.com by `mitropou...@gmail.com` on 5 Jan 2012 at 2:40 | defect | error library not found what steps will reproduce the problem sudo configure checking error library not found what version of the product are you using on what operating system i m using the version in xubuntu original issue reported on code google com by mitropou gmail com on jan at | 1 |
50,907 | 12,601,916,744 | IssuesEvent | 2020-06-11 10:43:38 | googleapis/nodejs-spanner | https://api.github.com/repos/googleapis/nodejs-spanner | closed | Mocha Tests: should query an example table with an additional column and return matching rows failed | api: spanner buildcop: issue priority: p1 type: bug | Note: #974 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.
----
commit: 8973cbcc9158b37650af2edb6015c575da1cc3ec
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/8ddd9032-02b7-43d0-9fd1-2d1e7b9a7841), [Sponge](http://sponge2/8ddd9032-02b7-43d0-9fd1-2d1e7b9a7841)
status: failed
<details><summary>Test output</summary><br><pre>expected '' to match /SingerId: 1, AlbumId: 1, MarketingBudget: 100000/
AssertionError: expected '' to match /SingerId: 1, AlbumId: 1, MarketingBudget: 100000/
at Context.it (system-test/spanner.test.js:261:12)</pre></details> | 1.0 | Mocha Tests: should query an example table with an additional column and return matching rows failed - Note: #974 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.
----
commit: 8973cbcc9158b37650af2edb6015c575da1cc3ec
buildURL: [Build Status](https://source.cloud.google.com/results/invocations/8ddd9032-02b7-43d0-9fd1-2d1e7b9a7841), [Sponge](http://sponge2/8ddd9032-02b7-43d0-9fd1-2d1e7b9a7841)
status: failed
<details><summary>Test output</summary><br><pre>expected '' to match /SingerId: 1, AlbumId: 1, MarketingBudget: 100000/
AssertionError: expected '' to match /SingerId: 1, AlbumId: 1, MarketingBudget: 100000/
at Context.it (system-test/spanner.test.js:261:12)</pre></details> | non_defect | mocha tests should query an example table with an additional column and return matching rows failed note was also for this test but it was closed more than days ago so i didn t mark it flaky commit buildurl status failed test output expected to match singerid albumid marketingbudget assertionerror expected to match singerid albumid marketingbudget at context it system test spanner test js | 0 |
15,093 | 2,848,073,132 | IssuesEvent | 2015-05-29 20:37:18 | dmnfarrell/tkintertable | https://api.github.com/repos/dmnfarrell/tkintertable | closed | Table not redrawn when embodying window is maximized | auto-migrated Priority-Medium Type-Defect | ```
What steps will reproduce the problem?
1. Create a normal TableCanvas with rows and height set to larger values (say
30*20)
2. Click window maximize button
3. The contents of TableCanvas outside the initial window range are not
properly displayed in the maximized window.
What is the expected output? What do you see instead?
All the contents should be properly displayed.
What version of the product are you using? On what operating system?
Latest. Linux
Please provide any additional information below.
Suggestions: in TableCanvas.createTableFrame() add:
# Fix the bug of not being properly redrawn during maximizing
# the default behavior only bind <Configure> event for
# the parent frame BUT NOT for the inherited Canvas class.
self.bind('<Configure>', lambda event: self.redrawTable())
```
Original issue reported on code.google.com by `deve...@gmail.com` on 29 Aug 2013 at 3:13 | 1.0 | Table not redrawn when embodying window is maximized - ```
What steps will reproduce the problem?
1. Create a normal TableCanvas with rows and height set to larger values (say
30*20)
2. Click window maximize button
3. The contents of TableCanvas outside the initial window range are not
properly displayed in the maximized window.
What is the expected output? What do you see instead?
All the contents should be properly displayed.
What version of the product are you using? On what operating system?
Latest. Linux
Please provide any additional information below.
Suggestions: in TableCanvas.createTableFrame() add:
# Fix the bug of not being properly redrawn during maximizing
# the default behavior only bind <Configure> event for
# the parent frame BUT NOT for the inherited Canvas class.
self.bind('<Configure>', lambda event: self.redrawTable())
```
Original issue reported on code.google.com by `deve...@gmail.com` on 29 Aug 2013 at 3:13 | defect | table not redrawn when embodying window is maximized what steps will reproduce the problem create a normal tablecanvas with rows and height set to larger values say click window maximize button the contents of tablecanvas outside the initial window range are not properly displayed in the maximized window what is the expected output what do you see instead all the contents should be properly displayed what version of the product are you using on what operating system latest linux please provide any additional information below suggestions in tablecanvas createtableframe add fix the bug of not being properly redrawn during maximizing the default behavior only bind event for the parent frame but not for the inherited canvas class self bind lambda event self redrawtable original issue reported on code google com by deve gmail com on aug at | 1 |
50,706 | 13,187,688,871 | IssuesEvent | 2020-08-13 04:14:35 | icecube-trac/tix3 | https://api.github.com/repos/icecube-trac/tix3 | closed | [clast] no sphinx documentation (Trac #1210) | Migrated from Trac combo reconstruction defect | Add something to `resources/docs/index.rst`. Even a link to the doxygen would be useful.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1210">https://code.icecube.wisc.edu/ticket/1210</a>, reported by david.schultz and owned by markw04</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:14:55",
"description": "Add something to `resources/docs/index.rst`. Even a link to the doxygen would be useful.",
"reporter": "david.schultz",
"cc": "",
"resolution": "fixed",
"_ts": "1550067295757382",
"component": "combo reconstruction",
"summary": "[clast] no sphinx documentation",
"priority": "blocker",
"keywords": "",
"time": "2015-08-19T19:28:52",
"milestone": "",
"owner": "markw04",
"type": "defect"
}
```
</p>
</details>
| 1.0 | [clast] no sphinx documentation (Trac #1210) - Add something to `resources/docs/index.rst`. Even a link to the doxygen would be useful.
<details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/ticket/1210">https://code.icecube.wisc.edu/ticket/1210</a>, reported by david.schultz and owned by markw04</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2019-02-13T14:14:55",
"description": "Add something to `resources/docs/index.rst`. Even a link to the doxygen would be useful.",
"reporter": "david.schultz",
"cc": "",
"resolution": "fixed",
"_ts": "1550067295757382",
"component": "combo reconstruction",
"summary": "[clast] no sphinx documentation",
"priority": "blocker",
"keywords": "",
"time": "2015-08-19T19:28:52",
"milestone": "",
"owner": "markw04",
"type": "defect"
}
```
</p>
</details>
| defect | no sphinx documentation trac add something to resources docs index rst even a link to the doxygen would be useful migrated from json status closed changetime description add something to resources docs index rst even a link to the doxygen would be useful reporter david schultz cc resolution fixed ts component combo reconstruction summary no sphinx documentation priority blocker keywords time milestone owner type defect | 1 |
25,434 | 5,165,704,593 | IssuesEvent | 2017-01-17 14:28:23 | OSGeo/proj.4 | https://api.github.com/repos/OSGeo/proj.4 | closed | Update links on github and trac to proj4.org | C: Documentation T: task | With #466 the last remaining pages from the old trac website has been migrated to proj4.org. Links on github and trac should be changed to proj4.org.
Additionally the github wiki and information on trac.osgeo.org/proj should be removed or hidden. | 1.0 | Update links on github and trac to proj4.org - With #466 the last remaining pages from the old trac website has been migrated to proj4.org. Links on github and trac should be changed to proj4.org.
Additionally the github wiki and information on trac.osgeo.org/proj should be removed or hidden. | non_defect | update links on github and trac to org with the last remaining pages from the old trac website has been migrated to org links on github and trac should be changed to org additionally the github wiki and information on trac osgeo org proj should be removed or hidden | 0 |
731,114 | 25,202,669,476 | IssuesEvent | 2022-11-13 09:50:23 | gruenes-brett/webseite | https://api.github.com/repos/gruenes-brett/webseite | closed | Marking events as cancelled | Medium priority | It should be possible to mark events as cancelled. They should still be shown on the website with a well visible note. | 1.0 | Marking events as cancelled - It should be possible to mark events as cancelled. They should still be shown on the website with a well visible note. | non_defect | marking events as cancelled it should be possible to mark events as cancelled they should still be shown on the website with a well visible note | 0 |
669,170 | 22,614,845,738 | IssuesEvent | 2022-06-29 20:48:08 | RAF-SI-2021/Banka-Back | https://api.github.com/repos/RAF-SI-2021/Banka-Back | closed | Modifikacija kupovine hartija od vrednosti | priority/high area/backend | Na ekranu/prozoru za kupovinu hartija, klikom na “Buy/Purchase” dugme potrebno je da se otvori novi prozor/opcija koja ce da upita klijenta da li on zeli da tu hartiju od vrednosti kupi preko “Cash” ili “Margin” racuna.
Ako vrednost izabrane hartije od vrednosti iznosi manje od $5, ne treba ni prikazivati dugme za izbor Marznog racuna, samo Cash.
Objedinjene sredstava na ova dva naloga nije dozvoljeno jer je njihova logistika razlita.
Obrazlozenje:
* “Cash” racun podrazumeva da na racunu postoji veca suma novca kojom se kupuju hartije od vrednosti u celosti.
* “Margin” racun podrazumeva da nema dovoljno sredstava da bi se izvrsila transakcija u potpunosti i na njega se ulaze novac kada god je to potrebno - prilikom kupovine za Initial Margin ili za izmirenje Margin Call-a.
Ako se selektuje opcija “Cash”, uputiti se na [Kes racun](https://docs.google.com/document/d/1JSg3gRm-h-1vgdvK2gQE0zggobFV_hElW173kjm-4Pk/edit#heading=h.kjcwioa4x3xo).
Ako se selektuje opcija “Margin” potrebno je uraditi dodatne korake:
* Ukoliko je kupovina potvrdjena potrebno je obavestiti kupca o uspesnoj kupovini
* Potrebno je ovu transakciju evidentirati i dodati u tabelu za marzne transakcije:
* Polje Ulog se popunjava vrednoscu iz Initial Margin za tu transakciju
* Polje Pozajmljeni novac se izracunava kao -> Ukupan iznos hartije od vrednosti koja se kupuje - Ulog (Initial Margin sa FrontEnda)
* Polje Iznos kamata se racuna kao Pozajmljeni novac*0.05. Futures transakcije nemaju kamatu i za njih je uvek iznos 0. | 1.0 | Modifikacija kupovine hartija od vrednosti - Na ekranu/prozoru za kupovinu hartija, klikom na “Buy/Purchase” dugme potrebno je da se otvori novi prozor/opcija koja ce da upita klijenta da li on zeli da tu hartiju od vrednosti kupi preko “Cash” ili “Margin” racuna.
Ako vrednost izabrane hartije od vrednosti iznosi manje od $5, ne treba ni prikazivati dugme za izbor Marznog racuna, samo Cash.
Objedinjene sredstava na ova dva naloga nije dozvoljeno jer je njihova logistika razlita.
Obrazlozenje:
* “Cash” racun podrazumeva da na racunu postoji veca suma novca kojom se kupuju hartije od vrednosti u celosti.
* “Margin” racun podrazumeva da nema dovoljno sredstava da bi se izvrsila transakcija u potpunosti i na njega se ulaze novac kada god je to potrebno - prilikom kupovine za Initial Margin ili za izmirenje Margin Call-a.
Ako se selektuje opcija “Cash”, uputiti se na [Kes racun](https://docs.google.com/document/d/1JSg3gRm-h-1vgdvK2gQE0zggobFV_hElW173kjm-4Pk/edit#heading=h.kjcwioa4x3xo).
Ako se selektuje opcija “Margin” potrebno je uraditi dodatne korake:
* Ukoliko je kupovina potvrdjena potrebno je obavestiti kupca o uspesnoj kupovini
* Potrebno je ovu transakciju evidentirati i dodati u tabelu za marzne transakcije:
* Polje Ulog se popunjava vrednoscu iz Initial Margin za tu transakciju
* Polje Pozajmljeni novac se izracunava kao -> Ukupan iznos hartije od vrednosti koja se kupuje - Ulog (Initial Margin sa FrontEnda)
* Polje Iznos kamata se racuna kao Pozajmljeni novac*0.05. Futures transakcije nemaju kamatu i za njih je uvek iznos 0. | non_defect | modifikacija kupovine hartija od vrednosti na ekranu prozoru za kupovinu hartija klikom na “buy purchase” dugme potrebno je da se otvori novi prozor opcija koja ce da upita klijenta da li on zeli da tu hartiju od vrednosti kupi preko “cash” ili “margin” racuna ako vrednost izabrane hartije od vrednosti iznosi manje od ne treba ni prikazivati dugme za izbor marznog racuna samo cash objedinjene sredstava na ova dva naloga nije dozvoljeno jer je njihova logistika razlita obrazlozenje “cash” racun podrazumeva da na racunu postoji veca suma novca kojom se kupuju hartije od vrednosti u celosti “margin” racun podrazumeva da nema dovoljno sredstava da bi se izvrsila transakcija u potpunosti i na njega se ulaze novac kada god je to potrebno prilikom kupovine za initial margin ili za izmirenje margin call a ako se selektuje opcija “cash” uputiti se na ako se selektuje opcija “margin” potrebno je uraditi dodatne korake ukoliko je kupovina potvrdjena potrebno je obavestiti kupca o uspesnoj kupovini potrebno je ovu transakciju evidentirati i dodati u tabelu za marzne transakcije polje ulog se popunjava vrednoscu iz initial margin za tu transakciju polje pozajmljeni novac se izracunava kao ukupan iznos hartije od vrednosti koja se kupuje ulog initial margin sa frontenda polje iznos kamata se racuna kao pozajmljeni novac futures transakcije nemaju kamatu i za njih je uvek iznos | 0 |
209,183 | 7,166,075,568 | IssuesEvent | 2018-01-29 16:11:57 | alces-software/metalware | https://api.github.com/repos/alces-software/metalware | closed | Plugins management | enhancement high priority | At the moment, the knowledgebase contains guides and scripts for setting up additional, optional components to metalware. These could be further integrated (whilst staying separated from both metalware and the default repo) by implementing in a similar way to the `clusterware handler` setup. For example:
```
metal plugin enable ganglia,nagios
```
To download the scripts and make `domain.yaml` changes for Ganglia & Nagios client/server setup. | 1.0 | Plugins management - At the moment, the knowledgebase contains guides and scripts for setting up additional, optional components to metalware. These could be further integrated (whilst staying separated from both metalware and the default repo) by implementing in a similar way to the `clusterware handler` setup. For example:
```
metal plugin enable ganglia,nagios
```
To download the scripts and make `domain.yaml` changes for Ganglia & Nagios client/server setup. | non_defect | plugins management at the moment the knowledgebase contains guides and scripts for setting up additional optional components to metalware these could be further integrated whilst staying separated from both metalware and the default repo by implementing in a similar way to the clusterware handler setup for example metal plugin enable ganglia nagios to download the scripts and make domain yaml changes for ganglia nagios client server setup | 0 |
70,322 | 23,120,557,906 | IssuesEvent | 2022-07-27 20:59:15 | primefaces/primefaces | https://api.github.com/repos/primefaces/primefaces | opened | CommandButton: Button action does not properly update the button disabled state | :lady_beetle: defect :bangbang: needs-triage | ### Describe the bug
When a command button action willingly sets the disabled state of the button, the visual state of the button is still enabled. After another page update, this is reflected properly.
### Reproducer
Added rightaway.
### Expected behavior
The button state should be disabled after the action finishes.
### PrimeFaces edition
Community
### PrimeFaces version
12.0.0-RC2
### Theme
any
### JSF implementation
All
### JSF version
2.3
### Browser(s)
_No response_ | 1.0 | CommandButton: Button action does not properly update the button disabled state - ### Describe the bug
When a command button action willingly sets the disabled state of the button, the visual state of the button is still enabled. After another page update, this is reflected properly.
### Reproducer
Added rightaway.
### Expected behavior
The button state should be disabled after the action finishes.
### PrimeFaces edition
Community
### PrimeFaces version
12.0.0-RC2
### Theme
any
### JSF implementation
All
### JSF version
2.3
### Browser(s)
_No response_ | defect | commandbutton button action does not properly update the button disabled state describe the bug when a command button action willingly sets the disabled state of the button the visual state of the button is still enabled after another page update this is reflected properly reproducer added rightaway expected behavior the button state should be disabled after the action finishes primefaces edition community primefaces version theme any jsf implementation all jsf version browser s no response | 1 |
648,015 | 21,162,792,157 | IssuesEvent | 2022-04-07 10:55:02 | sydevs/WeMeditate | https://api.github.com/repos/sydevs/WeMeditate | closed | Migrate Heroku servers to European region | enhancement low priority | This will bring the servers closer to the center of our user base, and help calm yogis who have concerns about the servers being hosted in the US.
Instructions - https://devcenter.heroku.com/articles/app-migration | 1.0 | Migrate Heroku servers to European region - This will bring the servers closer to the center of our user base, and help calm yogis who have concerns about the servers being hosted in the US.
Instructions - https://devcenter.heroku.com/articles/app-migration | non_defect | migrate heroku servers to european region this will bring the servers closer to the center of our user base and help calm yogis who have concerns about the servers being hosted in the us instructions | 0 |
52,322 | 22,151,909,708 | IssuesEvent | 2022-06-03 17:49:00 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | Documentation Update: Overview | console-services | ## Description
As part of the [Console Services Documentation efforts](https://github.com/department-of-veterans-affairs/va.gov-team/issues/38917) this document needs to be reviewed for correctness and updated as needed.
https://vfs.atlassian.net/wiki/spaces/pilot/pages/844955712/Overview
## Acceptance Criteria
- [x] Document is reviewed for correctness
- [x] Document is updated as necessary | 1.0 | Documentation Update: Overview - ## Description
As part of the [Console Services Documentation efforts](https://github.com/department-of-veterans-affairs/va.gov-team/issues/38917) this document needs to be reviewed for correctness and updated as needed.
https://vfs.atlassian.net/wiki/spaces/pilot/pages/844955712/Overview
## Acceptance Criteria
- [x] Document is reviewed for correctness
- [x] Document is updated as necessary | non_defect | documentation update overview description as part of the this document needs to be reviewed for correctness and updated as needed acceptance criteria document is reviewed for correctness document is updated as necessary | 0 |
228 | 2,585,857,356 | IssuesEvent | 2015-02-17 05:19:48 | dotnet/corefx | https://api.github.com/repos/dotnet/corefx | closed | "Clean" target removes dependencies | Infrastructure | The "Clean" target of the build script intentionally removes the "src\packages" directory, causing the next build to have to restore them again. This is unnecessary, and atypical compared to most build scripts. "Clean" typically removes the outputs of the build process, not the inputs.
If there is a need for an ability to wipe out the packages directory, I propose putting this functionality under a separate target, "CleanDependencies". | 1.0 | "Clean" target removes dependencies - The "Clean" target of the build script intentionally removes the "src\packages" directory, causing the next build to have to restore them again. This is unnecessary, and atypical compared to most build scripts. "Clean" typically removes the outputs of the build process, not the inputs.
If there is a need for an ability to wipe out the packages directory, I propose putting this functionality under a separate target, "CleanDependencies". | non_defect | clean target removes dependencies the clean target of the build script intentionally removes the src packages directory causing the next build to have to restore them again this is unnecessary and atypical compared to most build scripts clean typically removes the outputs of the build process not the inputs if there is a need for an ability to wipe out the packages directory i propose putting this functionality under a separate target cleandependencies | 0 |
15,232 | 2,850,341,569 | IssuesEvent | 2015-05-31 14:01:18 | damonkohler/sl4a | https://api.github.com/repos/damonkohler/sl4a | opened | Make an official website. | auto-migrated Priority-Medium Type-Defect | _From @GoogleCodeExporter on May 31, 2015 11:31_
```
This project looks promising. An official website for this project would
greatly improve it's visibility.
```
Original issue reported on code.google.com by `TruSktr` on 9 Sep 2012 at 8:58
_Copied from original issue: damonkohler/android-scripting#657_ | 1.0 | Make an official website. - _From @GoogleCodeExporter on May 31, 2015 11:31_
```
This project looks promising. An official website for this project would
greatly improve it's visibility.
```
Original issue reported on code.google.com by `TruSktr` on 9 Sep 2012 at 8:58
_Copied from original issue: damonkohler/android-scripting#657_ | defect | make an official website from googlecodeexporter on may this project looks promising an official website for this project would greatly improve it s visibility original issue reported on code google com by trusktr on sep at copied from original issue damonkohler android scripting | 1 |
130,758 | 18,170,283,706 | IssuesEvent | 2021-09-27 19:08:43 | snowdensb/job-dsl-plugin | https://api.github.com/repos/snowdensb/job-dsl-plugin | opened | CVE-2019-11358 (Medium) detected in multiple libraries | security vulnerability | ## CVE-2019-11358 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.11.1.jar</b>, <b>jquery-1.11.1.min.js</b>, <b>jquery-1.11.1.js</b></p></summary>
<p>
<details><summary><b>jquery-1.11.1.jar</b></p></summary>
<p>WebJar for jQuery</p>
<p>Library home page: <a href="http://webjars.org">http://webjars.org</a></p>
<p>Path to dependency file: job-dsl-plugin/job-dsl-api-viewer/build.gradle</p>
<p>Path to vulnerable library: caches/modules-2/files-2.1/org.webjars/jquery/1.11.1/195eda53ac8beba7bff08f9919b48c954c858590/jquery-1.11.1.jar</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.jar** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.11.1.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js</a></p>
<p>Path to vulnerable library: /job-dsl-api-viewer/build/webjars/jquery/1.11.1/jquery.min.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.11.1.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.js</a></p>
<p>Path to vulnerable library: /job-dsl-api-viewer/build/webjars/jquery/1.11.1/jquery.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.js** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/snowdensb/job-dsl-plugin/commit/2e8946fc25b6060b5637631b8813fe86b6da687a">2e8946fc25b6060b5637631b8813fe86b6da687a</a></p>
<p>Found in base branch: <b>master</b></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>
jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype.
<p>Publish Date: 2019-04-20
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</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.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p>
<p>Release Date: 2019-04-20</p>
<p>Fix Resolution: 3.4.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.webjars","packageName":"jquery","packageVersion":"1.11.1","packageFilePaths":["/job-dsl-api-viewer/build.gradle"],"isTransitiveDependency":false,"dependencyTree":"org.webjars:jquery:1.11.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"},{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.11.1","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"jquery:1.11.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"},{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.11.1","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"jquery:1.11.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2019-11358","vulnerabilityDetails":"jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | True | CVE-2019-11358 (Medium) detected in multiple libraries - ## CVE-2019-11358 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.11.1.jar</b>, <b>jquery-1.11.1.min.js</b>, <b>jquery-1.11.1.js</b></p></summary>
<p>
<details><summary><b>jquery-1.11.1.jar</b></p></summary>
<p>WebJar for jQuery</p>
<p>Library home page: <a href="http://webjars.org">http://webjars.org</a></p>
<p>Path to dependency file: job-dsl-plugin/job-dsl-api-viewer/build.gradle</p>
<p>Path to vulnerable library: caches/modules-2/files-2.1/org.webjars/jquery/1.11.1/195eda53ac8beba7bff08f9919b48c954c858590/jquery-1.11.1.jar</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.jar** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.11.1.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js</a></p>
<p>Path to vulnerable library: /job-dsl-api-viewer/build/webjars/jquery/1.11.1/jquery.min.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.11.1.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.js</a></p>
<p>Path to vulnerable library: /job-dsl-api-viewer/build/webjars/jquery/1.11.1/jquery.js</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.js** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/snowdensb/job-dsl-plugin/commit/2e8946fc25b6060b5637631b8813fe86b6da687a">2e8946fc25b6060b5637631b8813fe86b6da687a</a></p>
<p>Found in base branch: <b>master</b></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>
jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype.
<p>Publish Date: 2019-04-20
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</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.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p>
<p>Release Date: 2019-04-20</p>
<p>Fix Resolution: 3.4.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.webjars","packageName":"jquery","packageVersion":"1.11.1","packageFilePaths":["/job-dsl-api-viewer/build.gradle"],"isTransitiveDependency":false,"dependencyTree":"org.webjars:jquery:1.11.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"},{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.11.1","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"jquery:1.11.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"},{"packageType":"JavaScript","packageName":"jquery","packageVersion":"1.11.1","packageFilePaths":[],"isTransitiveDependency":false,"dependencyTree":"jquery:1.11.1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"3.4.0"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2019-11358","vulnerabilityDetails":"jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358","cvss3Severity":"medium","cvss3Score":"6.1","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Changed","C":"Low","UI":"Required","AV":"Network","I":"Low"},"extraData":{}}</REMEDIATE> --> | non_defect | cve medium detected in multiple libraries cve medium severity vulnerability vulnerable libraries jquery jar jquery min js jquery js jquery jar webjar for jquery library home page a href path to dependency file job dsl plugin job dsl api viewer build gradle path to vulnerable library caches modules files org webjars jquery jquery jar dependency hierarchy x jquery jar vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library job dsl api viewer build webjars jquery jquery min js dependency hierarchy x jquery min js vulnerable library jquery js javascript library for dom operations library home page a href path to vulnerable library job dsl api viewer build webjars jquery jquery js dependency hierarchy x jquery js vulnerable library found in head commit a href found in base branch master vulnerability details jquery before as used in drupal backdrop cms and other products mishandles jquery extend true because of object prototype pollution if an unsanitized source object contained an enumerable proto property it could extend the native object prototype publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low 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 istransitivedependency false dependencytree org webjars jquery isminimumfixversionavailable true minimumfixversion packagetype javascript packagename jquery packageversion packagefilepaths istransitivedependency false dependencytree jquery isminimumfixversionavailable true minimumfixversion packagetype javascript packagename jquery packageversion packagefilepaths istransitivedependency false dependencytree jquery isminimumfixversionavailable true minimumfixversion basebranches vulnerabilityidentifier cve vulnerabilitydetails jquery before as used in drupal backdrop cms and other products mishandles jquery extend true because of object prototype pollution if an unsanitized source object contained an enumerable proto property it could extend the native object prototype vulnerabilityurl | 0 |
44,410 | 12,141,447,405 | IssuesEvent | 2020-04-23 22:34:44 | primefaces/primefaces | https://api.github.com/repos/primefaces/primefaces | closed | Inplace: switches to output mode even if validation fails when facets are used | defect | ## 1) Environment
- PrimeFaces version: 6.2
- Does it work on the newest released PrimeFaces version? NO
- Does it work on the newest sources in GitHub? NO
- Application server + version: Tomcat 8.0.39
- Affected browsers: Firefox 75
## 2) Expected behavior
When I have a `p:inplace` with `editor="true"` and nested `f:facet`s for input and output, if I press on the confirm button but validation fails, the component does not switch to output mode and just updates its input facet contents.
## 3) Actual behavior
When I have a `p:inplace` with `editor="true"` and nested `f:facet`s for input and output, if I press on the confirm button but validation fails, the component switches to output mode, without applying changes. Switching again to input mode, shows validation error consequences.
## 4) Steps to reproduce
- create a `<p:inplace editor="true">` with nested `<f:facet name="output">` and `<f:facet name="input">`
- in the `<f:facet name="input">` put an input component with some validation rules and a `<p:message>`
- click on the `<p:inplace>`
- change the input value to an invalid value
- click on the confirm button
## 5) Sample XHTML
```xml
<p:inplace editor="true">
<f:facet name="output">
<h:outputText value="#{bean.foo}">
<f:convertNumber />
</h:outputText>
</f:facet>
<f:facet name="input">
<p:inputText id="fooInput" value="#{bean.foo}" required="true">
<f:convertNumber />
<f:validateDoubleRange minimum="0" maximum="100" />
</p:inputText>
<p:message id="fooMessage" for="fooInput" />
</f:facet>
<p:ajax event="cancel" global="false" />
<p:ajax event="save" global="false" />
</p:inplace>
```
## 6) Sample bean
```java
public class Bean {
private double foo;
// getters and setters omitted
}
```
See the difference if you change the facelet fragment to:
```xml
<p:inplace editor="true" label="#{bean.foo}">
<p:inputText id="fooInput" value="#{bean.foo}" required="true">
<f:convertNumber />
<f:validateDoubleRange minimum="0" maximum="100" />
</p:inputText>
<p:message id="fooMessage" for="fooInput" />
<p:ajax event="cancel" global="false" />
<p:ajax event="save" global="false" />
</p:inplace>
```
In the latter case, the behaviour is as expected: validation errors are immediately shown and the inplace component does not switch to output mode until you fix your changes or hit the cancel button. | 1.0 | Inplace: switches to output mode even if validation fails when facets are used - ## 1) Environment
- PrimeFaces version: 6.2
- Does it work on the newest released PrimeFaces version? NO
- Does it work on the newest sources in GitHub? NO
- Application server + version: Tomcat 8.0.39
- Affected browsers: Firefox 75
## 2) Expected behavior
When I have a `p:inplace` with `editor="true"` and nested `f:facet`s for input and output, if I press on the confirm button but validation fails, the component does not switch to output mode and just updates its input facet contents.
## 3) Actual behavior
When I have a `p:inplace` with `editor="true"` and nested `f:facet`s for input and output, if I press on the confirm button but validation fails, the component switches to output mode, without applying changes. Switching again to input mode, shows validation error consequences.
## 4) Steps to reproduce
- create a `<p:inplace editor="true">` with nested `<f:facet name="output">` and `<f:facet name="input">`
- in the `<f:facet name="input">` put an input component with some validation rules and a `<p:message>`
- click on the `<p:inplace>`
- change the input value to an invalid value
- click on the confirm button
## 5) Sample XHTML
```xml
<p:inplace editor="true">
<f:facet name="output">
<h:outputText value="#{bean.foo}">
<f:convertNumber />
</h:outputText>
</f:facet>
<f:facet name="input">
<p:inputText id="fooInput" value="#{bean.foo}" required="true">
<f:convertNumber />
<f:validateDoubleRange minimum="0" maximum="100" />
</p:inputText>
<p:message id="fooMessage" for="fooInput" />
</f:facet>
<p:ajax event="cancel" global="false" />
<p:ajax event="save" global="false" />
</p:inplace>
```
## 6) Sample bean
```java
public class Bean {
private double foo;
// getters and setters omitted
}
```
See the difference if you change the facelet fragment to:
```xml
<p:inplace editor="true" label="#{bean.foo}">
<p:inputText id="fooInput" value="#{bean.foo}" required="true">
<f:convertNumber />
<f:validateDoubleRange minimum="0" maximum="100" />
</p:inputText>
<p:message id="fooMessage" for="fooInput" />
<p:ajax event="cancel" global="false" />
<p:ajax event="save" global="false" />
</p:inplace>
```
In the latter case, the behaviour is as expected: validation errors are immediately shown and the inplace component does not switch to output mode until you fix your changes or hit the cancel button. | defect | inplace switches to output mode even if validation fails when facets are used environment primefaces version does it work on the newest released primefaces version no does it work on the newest sources in github no application server version tomcat affected browsers firefox expected behavior when i have a p inplace with editor true and nested f facet s for input and output if i press on the confirm button but validation fails the component does not switch to output mode and just updates its input facet contents actual behavior when i have a p inplace with editor true and nested f facet s for input and output if i press on the confirm button but validation fails the component switches to output mode without applying changes switching again to input mode shows validation error consequences steps to reproduce create a with nested and in the put an input component with some validation rules and a click on the change the input value to an invalid value click on the confirm button sample xhtml xml sample bean java public class bean private double foo getters and setters omitted see the difference if you change the facelet fragment to xml in the latter case the behaviour is as expected validation errors are immediately shown and the inplace component does not switch to output mode until you fix your changes or hit the cancel button | 1 |
218,027 | 16,747,363,595 | IssuesEvent | 2021-06-11 17:19:58 | ryanheise/audio_service | https://api.github.com/repos/ryanheise/audio_service | opened | RatingStyle.none documentation needs to be improved | 1 backlog documentation | **To which pages does your suggestion apply?**
In-code
**Quote the sentences(s) from the documentation to be improved (if any)**
```dart
enum RatingStyle {
/// Indicates a rating style is not supported.
///
/// A [Rating] will never have this type, but can be used by other classes
/// to indicate they do not support Rating.
none,
```
**Describe your suggestion**
It's opaque what exactly this sentence means.
* Does that mean that the call from platform will never have this style?
* Does that mean that I cannot set the `Rating` style to that value?
* By which other classes it can be used? | 1.0 | RatingStyle.none documentation needs to be improved - **To which pages does your suggestion apply?**
In-code
**Quote the sentences(s) from the documentation to be improved (if any)**
```dart
enum RatingStyle {
/// Indicates a rating style is not supported.
///
/// A [Rating] will never have this type, but can be used by other classes
/// to indicate they do not support Rating.
none,
```
**Describe your suggestion**
It's opaque what exactly this sentence means.
* Does that mean that the call from platform will never have this style?
* Does that mean that I cannot set the `Rating` style to that value?
* By which other classes it can be used? | non_defect | ratingstyle none documentation needs to be improved to which pages does your suggestion apply in code quote the sentences s from the documentation to be improved if any dart enum ratingstyle indicates a rating style is not supported a will never have this type but can be used by other classes to indicate they do not support rating none describe your suggestion it s opaque what exactly this sentence means does that mean that the call from platform will never have this style does that mean that i cannot set the rating style to that value by which other classes it can be used | 0 |
19,798 | 26,180,210,470 | IssuesEvent | 2023-01-02 14:40:08 | NixOS/nix | https://api.github.com/repos/NixOS/nix | opened | Pull request checklist | developer-experience process | **Is your feature request related to a problem? Please describe.**
Checklists help with guiding a process to completion. They ensure quality and make their users confident, because they won't forget certain aspects of the process.
**Describe the solution you'd like**
Add a pull requests checklist to the pull request template and/or "maintainer handbook" (the manual or `maintainers/*.md`)
Some items:
- [ ] is the idea good? has it been discussed by the Nix team?
- [ ] unit tests
- [ ] functional tests (`tests/**.sh`)
- [ ] documentation in the manual
- [ ] documentation in the code (if necessary; ideally code is already clear)
- [ ] documentation in the commit message (why was this change made? for future reference when maintaining the code)
- [ ] documentation in the changelog (to announce features and fixes to existing users who might have to do something to finally solve their problem, and to summarize the development history)
**Describe alternatives you've considered**
- Keep forgetting to do certain things leading to
- bloat
- regressions
- forgotten documentation
- uncertainty as to why changes to the code were made
- prs getting slowed by delays, reminders and more delays
Have a github action that posts the checklist to each PR. This is a bit more robust as contributors may mess with the checklist.
**Additional context**
- I forgot to ask for documentation in #7314.
**Priorities**
Add :+1: to [issues you find important](https://github.com/NixOS/nix/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc).
| 1.0 | Pull request checklist - **Is your feature request related to a problem? Please describe.**
Checklists help with guiding a process to completion. They ensure quality and make their users confident, because they won't forget certain aspects of the process.
**Describe the solution you'd like**
Add a pull requests checklist to the pull request template and/or "maintainer handbook" (the manual or `maintainers/*.md`)
Some items:
- [ ] is the idea good? has it been discussed by the Nix team?
- [ ] unit tests
- [ ] functional tests (`tests/**.sh`)
- [ ] documentation in the manual
- [ ] documentation in the code (if necessary; ideally code is already clear)
- [ ] documentation in the commit message (why was this change made? for future reference when maintaining the code)
- [ ] documentation in the changelog (to announce features and fixes to existing users who might have to do something to finally solve their problem, and to summarize the development history)
**Describe alternatives you've considered**
- Keep forgetting to do certain things leading to
- bloat
- regressions
- forgotten documentation
- uncertainty as to why changes to the code were made
- prs getting slowed by delays, reminders and more delays
Have a github action that posts the checklist to each PR. This is a bit more robust as contributors may mess with the checklist.
**Additional context**
- I forgot to ask for documentation in #7314.
**Priorities**
Add :+1: to [issues you find important](https://github.com/NixOS/nix/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc).
| non_defect | pull request checklist is your feature request related to a problem please describe checklists help with guiding a process to completion they ensure quality and make their users confident because they won t forget certain aspects of the process describe the solution you d like add a pull requests checklist to the pull request template and or maintainer handbook the manual or maintainers md some items is the idea good has it been discussed by the nix team unit tests functional tests tests sh documentation in the manual documentation in the code if necessary ideally code is already clear documentation in the commit message why was this change made for future reference when maintaining the code documentation in the changelog to announce features and fixes to existing users who might have to do something to finally solve their problem and to summarize the development history describe alternatives you ve considered keep forgetting to do certain things leading to bloat regressions forgotten documentation uncertainty as to why changes to the code were made prs getting slowed by delays reminders and more delays have a github action that posts the checklist to each pr this is a bit more robust as contributors may mess with the checklist additional context i forgot to ask for documentation in priorities add to | 0 |
31,503 | 6,542,262,821 | IssuesEvent | 2017-09-02 03:14:31 | Azure/batch-shipyard | https://api.github.com/repos/Azure/batch-shipyard | closed | shipyard_blobxfer.sh: line 48: join_by: command not found | defect | Hello,
I'm using task factory to create tasks from an Azure file share. The tasks fail, exit code 127 with the following error:
/mnt/batch/tasks/startup/wd/shipyard_blobxfer.sh: line 48: join_by: command not found
The task factory section of my job file is:
"task_factory": {
"file": {
"azure_storage": {
"storage_account_settings": "mystorageaccount",
"file_share": "sourceimages"
},
"task_filepath": "file_path"
}
},
VM image is:
"vm_configuration":{
"platform_image":{
"publisher":"Canonical",
"offer":"UbuntuServer",
"sku":"16.04-LTS"
}
},
Using Azure Cloud Shell: shipyard.py, version 2.9.2
Any ideas? Many thanks,
Marcus
| 1.0 | shipyard_blobxfer.sh: line 48: join_by: command not found - Hello,
I'm using task factory to create tasks from an Azure file share. The tasks fail, exit code 127 with the following error:
/mnt/batch/tasks/startup/wd/shipyard_blobxfer.sh: line 48: join_by: command not found
The task factory section of my job file is:
"task_factory": {
"file": {
"azure_storage": {
"storage_account_settings": "mystorageaccount",
"file_share": "sourceimages"
},
"task_filepath": "file_path"
}
},
VM image is:
"vm_configuration":{
"platform_image":{
"publisher":"Canonical",
"offer":"UbuntuServer",
"sku":"16.04-LTS"
}
},
Using Azure Cloud Shell: shipyard.py, version 2.9.2
Any ideas? Many thanks,
Marcus
| defect | shipyard blobxfer sh line join by command not found hello i m using task factory to create tasks from an azure file share the tasks fail exit code with the following error mnt batch tasks startup wd shipyard blobxfer sh line join by command not found the task factory section of my job file is task factory file azure storage storage account settings mystorageaccount file share sourceimages task filepath file path vm image is vm configuration platform image publisher canonical offer ubuntuserver sku lts using azure cloud shell shipyard py version any ideas many thanks marcus | 1 |
284,530 | 8,743,314,967 | IssuesEvent | 2018-12-12 18:48:50 | minio/mc | https://api.github.com/repos/minio/mc | closed | `mirror` stops after an error in just one object | community priority: medium triage | ## Expected behavior
Mirror operation shouldn't stop completely in case of errors in individual objects, though should return non-zero code in the end.
## Actual behavior
I upgraded to the last version from `RELEASE.2018-06-22T23-32-12Z` and noticed that mirroring is now stops completely if some of the objects has an error, which in my case is:
```
mc: <ERROR> Failed to copy `https://storage.googleapis.com/mybucket/very_long_path_is_here`. mkdir very_long_path_is_here: file name too long
```
This might be related to #2474 and the corresponding fix.
## mc version
`RELEASE.2018-12-05T22-59-07Z`
## System information
Linux/amd64 | 1.0 | `mirror` stops after an error in just one object - ## Expected behavior
Mirror operation shouldn't stop completely in case of errors in individual objects, though should return non-zero code in the end.
## Actual behavior
I upgraded to the last version from `RELEASE.2018-06-22T23-32-12Z` and noticed that mirroring is now stops completely if some of the objects has an error, which in my case is:
```
mc: <ERROR> Failed to copy `https://storage.googleapis.com/mybucket/very_long_path_is_here`. mkdir very_long_path_is_here: file name too long
```
This might be related to #2474 and the corresponding fix.
## mc version
`RELEASE.2018-12-05T22-59-07Z`
## System information
Linux/amd64 | non_defect | mirror stops after an error in just one object expected behavior mirror operation shouldn t stop completely in case of errors in individual objects though should return non zero code in the end actual behavior i upgraded to the last version from release and noticed that mirroring is now stops completely if some of the objects has an error which in my case is mc failed to copy mkdir very long path is here file name too long this might be related to and the corresponding fix mc version release system information linux | 0 |
43,004 | 11,424,538,045 | IssuesEvent | 2020-02-03 17:57:51 | avereon/xenon | https://api.github.com/repos/avereon/xenon | closed | Tasks do not clear from task tool on errors | bug / error / defect | Tasks that error do not clear from the task tool, but they do from the task monitor | 1.0 | Tasks do not clear from task tool on errors - Tasks that error do not clear from the task tool, but they do from the task monitor | defect | tasks do not clear from task tool on errors tasks that error do not clear from the task tool but they do from the task monitor | 1 |
33,816 | 7,255,442,645 | IssuesEvent | 2018-02-16 14:54:38 | primefaces/primefaces | https://api.github.com/repos/primefaces/primefaces | closed | Spinner negative values are broken with min attribute unset | defect | ## 1) Environment
- PrimeFaces version: 6.2-SNAPSHOT (up to commit d2d2f6e)
## 2) Expected behavior
Spinner with no min value set spins from 0 to -1, -2 etc.
## 3) Actual behavior
Spinner set to -5e-324 when spinning past zero
## 4) Steps to reproduce
Run Primefaces Showcase with latest 6.2-SNAPSHOT and decrease Basic Spinner (on the Input -> Spinner page) past zero
This is related to issue #3320 / pull request #3322, but as they're already closed I thought it's better to open a new issue so that this doesn't slip into 6.2 final.
IMO in spinner.xml the default min value should be "-java.lang.Double.MAX_VALUE" as Double.MIN_VALUE is actually the smallest positive double while Double.MAX_VALUE is the largest magnitude and since the sign is a separate bit "-java.lang.Double.MAX_VALUE" is the largest negative value then. | 1.0 | Spinner negative values are broken with min attribute unset - ## 1) Environment
- PrimeFaces version: 6.2-SNAPSHOT (up to commit d2d2f6e)
## 2) Expected behavior
Spinner with no min value set spins from 0 to -1, -2 etc.
## 3) Actual behavior
Spinner set to -5e-324 when spinning past zero
## 4) Steps to reproduce
Run Primefaces Showcase with latest 6.2-SNAPSHOT and decrease Basic Spinner (on the Input -> Spinner page) past zero
This is related to issue #3320 / pull request #3322, but as they're already closed I thought it's better to open a new issue so that this doesn't slip into 6.2 final.
IMO in spinner.xml the default min value should be "-java.lang.Double.MAX_VALUE" as Double.MIN_VALUE is actually the smallest positive double while Double.MAX_VALUE is the largest magnitude and since the sign is a separate bit "-java.lang.Double.MAX_VALUE" is the largest negative value then. | defect | spinner negative values are broken with min attribute unset environment primefaces version snapshot up to commit expected behavior spinner with no min value set spins from to etc actual behavior spinner set to when spinning past zero steps to reproduce run primefaces showcase with latest snapshot and decrease basic spinner on the input spinner page past zero this is related to issue pull request but as they re already closed i thought it s better to open a new issue so that this doesn t slip into final imo in spinner xml the default min value should be java lang double max value as double min value is actually the smallest positive double while double max value is the largest magnitude and since the sign is a separate bit java lang double max value is the largest negative value then | 1 |
39,826 | 9,667,389,046 | IssuesEvent | 2019-05-21 13:08:57 | vector-im/riot-web | https://api.github.com/repos/vector-im/riot-web | opened | Reactions: Don't show reacted with if no shortcode | bug defect feature:aggregations feature:reactions | As mentioned by @nadonomy in https://github.com/vector-im/riot-web/issues/9782, we should hide the reacted with tooltip text if we don't have a shortcode for the emoji. | 1.0 | Reactions: Don't show reacted with if no shortcode - As mentioned by @nadonomy in https://github.com/vector-im/riot-web/issues/9782, we should hide the reacted with tooltip text if we don't have a shortcode for the emoji. | defect | reactions don t show reacted with if no shortcode as mentioned by nadonomy in we should hide the reacted with tooltip text if we don t have a shortcode for the emoji | 1 |
221,066 | 24,590,596,918 | IssuesEvent | 2022-10-14 01:33:06 | ShabbirAli063/simple-react-app | https://api.github.com/repos/ShabbirAli063/simple-react-app | opened | CVE-2022-37601 (High) detected in loader-utils-1.4.0.tgz, loader-utils-1.2.3.tgz | security vulnerability | ## CVE-2022-37601 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>loader-utils-1.4.0.tgz</b>, <b>loader-utils-1.2.3.tgz</b></p></summary>
<p>
<details><summary><b>loader-utils-1.4.0.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/mini-css-extract-plugin/node_modules/loader-utils/package.json,/node_modules/babel-loader/node_modules/loader-utils/package.json,/node_modules/html-webpack-plugin/node_modules/loader-utils/package.json,/node_modules/postcss-loader/node_modules/loader-utils/package.json,/node_modules/webpack/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-4.0.3.tgz (Root Library)
- webpack-4.44.2.tgz
- :x: **loader-utils-1.4.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>loader-utils-1.2.3.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/resolve-url-loader/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-4.0.3.tgz (Root Library)
- resolve-url-loader-3.1.4.tgz
- :x: **loader-utils-1.2.3.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/ShabbirAli063/simple-react-app/commit/5e83e631085b31bf181f6ac1369a658c8a5419a6">5e83e631085b31bf181f6ac1369a658c8a5419a6</a></p>
<p>Found in base branch: <b>master</b></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>
Prototype pollution vulnerability in function parseQuery in parseQuery.js in webpack loader-utils 2.0.0 via the name variable in parseQuery.js.
<p>Publish Date: 2022-10-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-37601>CVE-2022-37601</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>9.8</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: 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>Release Date: 2022-10-12</p>
<p>Fix Resolution (loader-utils): 2.0.0</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p><p>Fix Resolution (loader-utils): 2.0.0</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</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-2022-37601 (High) detected in loader-utils-1.4.0.tgz, loader-utils-1.2.3.tgz - ## CVE-2022-37601 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>loader-utils-1.4.0.tgz</b>, <b>loader-utils-1.2.3.tgz</b></p></summary>
<p>
<details><summary><b>loader-utils-1.4.0.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/mini-css-extract-plugin/node_modules/loader-utils/package.json,/node_modules/babel-loader/node_modules/loader-utils/package.json,/node_modules/html-webpack-plugin/node_modules/loader-utils/package.json,/node_modules/postcss-loader/node_modules/loader-utils/package.json,/node_modules/webpack/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-4.0.3.tgz (Root Library)
- webpack-4.44.2.tgz
- :x: **loader-utils-1.4.0.tgz** (Vulnerable Library)
</details>
<details><summary><b>loader-utils-1.2.3.tgz</b></p></summary>
<p>utils for webpack loaders</p>
<p>Library home page: <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz">https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/resolve-url-loader/node_modules/loader-utils/package.json</p>
<p>
Dependency Hierarchy:
- react-scripts-4.0.3.tgz (Root Library)
- resolve-url-loader-3.1.4.tgz
- :x: **loader-utils-1.2.3.tgz** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/ShabbirAli063/simple-react-app/commit/5e83e631085b31bf181f6ac1369a658c8a5419a6">5e83e631085b31bf181f6ac1369a658c8a5419a6</a></p>
<p>Found in base branch: <b>master</b></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>
Prototype pollution vulnerability in function parseQuery in parseQuery.js in webpack loader-utils 2.0.0 via the name variable in parseQuery.js.
<p>Publish Date: 2022-10-12
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-37601>CVE-2022-37601</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>9.8</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: 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>Release Date: 2022-10-12</p>
<p>Fix Resolution (loader-utils): 2.0.0</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p><p>Fix Resolution (loader-utils): 2.0.0</p>
<p>Direct dependency fix Resolution (react-scripts): 5.0.1</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve high detected in loader utils tgz loader utils tgz cve high severity vulnerability vulnerable libraries loader utils tgz loader utils tgz loader utils tgz utils for webpack loaders library home page a href path to dependency file package json path to vulnerable library node modules mini css extract plugin node modules loader utils package json node modules babel loader node modules loader utils package json node modules html webpack plugin node modules loader utils package json node modules postcss loader node modules loader utils package json node modules webpack node modules loader utils package json dependency hierarchy react scripts tgz root library webpack tgz x loader utils tgz vulnerable library loader utils tgz utils for webpack loaders library home page a href path to dependency file package json path to vulnerable library node modules resolve url loader node modules loader utils package json dependency hierarchy react scripts tgz root library resolve url loader tgz x loader utils tgz vulnerable library found in head commit a href found in base branch master vulnerability details prototype pollution vulnerability in function parsequery in parsequery js in webpack loader utils via the name variable in parsequery js 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 high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution loader utils direct dependency fix resolution react scripts fix resolution loader utils direct dependency fix resolution react scripts step up your open source security game with mend | 0 |
34,359 | 9,350,040,715 | IssuesEvent | 2019-04-01 00:49:24 | kubeflow/kubeflow | https://api.github.com/repos/kubeflow/kubeflow | closed | Trigger docker build images on post-submit | area/build-release priority/p2 | We'd like to trigger building our docker images on every post-submit.
In #666 we created a cron job to regularly run Argo workflows to build our docker images.
This issue goes one step further and triggers these workflows on each postsubmit.
We can use Prow to trigger jobs on post submit. The problem is securing this so that we don't give unvetted code access to our release artifacts (including staging).
Prow supports running the test pods in a separate [cluster](https://github.com/kubernetes/test-infra/blob/master/prow/getting_started.md#run-test-pods-in-a-different-namespace-or-a-different-cluster).
This works as follows
- In the prow services cluster we have a secret with a map of cluster name to credentials to talk to that cluster (AKA kubeconfig)
-- one of these clusters is "default"
- In your job you can optionally list a non-default cluster by setting "cluster: foo", prow will then schedule that job there instead of the default cluster
- for a sensitive cluster like the "security" cluster for kubernetes-security org we can have a presubmit tests in test-infra that restricts which jobs set that cluster it, if need be, as well as only the test-infra maintainers having permission to approve configuration changes.
So I think we could do the following
- Setup a GCR repository for our postsubmit builds
- This should be separate from our public release repository for security reasons and also to avoid
polluting that repository with lots of images
- Setup a separate cluster/GCP project from our release cluster that can push to staging but not public
- Configure Prow to trigger postsubmits jobs in this cluster
- Restrict prow jobs that can use this cluster to our post submit jobs.
| 1.0 | Trigger docker build images on post-submit - We'd like to trigger building our docker images on every post-submit.
In #666 we created a cron job to regularly run Argo workflows to build our docker images.
This issue goes one step further and triggers these workflows on each postsubmit.
We can use Prow to trigger jobs on post submit. The problem is securing this so that we don't give unvetted code access to our release artifacts (including staging).
Prow supports running the test pods in a separate [cluster](https://github.com/kubernetes/test-infra/blob/master/prow/getting_started.md#run-test-pods-in-a-different-namespace-or-a-different-cluster).
This works as follows
- In the prow services cluster we have a secret with a map of cluster name to credentials to talk to that cluster (AKA kubeconfig)
-- one of these clusters is "default"
- In your job you can optionally list a non-default cluster by setting "cluster: foo", prow will then schedule that job there instead of the default cluster
- for a sensitive cluster like the "security" cluster for kubernetes-security org we can have a presubmit tests in test-infra that restricts which jobs set that cluster it, if need be, as well as only the test-infra maintainers having permission to approve configuration changes.
So I think we could do the following
- Setup a GCR repository for our postsubmit builds
- This should be separate from our public release repository for security reasons and also to avoid
polluting that repository with lots of images
- Setup a separate cluster/GCP project from our release cluster that can push to staging but not public
- Configure Prow to trigger postsubmits jobs in this cluster
- Restrict prow jobs that can use this cluster to our post submit jobs.
| non_defect | trigger docker build images on post submit we d like to trigger building our docker images on every post submit in we created a cron job to regularly run argo workflows to build our docker images this issue goes one step further and triggers these workflows on each postsubmit we can use prow to trigger jobs on post submit the problem is securing this so that we don t give unvetted code access to our release artifacts including staging prow supports running the test pods in a separate this works as follows in the prow services cluster we have a secret with a map of cluster name to credentials to talk to that cluster aka kubeconfig one of these clusters is default in your job you can optionally list a non default cluster by setting cluster foo prow will then schedule that job there instead of the default cluster for a sensitive cluster like the security cluster for kubernetes security org we can have a presubmit tests in test infra that restricts which jobs set that cluster it if need be as well as only the test infra maintainers having permission to approve configuration changes so i think we could do the following setup a gcr repository for our postsubmit builds this should be separate from our public release repository for security reasons and also to avoid polluting that repository with lots of images setup a separate cluster gcp project from our release cluster that can push to staging but not public configure prow to trigger postsubmits jobs in this cluster restrict prow jobs that can use this cluster to our post submit jobs | 0 |
46,761 | 13,055,972,044 | IssuesEvent | 2020-07-30 03:16:27 | icecube-trac/tix2 | https://api.github.com/repos/icecube-trac/tix2 | opened | Globus Tools in CVMFS (Trac #1836) | Incomplete Migration Migrated from Trac cmake defect | Migrated from https://code.icecube.wisc.edu/ticket/1836
```json
{
"status": "closed",
"changetime": "2016-08-26T18:24:01",
"description": "This is a ticket we received to our help@icecube queue that I'm passing over to you. This is from Thomas Kintscher, email address thomas.kintscher@desy.de , so if you could tie him in to any responses, that would be great!\n\n-Nils\n\n\n\nDear helpdesk,\n\nI noticed an issue with the version of the Globus tools in CVMFS (both\npy2-v1 and py2-v2). The globus-url-copy tool always segfaults when\ntrying to list certain directories on the Zeuthen site, e.g. like this:\n\n\nShow quoted text\n\ngsiftp://gridftp.ifh.de/pnfs/ifh.de/acs/grid/icecube/data/sim/IceCube/2012/filtered/level2/CORSIKA-in-ice/11058/\nzsh: segmentation fault globus-url-copy -list\n\n\nRunning the same command on cobalt outside of the CVMFS environment\nworks. I noticed that the version on CVMFS is 8.6, whereas the cobalts\nalready have 9.19.\nMaybe updating the version on CVMFS would already be enough to resolve\nthis problem. For the time being, I can use the version installed on\ncobalt, but it's somewhat inconvenient to switch if tools from CVMFS are\nrequired.\n\nBest,\nThomas\n\n-- \nThomas Kintscher\nDeutsches Elektronen-Synchrotron (DESY)\nPlatanenallee 6, 15378 Zeuthen, Germany\nOffice: 2L/15, Phone: +49 33762-7-7312",
"reporter": "nirland",
"cc": "",
"resolution": "wontfix",
"_ts": "1472235841289510",
"component": "cmake",
"summary": "Globus Tools in CVMFS",
"priority": "normal",
"keywords": "",
"time": "2016-08-26T17:24:29",
"milestone": "",
"owner": "",
"type": "defect"
}
```
| 1.0 | Globus Tools in CVMFS (Trac #1836) - Migrated from https://code.icecube.wisc.edu/ticket/1836
```json
{
"status": "closed",
"changetime": "2016-08-26T18:24:01",
"description": "This is a ticket we received to our help@icecube queue that I'm passing over to you. This is from Thomas Kintscher, email address thomas.kintscher@desy.de , so if you could tie him in to any responses, that would be great!\n\n-Nils\n\n\n\nDear helpdesk,\n\nI noticed an issue with the version of the Globus tools in CVMFS (both\npy2-v1 and py2-v2). The globus-url-copy tool always segfaults when\ntrying to list certain directories on the Zeuthen site, e.g. like this:\n\n\nShow quoted text\n\ngsiftp://gridftp.ifh.de/pnfs/ifh.de/acs/grid/icecube/data/sim/IceCube/2012/filtered/level2/CORSIKA-in-ice/11058/\nzsh: segmentation fault globus-url-copy -list\n\n\nRunning the same command on cobalt outside of the CVMFS environment\nworks. I noticed that the version on CVMFS is 8.6, whereas the cobalts\nalready have 9.19.\nMaybe updating the version on CVMFS would already be enough to resolve\nthis problem. For the time being, I can use the version installed on\ncobalt, but it's somewhat inconvenient to switch if tools from CVMFS are\nrequired.\n\nBest,\nThomas\n\n-- \nThomas Kintscher\nDeutsches Elektronen-Synchrotron (DESY)\nPlatanenallee 6, 15378 Zeuthen, Germany\nOffice: 2L/15, Phone: +49 33762-7-7312",
"reporter": "nirland",
"cc": "",
"resolution": "wontfix",
"_ts": "1472235841289510",
"component": "cmake",
"summary": "Globus Tools in CVMFS",
"priority": "normal",
"keywords": "",
"time": "2016-08-26T17:24:29",
"milestone": "",
"owner": "",
"type": "defect"
}
```
| defect | globus tools in cvmfs trac migrated from json status closed changetime description this is a ticket we received to our help icecube queue that i m passing over to you this is from thomas kintscher email address thomas kintscher desy de so if you could tie him in to any responses that would be great n n nils n n n ndear helpdesk n ni noticed an issue with the version of the globus tools in cvmfs both and the globus url copy tool always segfaults when ntrying to list certain directories on the zeuthen site e g like this n n nshow quoted text n ngsiftp gridftp ifh de pnfs ifh de acs grid icecube data sim icecube filtered corsika in ice nzsh segmentation fault globus url copy list n n nrunning the same command on cobalt outside of the cvmfs environment nworks i noticed that the version on cvmfs is whereas the cobalts nalready have nmaybe updating the version on cvmfs would already be enough to resolve nthis problem for the time being i can use the version installed on ncobalt but it s somewhat inconvenient to switch if tools from cvmfs are nrequired n nbest nthomas n n nthomas kintscher ndeutsches elektronen synchrotron desy nplatanenallee zeuthen germany noffice phone reporter nirland cc resolution wontfix ts component cmake summary globus tools in cvmfs priority normal keywords time milestone owner type defect | 1 |
23,448 | 3,828,090,946 | IssuesEvent | 2016-03-31 02:55:50 | CompEvol/beast2 | https://api.github.com/repos/CompEvol/beast2 | closed | Taxon set label allows duplicate names | BEAUti defect LOW priority | BEAUti:
1) load data;
2) Goto "Priors", and add 2 taxon sets with the same name, such as "a";
3) there are 2 "a.prior" in the panel.
| 1.0 | Taxon set label allows duplicate names - BEAUti:
1) load data;
2) Goto "Priors", and add 2 taxon sets with the same name, such as "a";
3) there are 2 "a.prior" in the panel.
| defect | taxon set label allows duplicate names beauti load data goto priors and add taxon sets with the same name such as a there are a prior in the panel | 1 |
30,068 | 7,158,033,078 | IssuesEvent | 2018-01-26 22:20:50 | Seb35/plans-comptables-francais | https://api.github.com/repos/Seb35/plans-comptables-francais | opened | Développer les comptes avec l’indication "même ventilation que celle du compte ..." | CSV Code GNUCash PCA PCG amélioration | Le compte 2801 est « Frais d’établissement (même ventilation que celle du compte 201) ». Il pourrait être judicieux, pour ce compte et les autres similaires, de copier-coller (en adaptant) le compte mentionné.
Par exemple, on aurait :
* 2801 Frais d’établissement
* 28011 Frais de constitution
* 28012 Frais de premier établissement
* 280121 Frais de prospection
* 280122 Frais de publicité
* 28013 Frais d’augmentation de capital et d’opérations diverses (fusions, scissions, transformations) | 1.0 | Développer les comptes avec l’indication "même ventilation que celle du compte ..." - Le compte 2801 est « Frais d’établissement (même ventilation que celle du compte 201) ». Il pourrait être judicieux, pour ce compte et les autres similaires, de copier-coller (en adaptant) le compte mentionné.
Par exemple, on aurait :
* 2801 Frais d’établissement
* 28011 Frais de constitution
* 28012 Frais de premier établissement
* 280121 Frais de prospection
* 280122 Frais de publicité
* 28013 Frais d’augmentation de capital et d’opérations diverses (fusions, scissions, transformations) | non_defect | développer les comptes avec l’indication même ventilation que celle du compte le compte est « frais d’établissement même ventilation que celle du compte » il pourrait être judicieux pour ce compte et les autres similaires de copier coller en adaptant le compte mentionné par exemple on aurait frais d’établissement frais de constitution frais de premier établissement frais de prospection frais de publicité frais d’augmentation de capital et d’opérations diverses fusions scissions transformations | 0 |
286,857 | 8,794,030,851 | IssuesEvent | 2018-12-21 22:46:19 | INN/umbrella-rivard-report | https://api.github.com/repos/INN/umbrella-rivard-report | closed | Donor logos for Businesses and Nonprofits | high priority | 1. Go to: https://therivardreport.com/membership-donate/ (privately published)
RESULT: Doesn't have list of donors yet
EXPECT: Rivard would like something similar to "OUR MEMBERS" here: https://inn.org/ to appear at the bottom of the page (below the tabs of info)
NOTES:
- needs to be easily updatable and using a class in the text editor may not be ideal
- should include business and nonprofit logos from here: https://therivardreport.com/business-members/
- will need to decide how to handle the donation amounts (group them, show $ amount above or below logo, etc.)

| 1.0 | Donor logos for Businesses and Nonprofits - 1. Go to: https://therivardreport.com/membership-donate/ (privately published)
RESULT: Doesn't have list of donors yet
EXPECT: Rivard would like something similar to "OUR MEMBERS" here: https://inn.org/ to appear at the bottom of the page (below the tabs of info)
NOTES:
- needs to be easily updatable and using a class in the text editor may not be ideal
- should include business and nonprofit logos from here: https://therivardreport.com/business-members/
- will need to decide how to handle the donation amounts (group them, show $ amount above or below logo, etc.)

| non_defect | donor logos for businesses and nonprofits go to privately published result doesn t have list of donors yet expect rivard would like something similar to our members here to appear at the bottom of the page below the tabs of info notes needs to be easily updatable and using a class in the text editor may not be ideal should include business and nonprofit logos from here will need to decide how to handle the donation amounts group them show amount above or below logo etc | 0 |
2,763 | 2,607,938,870 | IssuesEvent | 2015-02-26 00:29:59 | chrsmithdemos/minify | https://api.github.com/repos/chrsmithdemos/minify | closed | NetworkError: 500 Internal Server Error | auto-migrated Priority-Medium Release-2.1.5 Type-Defect | ```
Are you sure this is not a problem with your configuration? (ask on the
Google Group)
Minify commit/version: 2.1.7
PHP version: 5.5.14
Actual output:
Minify: Exception in minifier: Input_0:1052: ERROR - Parse error. identifier is
a reserved word var char = max - len; ^ Input_0:1053: ERROR - Parse error.
identifier is a reserved word charactersLeft.val(char + ' characters left'); ^
js file :
http://dev.voipdialing.com:8080/min/?b=themes/js&f=vendor/dids/ajax.js,vendor/di
ds/dids.js,vendor/dids/orders.js,vendor/dids/devices.js,sms.js,main.js
any ideas?
```
-----
Original issue reported on code.google.com by `cristi.c...@gmail.com` on 31 Oct 2014 at 5:35 | 1.0 | NetworkError: 500 Internal Server Error - ```
Are you sure this is not a problem with your configuration? (ask on the
Google Group)
Minify commit/version: 2.1.7
PHP version: 5.5.14
Actual output:
Minify: Exception in minifier: Input_0:1052: ERROR - Parse error. identifier is
a reserved word var char = max - len; ^ Input_0:1053: ERROR - Parse error.
identifier is a reserved word charactersLeft.val(char + ' characters left'); ^
js file :
http://dev.voipdialing.com:8080/min/?b=themes/js&f=vendor/dids/ajax.js,vendor/di
ds/dids.js,vendor/dids/orders.js,vendor/dids/devices.js,sms.js,main.js
any ideas?
```
-----
Original issue reported on code.google.com by `cristi.c...@gmail.com` on 31 Oct 2014 at 5:35 | defect | networkerror internal server error are you sure this is not a problem with your configuration ask on the google group minify commit version php version actual output minify exception in minifier input error parse error identifier is a reserved word var char max len input error parse error identifier is a reserved word charactersleft val char characters left js file ds dids js vendor dids orders js vendor dids devices js sms js main js any ideas original issue reported on code google com by cristi c gmail com on oct at | 1 |
9,204 | 4,442,403,308 | IssuesEvent | 2016-08-19 13:22:48 | supercollider/supercollider | https://api.github.com/repos/supercollider/supercollider | closed | compile errors on Raspberry Pi 3 | comp: build | Hi,
I recently followed the instructions on the wiki : [https://supercollider.github.io/development/building-raspberrypi.html]
Under the "building with IDE" heading.
When I tried to compile SC, I got this error at 32% :
[ 31%] Building CXX object editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/main_window.cpp.o
[ 31%] Building CXX object editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/multi_editor.cpp.o
[ 32%] Building CXX object editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/post_window.cpp.o
g++-4.8: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions.
editors/sc-ide/CMakeFiles/SuperCollider.dir/build.make:788: recipe for target 'editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/lookup_dialog.cpp.o' failed
make[2]: *** [editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/lookup_dialog.cpp.o] Error 4
make[2]: *** Waiting for unfinished jobs....
I'm using a raspberry pi 3 with Raspbian installed from NOOBS 1.9.0, ran all the update, upgrade and dependency installation steps with no issues. GCC version (gcc -v) is 4.9.2, but I also ran the steps to ensure 4.8.4 was used - I saw this line:
The C compiler identification is GNU 4.8.4
I had checked out the 3.7 branch when I got the above error, but I also get an error in the same step using the Master branch.
uname -a gives me:
Linux raspberrypi 4.1.19-v7+ #858 SMP Tue Mar 15 15:56:00 GMT 2016 armv7l GNU/Linux
cat /etc/os-release gives:
PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
etc.
Any help would be appreciated! | 1.0 | compile errors on Raspberry Pi 3 - Hi,
I recently followed the instructions on the wiki : [https://supercollider.github.io/development/building-raspberrypi.html]
Under the "building with IDE" heading.
When I tried to compile SC, I got this error at 32% :
[ 31%] Building CXX object editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/main_window.cpp.o
[ 31%] Building CXX object editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/multi_editor.cpp.o
[ 32%] Building CXX object editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/post_window.cpp.o
g++-4.8: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions.
editors/sc-ide/CMakeFiles/SuperCollider.dir/build.make:788: recipe for target 'editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/lookup_dialog.cpp.o' failed
make[2]: *** [editors/sc-ide/CMakeFiles/SuperCollider.dir/widgets/lookup_dialog.cpp.o] Error 4
make[2]: *** Waiting for unfinished jobs....
I'm using a raspberry pi 3 with Raspbian installed from NOOBS 1.9.0, ran all the update, upgrade and dependency installation steps with no issues. GCC version (gcc -v) is 4.9.2, but I also ran the steps to ensure 4.8.4 was used - I saw this line:
The C compiler identification is GNU 4.8.4
I had checked out the 3.7 branch when I got the above error, but I also get an error in the same step using the Master branch.
uname -a gives me:
Linux raspberrypi 4.1.19-v7+ #858 SMP Tue Mar 15 15:56:00 GMT 2016 armv7l GNU/Linux
cat /etc/os-release gives:
PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
etc.
Any help would be appreciated! | non_defect | compile errors on raspberry pi hi i recently followed the instructions on the wiki under the building with ide heading when i tried to compile sc i got this error at building cxx object editors sc ide cmakefiles supercollider dir widgets main window cpp o building cxx object editors sc ide cmakefiles supercollider dir widgets multi editor cpp o building cxx object editors sc ide cmakefiles supercollider dir widgets post window cpp o g internal compiler error killed program please submit a full bug report with preprocessed source if appropriate see for instructions editors sc ide cmakefiles supercollider dir build make recipe for target editors sc ide cmakefiles supercollider dir widgets lookup dialog cpp o failed make error make waiting for unfinished jobs i m using a raspberry pi with raspbian installed from noobs ran all the update upgrade and dependency installation steps with no issues gcc version gcc v is but i also ran the steps to ensure was used i saw this line the c compiler identification is gnu i had checked out the branch when i got the above error but i also get an error in the same step using the master branch uname a gives me linux raspberrypi smp tue mar gmt gnu linux cat etc os release gives pretty name raspbian gnu linux jessie name raspbian gnu linux version id version jessie id raspbian id like debian etc any help would be appreciated | 0 |
21,951 | 3,587,215,208 | IssuesEvent | 2016-01-30 05:06:12 | mash99/crypto-js | https://api.github.com/repos/mash99/crypto-js | closed | checksum of file | auto-migrated Priority-Medium Type-Defect | ```
How i can encrypt a file (jpg, pdf) with crypto js?
I need encript with md5 for check the integrity of a file.
```
Original issue reported on code.google.com by `hic...@gmail.com` on 10 Feb 2014 at 11:06 | 1.0 | checksum of file - ```
How i can encrypt a file (jpg, pdf) with crypto js?
I need encript with md5 for check the integrity of a file.
```
Original issue reported on code.google.com by `hic...@gmail.com` on 10 Feb 2014 at 11:06 | defect | checksum of file how i can encrypt a file jpg pdf with crypto js i need encript with for check the integrity of a file original issue reported on code google com by hic gmail com on feb at | 1 |
76,723 | 26,566,847,084 | IssuesEvent | 2023-01-20 21:11:02 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | Failed to join. There was an error joining | T-Defect X-Needs-Info | ### Steps to reproduce
1. Try to join to room.
Rooms to reproduce:
#stardust:matrix.org
#the:matrix.org
#te:matrix.org
### Outcome
#### What did you expect?
Joined to the room
#### What happened instead?
Failed to join
### Operating system
Windows 7
### Application version
1.11.17
### How did you install the app?
_No response_
### Homeserver
matrix.org
### Will you send logs?
No | 1.0 | Failed to join. There was an error joining - ### Steps to reproduce
1. Try to join to room.
Rooms to reproduce:
#stardust:matrix.org
#the:matrix.org
#te:matrix.org
### Outcome
#### What did you expect?
Joined to the room
#### What happened instead?
Failed to join
### Operating system
Windows 7
### Application version
1.11.17
### How did you install the app?
_No response_
### Homeserver
matrix.org
### Will you send logs?
No | defect | failed to join there was an error joining steps to reproduce try to join to room rooms to reproduce stardust matrix org the matrix org te matrix org outcome what did you expect joined to the room what happened instead failed to join operating system windows application version how did you install the app no response homeserver matrix org will you send logs no | 1 |
5,143 | 2,762,924,861 | IssuesEvent | 2015-04-29 03:55:31 | falkTX/Carla | https://api.github.com/repos/falkTX/Carla | closed | carla-rack only saves first plugin | bug needs testing | using 1.9.3(2.0-beta1); when i save, close and reopen carla only the first plugin in each carla-rack is restored. | 1.0 | carla-rack only saves first plugin - using 1.9.3(2.0-beta1); when i save, close and reopen carla only the first plugin in each carla-rack is restored. | non_defect | carla rack only saves first plugin using when i save close and reopen carla only the first plugin in each carla rack is restored | 0 |
273,905 | 20,819,875,912 | IssuesEvent | 2022-03-18 14:22:45 | phukiendienthoaigiare/Qua-Tang-Doanh-Nghiep-4-trong-1 | https://api.github.com/repos/phukiendienthoaigiare/Qua-Tang-Doanh-Nghiep-4-trong-1 | opened | Review Sạc Không Dây 3in1 WCTS9 Cao Cấp Chuẩn Qi | documentation help wanted good first issue question | <p>Tín đồ công nghệ có lẽ không còn xa lạ gì đối với <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ sạc'>công nghệ sạc</a> điện thoại <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>, đây là bước tiến mới trong ngành công nghệ, xuất hiện lần đầu trên các dòng điện thoại Galaxy của Samsung, sau đó được gã khổng lồ Apple phát triển và phổ biến trên các sản phẩm mới nhất của mình như điện thoại, Apple Watch, Earphone… <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>là một trong số những phụ kiện đi kèm các sản phẩm của Apple được nhiều fan trung thành của táo khuyết lựa chọn nhất hiện nay.</p>
<p><strong><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>với công nghệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> đáp ứng nhu cầu sử dụng của những ai yêu thích các thiết bị điện tử của nhà Apple, ngoài ra những thiết bị công nghệ như điện thoại, earphone có hỗ trợ sẵn <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ sạc'>công nghệ sạc</a> wireless đều có thể sử dụng <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong>. </strong>Vậy cụ thể, <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong></strong> có điểm gì nổi bật, có nên lựa chọn sử dụng hay không? Cùng tìm hiểu qua bài viết dưới đây nhé.</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img width="697" height="698" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2.jpg" alt="Đế Sạc Không Dây 3in1 WTCS9" class="wp-image-13355" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2.jpg 697w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-441x442.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-600x601.jpg 600w" sizes="(max-width: 697px) 100vw, 697px" /><figcaption>Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</figcaption></figure></div>
<h2 id="h-dặc-diểm-của-cong-nghệ-sạc-khong-day-chuẩn-qi">Đặc điểm của công nghệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>.</h2>
<p><strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>là sản phẩm tích hợp tiêu chuẩn <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ Qi'>công nghệ Qi</a>. Đây là <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ sạc'>công nghệ sạc</a> hiện đại nhất hiện nay.</p>
<p><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Qi'>Qi</a> là tên viết tắt của một tiêu chuẩn dành cho công nghệ truyền tải điện năng <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a>. Được đề xuất và xác nhận bởi tổ chức Công đoàn Năng lượng không đây (Wireless Power Consortium – viết tắt là WPC). Mục tiêu ban đầu của phát kiến trên là chuẩn hóa sạc điện <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> cho tất cả thiết bị điện tử từ mọi hãng khác nhau, tương tự tiêu chuẩn hóa công nghệ của USB hay Bluetooth.</p>
<p>Công nhệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> hoạt động dựa trên hiện tượng cảm ứng từ hoặc cộng hưởng từ để truyền tải năng lượng. <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> sử dụng cả cảm ứng từ và cộng hưởng từ cho việc sạc. Tiêu chuẩn trên giúp người sử dụng giải quyết được một số vấn đề lớn thường gặp phải khi sử dụng dây sạc truyền thống.</p>
<h3>Hạn chế quá tải điện năng</h3>
<p>mỗi chiếc điện thoại thông minh đều có một giới hạn điện năng để đề phòng sự cố, nếu không may phải sử dụng bộ sạc quá mạnh so với quy chuẩn ban đầu của sản phẩm có thể làm hư sản phẩm. Việc áp dụng một tiêu chuẩn sạc thống nhất có thể dùng để sạc cho mọi loại điện thoại sẽ làm giảm sự cố trên.</p>
<h3>Hạn chế quá nhiệt </h3>
<p>là hệ quả của việc sử dụng bộ sạc quá mạnh so với thiết kế của sản phẩm, gây ra cháy nổ, nguy hiểm đến an toàn người sử dụng.</p>
<p>Mọi thiết bị có hỗ trợ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> đều có thể hoạt động chéo với nhau, tương tự như thẻ nhớ Micro – SD có thể sử dụng với mọi khe cắm MicroSD vậy. Tạo ra sự thuận tiện cho người sử dụng.</p>
<p><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> tập trung cơ bản vào khả năng điều tiết năng lượng. Những bộ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> dùng tiêu chuẩn này có dạng một bề mặt phẳng, vì nó giúp phân phối năng lượng ổn định và hợp lí hơn. Những thiết bị có tích hợp <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> có thể điều chỉnh lượng sạc cho thiết bị và tự chuyển sang chế độ chờ khi thiết bị đã đầy pin. Những bộ sạc này chỉ hoạt động khi các thiết bị tiêu thụ chúng đặt lên bên trên, còn khi không có thiết bị thì chúng tự chuyển sang chế độ chờ, không kích hoạt để tiết kiệm điện trong cả quá trình.</p>
<h2><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> <strong>có gì đặc biệt?</strong></h2>
<p><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>được hỗ trợ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>, là loại sạc đa năng thường dùng sạc cho các thiết bị công nghệ đời mới của Apple như Apple watch, Iphone, earphone… ngoài ra <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>còn có thể được dùng cho các sản phẩm công nghệ có hỗ trợ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>.</p>
<h3><strong>Kiểu dáng hiện đại, trẻ trung</strong></h3>
<div class="wp-block-image"><figure class="aligncenter size-large"><img width="1024" height="574" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-1024x574.jpg" alt="Điểm đặc biệt của Đế Sạc Không Dây 3in1 WTCS9" class="wp-image-13356" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-1024x574.jpg 1024w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-300x168.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-768x431.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-1536x861.jpg 1536w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-990x555.jpg 990w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-441x247.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-600x336.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-150x84.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg 1787w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Với <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> được tích hợp đã giúp <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>phát triển toàn diện tính năng đảm bảo an toàn trong quá trình sử dụng thiết bị.</figcaption></figure></div>
<p><strong>S<strong>ạc <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có thiết kế hiện đại, đep mắt, các sản phẩm hiện nay được sản xuất theo 2 màu chính là đen và trắng, đều là màu sắc đơn giản nhưng gợi vẻ sang trong cho người sử dụng. Thiết bị có thiết kế nhỏ gọn, kích thước 120*75*14mm, khối lượng khoảng 180g, có thể tháo lắp. Do đó dễ dàng trong quá trình cất giữ, di chuyển, linh hoạt trong việc lựa chọn địa điểm sạc. Thiết bị sạc sử dụng chất liệu Silicone chống trượt đảm bảo thiết bị không trượt ra trong lúc đang sạc. </p>
<h3><strong>Dùng được cho <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=nhiều thiết bị'>nhiều thiết bị</a></strong></h3>
<p><strong><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có bản sạc điện thoại nghiên một góc 60 độ, có thể vừa sạc vừa sử dụng điện thoại để xem phim, đọc báo, lướt web… ngoài ra thiết bị có thể dùng để sạc đồng thời cho <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpods'>airpods</a>, Apple watch… <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>thích hợp sử dụng cho mọi loại điện thoại có hỗ trợ sạc wireless, các dòng Iphone 8 trở về sau, Samsung Galaxy S20, S10, S10 Plus, S10e, S9 Plus, S9, Note 10+…</p>
<p>Mặt phía sau thiết bị sạc có thể dùng sạc cho các loại <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpod'>airpod</a> như <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpods'>airpods</a> Pro, <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpods'>airpods</a> Pro, Airpods2 với phiên bản <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a>. Mặt phía trên dùng để sạc Apple watch 6 SE 5 4 3 2…</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img width="500" height="500" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6.jpg" alt="Đế Sạc Không Dây 3 trong 1 mang đến trải nghiệm đầy tiện ích " class="wp-image-13357" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6.jpg 500w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6-441x441.jpg 441w" sizes="(max-width: 500px) 100vw, 500px" /><figcaption>Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3 trong 1'>3 trong 1</a> mang đến trải nghiệm đầy tiện ích</figcaption></figure></div>
<h3><strong>Tính năng vượt trội</strong></h3>
<p>Công nghệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> được thiết kế kèm theo một chức năng với tên gọi là <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Foreign Object Detection'>Foreign Object Detection</a> (<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=FOD'>FOD</a>) tạm dịch là phát hiện vật thể lạ, giúp nó phân biệt được giữa lõi dây thứ cấp trong điện thoại để truyền điện và đâu là vật thể lạ. <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có độ nhạy cao để nhận diện điện thoại cũng như các thiết bị cần sạc khác.</p>
<p>Đồng thời, sản phẩm được tích hợp các thiết bị chip thông minh giúp kiểm soát nhiệt độ, bảo vệ điện áp, bảo vệ quá dòng, giúp hạn chế thấp nhất nguy chơ cháy nổ. Đối với người dùng có thói quen sạc qua đêm sẽ không còn lo lắng vấn đề chai pin điện thoại. Bởi vì sạc sẽ tự động tắt nguồn khi điện thoại của bạn đầy pin. Đây là ưu điểm lớn nhất so với các loại sạc có dây truyền thống khác.</p>
<p><strong><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>trang bị bộ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc nhanh'>sạc nhanh</a> 10W và cáp loại c 3,3 ft. Thiết bị có thể đầy pin sau 2 đến 3 giờ đồng hồ, so với các loại sạc có dây Iphone khác thì nhanh hơn khoảng 30%. Công suất đầu vào của bộ sạc cao, có thể sạc dùng lúc 2 điện thoại di động (ở mặt trước và mặt sau của thiết bị sạc).</p>
<p>Đối với điện thoại sử dụng ốp, <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có thể sạc xuyên qua lớp ốp lưng điện thoại, tránh mất trời gian tháo bỏ lớp vỏ. <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Đèn led'>Đèn led</a> hiển thị màu xanh giúp người dùng nhận biết khi thiết bị kết nối nguồn điện và bắt đầu sạc, có thể tận dụng làm đèn ngủ vào buổi tối bởi độ sáng của đèn khá lớn.</p>
<h2>Một vài lưu ý khi sử dụng <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a></h2>
<p><strong>S<strong>ạc <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có nhiều ưu điểm, tuy nhiên vẫn có một số vấn đề nhỏ người dùng nên lưu ý để sử dụng sản phẩm một cách có hiệu quả.</p>
<p>Mặc dù có khả năng sạc xuyên ốp điện thoại, người dùng nên tránh sử dụng ốp quá dày khi sạc để tránh việc điện thoại không thể kết nối với nguồn sạc. Khi sạc, nên đặt thiết bị cần sạc vào đúng vị trí sạc tránh hiện tượng không thể kết nối điện. Trường hợp muốn sạc cùng lúc ba thiết bị hoặc muốn tăng tốc độ sạc, cần có thiết bị adapter <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc nhanh'>sạc nhanh</a> kèm theo.</p>
<p><strong>Bộ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>là thiết bị sạc hiện đại hàng đầu hiện nay, được chứng nhận an toàn <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=ROHS'>ROHS</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=FCC'>FCC</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=CE'>CE</a>. Đối tới tín đồ công nghệ thì đây là món hàng không thể bỏ qua. Đặc biệt, những người yêu thích các sản phẩm của Apple cũng quá rõ việc sở hữu những thiết bị của nhà táo cũng giống như sử dụng một món đồ trang sức. <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>với thiết kế sang trọng, đẹp mắt không chỉ giúp cuộc sống trở nên tiện lợi, nó còn thể hiện cá tính của người sở hữu.</p>
<p>Mức giá hiện nay của sản phẩm là 750.000, đây là mức giá thấp hơn so với mức giá trung bình các dòng sản phẩm <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> hiện có trên thị trường. Với một mức giá hợp lý, bạn đã có thể sử dụng một sản phẩm công nghệ chất lượng cao hàng đầu để thỏa mãn đam mê của bản thân.</p>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
<div data-block-name="woocommerce/handpicked-products" data-columns="4" data-edit-mode="false" data-content-visibility="{"title":true,"price":true,"rating":true,"button":false}" data-products="[9513,8435,7962,7890,9489]" data-align-buttons="true" class="wc-block-grid wp-block-handpicked-products wc-block-handpicked-products has-4-columns has-multiple-rows has-aligned-buttons"><ul class="wc-block-grid__products"><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/ES9-18-1.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Đế Sạc Không Dây 15W 3in1 WCTS9" sizes="(max-width: 360px) 147px, " /></div>
<div class="wc-block-grid__product-title">Đế Sạc Không Dây 15W 3in1 WCTS9</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">750.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">58</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/sac-khong-day-wctk7-chuan-qi-10w/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-300x300.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Sạc Không Dây WCTK7 Chuẩn Qi 10W" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-600x600.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-1024x1024.jpg 1024w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-768x768.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-990x990.jpg 990w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-441x441.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1.jpg 1439w" sizes="(max-width: 360px) 147px, (max-width: 300px) 100vw, 300px" /></div>
<div class="wc-block-grid__product-title">Sạc Không Dây WCTK7 Chuẩn Qi 10W</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">250.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">55</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/sac-khong-day-magsafe-charger-wctx2-15w-chuan-qi-cho-iphone-12-13/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-300x300.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Sạc Không Dây Magsafe Charger WCTX2 15W Chuẩn Qi Cho iPhone 12, 13" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-600x600.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-1024x1024.jpg 1024w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-768x768.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-990x990.jpg 990w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-441x441.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11.jpg 1200w" sizes="(max-width: 360px) 147px, (max-width: 300px) 100vw, 300px" /></div>
<div class="wc-block-grid__product-title">Sạc Không Dây Magsafe Charger WCTX2 15W Chuẩn Qi Cho iPhone 12, 13</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">450.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">59</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn02/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-300x300.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Tai Nghe Bluetooth 5.1 MN02" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-600x600.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-768x768.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-441x441.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1.jpg 800w" sizes="(max-width: 360px) 147px, (max-width: 300px) 100vw, 300px" /></div>
<div class="wc-block-grid__product-title">Tai Nghe Bluetooth 5.1 MN02</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">650.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">57</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn08/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/H8-5.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Tai Nghe Bluetooth 5.1 MN08" sizes="(max-width: 360px) 147px, " /></div>
<div class="wc-block-grid__product-title">Tai Nghe Bluetooth 5.1 MN08</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">750.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">57</span> đánh giá</span></div></div>
</li></ul></div>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
<section class="sc_fs_event sc_card">
<h2>Tìm đại lý phân phối – Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> 15W <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </h2> <figure>
<a href="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg" title="">
<img src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-150x150.jpg" alt=""/>
</a>
<meta content="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg">
<meta content="1787">
<meta content="1002">
</figure>
<p>
Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9<br><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc nhanh'>sạc nhanh</a> 15W/ 10W/ 7.5W tương thích với tất cả các thiết bị điện thoại đang có trên thị trường<br>Hỗ trợ sạc : các dòng điện thoại, Apple iwatch, <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Tai nghe'>Tai nghe</a> wireless, đèn ngủ<br>Tính năng tự động ngắt sau khi sạc đầy pin cùng khả năng <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=bảo vệ quá nhiệt'>bảo vệ quá nhiệt</a>, quá tải thông minh<br>Tiện lợi: Sạc điện thoại đặt nằm dọc hoặc nằm ngang giúp bạn giải trí dễ dàng: Xem phim, đọc sách, gọi video call,…<br>Chứng nhận an toàn : <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=ROHS'>ROHS</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=FCC'>FCC</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=CE'>CE</a><br>Tùy Chỉnh <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Logo Doanh nghiệp'>Logo Doanh nghiệp</a> theo yêu cầu (<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=MOQ'>MOQ</a>=100pcs) </p>
<div class="sc_row w-100">
<div class="sc_grey-box">
<div class="sc_box-label">
Event Meta </div>
<div class="sc_company">
<div class="sc_company-infos">
<div class="sc_input-group">
<div class="sc_input-label">
Name </div>
<div class="wp-block-structured-content-event__location">
Tìm đại lý phân phối – Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> 15W <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Event Status </div>
<div class="wp-block-structured-content-event__status">
Scheduled </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Start Date </div>
<div class="wp-block-structured-content-event__start_date">
01/12/2021 11:05 Chiều </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
End Date </div>
<div class="wp-block-structured-content-event__end_date">
01/12/2050 11:05 Chiều </div>
</div>
</div>
</div>
</div>
<div class="sc_grey-box">
<div class="sc_box-label">
Event Location </div>
<div class="sc_input-group">
<div class="sc_input-label">
Attendance Mode </div>
<div class="wp-block-structured-content-event__event_attendance_mode">
Online </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
URL </div>
<div class="wp-block-structured-content-event__online_url">
<a target="_blank" href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/">https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/</a>
</div>
</div>
</div>
</div>
<div class="sc_row w-100">
<div class="sc_grey-box">
<div class="sc_box-label">
Performer </div>
<div class="sc_input-group">
<div class="sc_input-label">
Type </div>
<div class="wp-block-structured-content-event__offer_availability">
Performing Group </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Name </div>
<div class="wp-block-structured-content-event__offer_url">
<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Phụ kiện điện thoại giá rẻ'>Phụ kiện điện thoại giá rẻ</a> – PMCS TECH </div>
</div>
</div>
<div class="sc_grey-box">
<div class="sc_box-label">
Offer </div>
<div class="sc_row">
<div class="sc_input-group">
<div class="sc_input-label">
Availability </div>
<div class="wp-block-structured-content-event__offer_availability">
In Stock </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Ticket Website </div>
<div class="wp-block-structured-content-event__offer_url">
<a href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/">https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/</a>
</div>
</div>
</div>
<div class="sc_row">
<div class="sc_input-group">
<div class="sc_input-label">
Currency <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=ISO'>ISO</a> Code </div>
<div class="wp-block-structured-content-event__currency">
VND </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Price </div>
<div class="wp-block-structured-content-event__price">
395.000,00 </div>
</div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Valid From </div>
<div class="wp-block-structured-content-event__valid_from">
01/12/2021 11:04 Chiều </div>
</div>
</div>
</div>
</section>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"organizer": { "@type": "Organization", "name": "PHỤ KIỆN ĐIỆN THOẠI GIÁ RẺ", "url": "https://phukiendienthoaigiare.com" },
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
"name": "Tìm đại lý phân phối - Đế Sạc Không Dây 15W 3in1 WCTS9 ",
"startDate": "2021-12-01T23:05:00+07:00",
"endDate": "2050-12-01T23:05:00+07:00",
"location":
{
"@type": "VirtualLocation",
"url": "https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/"
}
,
"image" : ["https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg"],
"offers": {
"@type": "Offer",
"url": "https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/",
"price": "395000.00",
"priceCurrency": "VND",
"availability": "https://schema.org/InStock",
"validFrom": "2021-12-01T23:04:00+07:00"
},
"performer": {
"@type": "PerformingGroup",
"name": "Phụ kiện điện thoại giá rẻ - PMCS TECH"
},
"description": "Đế sạc không dây 3in1 WCTS9<br>Sạc nhanh 15W/ 10W/ 7.5W tương thích với tất cả các thiết bị điện thoại đang có trên thị trường<br>Hỗ trợ sạc : các dòng điện thoại, Apple iwatch, Tai nghe wireless, đèn ngủ<br>Tính năng tự động ngắt sau khi sạc đầy pin cùng khả năng bảo vệ quá nhiệt, quá tải thông minh<br>Tiện lợi: Sạc điện thoại đặt nằm dọc hoặc nằm ngang giúp bạn giải trí dễ dàng: Xem phim, đọc sách, gọi video call,…<br>Chứng nhận an toàn : ROHS/FCC/CE<br>Tùy Chỉnh Logo Doanh nghiệp theo yêu cầu (MOQ=100pcs)"
}
</script>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
<h2 id="h-xem-them">Xem thêm:</h2>
<ul class="wp-block-yoast-seo-related-links"><li><a href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/">Đế Sạc Không Dây 15W 3in1 WCTS9</a></li><li><a href="https://phukiendienthoaigiare.com/product/sac-khong-day-magsafe-charger-wctx2-15w-chuan-qi-cho-iphone-12-13/">Sạc Không Dây Magsafe Charger WCTX2 15W Chuẩn Qi Cho iPhone 12, 13</a></li><li><a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn08/">Tai Nghe Bluetooth 5.1 MN08</a></li><li><a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn02/">Tai Nghe Bluetooth 5.1 MN02</a></li><li><a href="https://phukiendienthoaigiare.com/2021/11/30/review-de-sac-khong-day-wctk7-chuan-qi-10w/">Review Đế Sạc Không Dây WCTK7 Chuẩn Qi 10w</a></li></ul>
<p>The post <a rel="nofollow" href="https://phukiendienthoaigiare.com/review-sac-khong-day-3in1-wcts9-cao-cap-chuan-qi/">Review Sạc Không Dây 3in1 WCTS9 Cao Cấp Chuẩn Qi</a> appeared first on <a rel="nofollow" href="https://phukiendienthoaigiare.com">Phụ kiện điện thoại</a>.</p> | 1.0 | Review Sạc Không Dây 3in1 WCTS9 Cao Cấp Chuẩn Qi - <p>Tín đồ công nghệ có lẽ không còn xa lạ gì đối với <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ sạc'>công nghệ sạc</a> điện thoại <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>, đây là bước tiến mới trong ngành công nghệ, xuất hiện lần đầu trên các dòng điện thoại Galaxy của Samsung, sau đó được gã khổng lồ Apple phát triển và phổ biến trên các sản phẩm mới nhất của mình như điện thoại, Apple Watch, Earphone… <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>là một trong số những phụ kiện đi kèm các sản phẩm của Apple được nhiều fan trung thành của táo khuyết lựa chọn nhất hiện nay.</p>
<p><strong><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>với công nghệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> đáp ứng nhu cầu sử dụng của những ai yêu thích các thiết bị điện tử của nhà Apple, ngoài ra những thiết bị công nghệ như điện thoại, earphone có hỗ trợ sẵn <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ sạc'>công nghệ sạc</a> wireless đều có thể sử dụng <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong>. </strong>Vậy cụ thể, <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong></strong> có điểm gì nổi bật, có nên lựa chọn sử dụng hay không? Cùng tìm hiểu qua bài viết dưới đây nhé.</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img width="697" height="698" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2.jpg" alt="Đế Sạc Không Dây 3in1 WTCS9" class="wp-image-13355" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2.jpg 697w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-441x442.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-2-600x601.jpg 600w" sizes="(max-width: 697px) 100vw, 697px" /><figcaption>Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</figcaption></figure></div>
<h2 id="h-dặc-diểm-của-cong-nghệ-sạc-khong-day-chuẩn-qi">Đặc điểm của công nghệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>.</h2>
<p><strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>là sản phẩm tích hợp tiêu chuẩn <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ Qi'>công nghệ Qi</a>. Đây là <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=công nghệ sạc'>công nghệ sạc</a> hiện đại nhất hiện nay.</p>
<p><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Qi'>Qi</a> là tên viết tắt của một tiêu chuẩn dành cho công nghệ truyền tải điện năng <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a>. Được đề xuất và xác nhận bởi tổ chức Công đoàn Năng lượng không đây (Wireless Power Consortium – viết tắt là WPC). Mục tiêu ban đầu của phát kiến trên là chuẩn hóa sạc điện <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> cho tất cả thiết bị điện tử từ mọi hãng khác nhau, tương tự tiêu chuẩn hóa công nghệ của USB hay Bluetooth.</p>
<p>Công nhệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> hoạt động dựa trên hiện tượng cảm ứng từ hoặc cộng hưởng từ để truyền tải năng lượng. <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> sử dụng cả cảm ứng từ và cộng hưởng từ cho việc sạc. Tiêu chuẩn trên giúp người sử dụng giải quyết được một số vấn đề lớn thường gặp phải khi sử dụng dây sạc truyền thống.</p>
<h3>Hạn chế quá tải điện năng</h3>
<p>mỗi chiếc điện thoại thông minh đều có một giới hạn điện năng để đề phòng sự cố, nếu không may phải sử dụng bộ sạc quá mạnh so với quy chuẩn ban đầu của sản phẩm có thể làm hư sản phẩm. Việc áp dụng một tiêu chuẩn sạc thống nhất có thể dùng để sạc cho mọi loại điện thoại sẽ làm giảm sự cố trên.</p>
<h3>Hạn chế quá nhiệt </h3>
<p>là hệ quả của việc sử dụng bộ sạc quá mạnh so với thiết kế của sản phẩm, gây ra cháy nổ, nguy hiểm đến an toàn người sử dụng.</p>
<p>Mọi thiết bị có hỗ trợ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> đều có thể hoạt động chéo với nhau, tương tự như thẻ nhớ Micro – SD có thể sử dụng với mọi khe cắm MicroSD vậy. Tạo ra sự thuận tiện cho người sử dụng.</p>
<p><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> tập trung cơ bản vào khả năng điều tiết năng lượng. Những bộ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> dùng tiêu chuẩn này có dạng một bề mặt phẳng, vì nó giúp phân phối năng lượng ổn định và hợp lí hơn. Những thiết bị có tích hợp <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> có thể điều chỉnh lượng sạc cho thiết bị và tự chuyển sang chế độ chờ khi thiết bị đã đầy pin. Những bộ sạc này chỉ hoạt động khi các thiết bị tiêu thụ chúng đặt lên bên trên, còn khi không có thiết bị thì chúng tự chuyển sang chế độ chờ, không kích hoạt để tiết kiệm điện trong cả quá trình.</p>
<h2><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> <strong>có gì đặc biệt?</strong></h2>
<p><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>được hỗ trợ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>, là loại sạc đa năng thường dùng sạc cho các thiết bị công nghệ đời mới của Apple như Apple watch, Iphone, earphone… ngoài ra <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>còn có thể được dùng cho các sản phẩm công nghệ có hỗ trợ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a>.</p>
<h3><strong>Kiểu dáng hiện đại, trẻ trung</strong></h3>
<div class="wp-block-image"><figure class="aligncenter size-large"><img width="1024" height="574" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-1024x574.jpg" alt="Điểm đặc biệt của Đế Sạc Không Dây 3in1 WTCS9" class="wp-image-13356" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-1024x574.jpg 1024w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-300x168.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-768x431.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-1536x861.jpg 1536w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-990x555.jpg 990w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-441x247.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-600x336.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-150x84.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg 1787w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Với <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> được tích hợp đã giúp <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>phát triển toàn diện tính năng đảm bảo an toàn trong quá trình sử dụng thiết bị.</figcaption></figure></div>
<p><strong>S<strong>ạc <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có thiết kế hiện đại, đep mắt, các sản phẩm hiện nay được sản xuất theo 2 màu chính là đen và trắng, đều là màu sắc đơn giản nhưng gợi vẻ sang trong cho người sử dụng. Thiết bị có thiết kế nhỏ gọn, kích thước 120*75*14mm, khối lượng khoảng 180g, có thể tháo lắp. Do đó dễ dàng trong quá trình cất giữ, di chuyển, linh hoạt trong việc lựa chọn địa điểm sạc. Thiết bị sạc sử dụng chất liệu Silicone chống trượt đảm bảo thiết bị không trượt ra trong lúc đang sạc. </p>
<h3><strong>Dùng được cho <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=nhiều thiết bị'>nhiều thiết bị</a></strong></h3>
<p><strong><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có bản sạc điện thoại nghiên một góc 60 độ, có thể vừa sạc vừa sử dụng điện thoại để xem phim, đọc báo, lướt web… ngoài ra thiết bị có thể dùng để sạc đồng thời cho <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpods'>airpods</a>, Apple watch… <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>thích hợp sử dụng cho mọi loại điện thoại có hỗ trợ sạc wireless, các dòng Iphone 8 trở về sau, Samsung Galaxy S20, S10, S10 Plus, S10e, S9 Plus, S9, Note 10+…</p>
<p>Mặt phía sau thiết bị sạc có thể dùng sạc cho các loại <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpod'>airpod</a> như <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpods'>airpods</a> Pro, <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=airpods'>airpods</a> Pro, Airpods2 với phiên bản <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a>. Mặt phía trên dùng để sạc Apple watch 6 SE 5 4 3 2…</p>
<div class="wp-block-image"><figure class="aligncenter size-full"><img width="500" height="500" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6.jpg" alt="Đế Sạc Không Dây 3 trong 1 mang đến trải nghiệm đầy tiện ích " class="wp-image-13357" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6.jpg 500w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-6-441x441.jpg 441w" sizes="(max-width: 500px) 100vw, 500px" /><figcaption>Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3 trong 1'>3 trong 1</a> mang đến trải nghiệm đầy tiện ích</figcaption></figure></div>
<h3><strong>Tính năng vượt trội</strong></h3>
<p>Công nghệ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=chuẩn Qi'>chuẩn Qi</a> được thiết kế kèm theo một chức năng với tên gọi là <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Foreign Object Detection'>Foreign Object Detection</a> (<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=FOD'>FOD</a>) tạm dịch là phát hiện vật thể lạ, giúp nó phân biệt được giữa lõi dây thứ cấp trong điện thoại để truyền điện và đâu là vật thể lạ. <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có độ nhạy cao để nhận diện điện thoại cũng như các thiết bị cần sạc khác.</p>
<p>Đồng thời, sản phẩm được tích hợp các thiết bị chip thông minh giúp kiểm soát nhiệt độ, bảo vệ điện áp, bảo vệ quá dòng, giúp hạn chế thấp nhất nguy chơ cháy nổ. Đối với người dùng có thói quen sạc qua đêm sẽ không còn lo lắng vấn đề chai pin điện thoại. Bởi vì sạc sẽ tự động tắt nguồn khi điện thoại của bạn đầy pin. Đây là ưu điểm lớn nhất so với các loại sạc có dây truyền thống khác.</p>
<p><strong><strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>trang bị bộ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc nhanh'>sạc nhanh</a> 10W và cáp loại c 3,3 ft. Thiết bị có thể đầy pin sau 2 đến 3 giờ đồng hồ, so với các loại sạc có dây Iphone khác thì nhanh hơn khoảng 30%. Công suất đầu vào của bộ sạc cao, có thể sạc dùng lúc 2 điện thoại di động (ở mặt trước và mặt sau của thiết bị sạc).</p>
<p>Đối với điện thoại sử dụng ốp, <strong> <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có thể sạc xuyên qua lớp ốp lưng điện thoại, tránh mất trời gian tháo bỏ lớp vỏ. <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Đèn led'>Đèn led</a> hiển thị màu xanh giúp người dùng nhận biết khi thiết bị kết nối nguồn điện và bắt đầu sạc, có thể tận dụng làm đèn ngủ vào buổi tối bởi độ sáng của đèn khá lớn.</p>
<h2>Một vài lưu ý khi sử dụng <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a></h2>
<p><strong>S<strong>ạc <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=không dây'>không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9</strong> </strong>có nhiều ưu điểm, tuy nhiên vẫn có một số vấn đề nhỏ người dùng nên lưu ý để sử dụng sản phẩm một cách có hiệu quả.</p>
<p>Mặc dù có khả năng sạc xuyên ốp điện thoại, người dùng nên tránh sử dụng ốp quá dày khi sạc để tránh việc điện thoại không thể kết nối với nguồn sạc. Khi sạc, nên đặt thiết bị cần sạc vào đúng vị trí sạc tránh hiện tượng không thể kết nối điện. Trường hợp muốn sạc cùng lúc ba thiết bị hoặc muốn tăng tốc độ sạc, cần có thiết bị adapter <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc nhanh'>sạc nhanh</a> kèm theo.</p>
<p><strong>Bộ <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>là thiết bị sạc hiện đại hàng đầu hiện nay, được chứng nhận an toàn <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=ROHS'>ROHS</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=FCC'>FCC</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=CE'>CE</a>. Đối tới tín đồ công nghệ thì đây là món hàng không thể bỏ qua. Đặc biệt, những người yêu thích các sản phẩm của Apple cũng quá rõ việc sở hữu những thiết bị của nhà táo cũng giống như sử dụng một món đồ trang sức. <strong><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </strong>với thiết kế sang trọng, đẹp mắt không chỉ giúp cuộc sống trở nên tiện lợi, nó còn thể hiện cá tính của người sở hữu.</p>
<p>Mức giá hiện nay của sản phẩm là 750.000, đây là mức giá thấp hơn so với mức giá trung bình các dòng sản phẩm <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> hiện có trên thị trường. Với một mức giá hợp lý, bạn đã có thể sử dụng một sản phẩm công nghệ chất lượng cao hàng đầu để thỏa mãn đam mê của bản thân.</p>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
<div data-block-name="woocommerce/handpicked-products" data-columns="4" data-edit-mode="false" data-content-visibility="{"title":true,"price":true,"rating":true,"button":false}" data-products="[9513,8435,7962,7890,9489]" data-align-buttons="true" class="wc-block-grid wp-block-handpicked-products wc-block-handpicked-products has-4-columns has-multiple-rows has-aligned-buttons"><ul class="wc-block-grid__products"><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/ES9-18-1.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Đế Sạc Không Dây 15W 3in1 WCTS9" sizes="(max-width: 360px) 147px, " /></div>
<div class="wc-block-grid__product-title">Đế Sạc Không Dây 15W 3in1 WCTS9</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">750.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">58</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/sac-khong-day-wctk7-chuan-qi-10w/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-300x300.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Sạc Không Dây WCTK7 Chuẩn Qi 10W" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-600x600.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-1024x1024.jpg 1024w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-768x768.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-990x990.jpg 990w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1-441x441.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/K7-1.jpg 1439w" sizes="(max-width: 360px) 147px, (max-width: 300px) 100vw, 300px" /></div>
<div class="wc-block-grid__product-title">Sạc Không Dây WCTK7 Chuẩn Qi 10W</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">250.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">55</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/sac-khong-day-magsafe-charger-wctx2-15w-chuan-qi-cho-iphone-12-13/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-300x300.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Sạc Không Dây Magsafe Charger WCTX2 15W Chuẩn Qi Cho iPhone 12, 13" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-600x600.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-1024x1024.jpg 1024w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-768x768.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-990x990.jpg 990w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11-441x441.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/X2-11.jpg 1200w" sizes="(max-width: 360px) 147px, (max-width: 300px) 100vw, 300px" /></div>
<div class="wc-block-grid__product-title">Sạc Không Dây Magsafe Charger WCTX2 15W Chuẩn Qi Cho iPhone 12, 13</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">450.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">59</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn02/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-300x300.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Tai Nghe Bluetooth 5.1 MN02" srcset="//phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-300x300.jpg 300w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-150x150.jpg 150w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-600x600.jpg 600w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-768x768.jpg 768w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1-441x441.jpg 441w, //phukiendienthoaigiare.com/wp-content/uploads/2021/11/G205.8-1.jpg 800w" sizes="(max-width: 360px) 147px, (max-width: 300px) 100vw, 300px" /></div>
<div class="wc-block-grid__product-title">Tai Nghe Bluetooth 5.1 MN02</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">650.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">57</span> đánh giá</span></div></div>
</li><li class="wc-block-grid__product">
<a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn08/" class="wc-block-grid__product-link">
<div class="wc-block-grid__product-image"><img width="300" height="300" src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/11/H8-5.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="Tai Nghe Bluetooth 5.1 MN08" sizes="(max-width: 360px) 147px, " /></div>
<div class="wc-block-grid__product-title">Tai Nghe Bluetooth 5.1 MN08</div>
</a>
<div class="wc-block-grid__product-price price"><span class="woocommerce-Price-amount amount">750.000 <span class="woocommerce-Price-currencySymbol">₫</span></span></div>
<div class="wc-block-grid__product-rating"><div class="star-rating" role="img" aria-label="Được xếp hạng 5.00 5 sao"><span style="width:100%"><strong class="rating">5.00</strong> trên 5 dựa trên <span class="rating">57</span> đánh giá</span></div></div>
</li></ul></div>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
<section class="sc_fs_event sc_card">
<h2>Tìm đại lý phân phối – Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> 15W <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </h2> <figure>
<a href="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg" title="">
<img src="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22-150x150.jpg" alt=""/>
</a>
<meta content="https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg">
<meta content="1787">
<meta content="1002">
</figure>
<p>
Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9<br><a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc nhanh'>sạc nhanh</a> 15W/ 10W/ 7.5W tương thích với tất cả các thiết bị điện thoại đang có trên thị trường<br>Hỗ trợ sạc : các dòng điện thoại, Apple iwatch, <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Tai nghe'>Tai nghe</a> wireless, đèn ngủ<br>Tính năng tự động ngắt sau khi sạc đầy pin cùng khả năng <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=bảo vệ quá nhiệt'>bảo vệ quá nhiệt</a>, quá tải thông minh<br>Tiện lợi: Sạc điện thoại đặt nằm dọc hoặc nằm ngang giúp bạn giải trí dễ dàng: Xem phim, đọc sách, gọi video call,…<br>Chứng nhận an toàn : <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=ROHS'>ROHS</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=FCC'>FCC</a>/<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=CE'>CE</a><br>Tùy Chỉnh <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Logo Doanh nghiệp'>Logo Doanh nghiệp</a> theo yêu cầu (<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=MOQ'>MOQ</a>=100pcs) </p>
<div class="sc_row w-100">
<div class="sc_grey-box">
<div class="sc_box-label">
Event Meta </div>
<div class="sc_company">
<div class="sc_company-infos">
<div class="sc_input-group">
<div class="sc_input-label">
Name </div>
<div class="wp-block-structured-content-event__location">
Tìm đại lý phân phối – Đế <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=sạc không dây'>sạc không dây</a> 15W <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=3in1'>3in1</a> WCTS9 </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Event Status </div>
<div class="wp-block-structured-content-event__status">
Scheduled </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Start Date </div>
<div class="wp-block-structured-content-event__start_date">
01/12/2021 11:05 Chiều </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
End Date </div>
<div class="wp-block-structured-content-event__end_date">
01/12/2050 11:05 Chiều </div>
</div>
</div>
</div>
</div>
<div class="sc_grey-box">
<div class="sc_box-label">
Event Location </div>
<div class="sc_input-group">
<div class="sc_input-label">
Attendance Mode </div>
<div class="wp-block-structured-content-event__event_attendance_mode">
Online </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
URL </div>
<div class="wp-block-structured-content-event__online_url">
<a target="_blank" href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/">https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/</a>
</div>
</div>
</div>
</div>
<div class="sc_row w-100">
<div class="sc_grey-box">
<div class="sc_box-label">
Performer </div>
<div class="sc_input-group">
<div class="sc_input-label">
Type </div>
<div class="wp-block-structured-content-event__offer_availability">
Performing Group </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Name </div>
<div class="wp-block-structured-content-event__offer_url">
<a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=Phụ kiện điện thoại giá rẻ'>Phụ kiện điện thoại giá rẻ</a> – PMCS TECH </div>
</div>
</div>
<div class="sc_grey-box">
<div class="sc_box-label">
Offer </div>
<div class="sc_row">
<div class="sc_input-group">
<div class="sc_input-label">
Availability </div>
<div class="wp-block-structured-content-event__offer_availability">
In Stock </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Ticket Website </div>
<div class="wp-block-structured-content-event__offer_url">
<a href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/">https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/</a>
</div>
</div>
</div>
<div class="sc_row">
<div class="sc_input-group">
<div class="sc_input-label">
Currency <a rel='dofollow' target='_BLANK' href='https://phukiendienthoaigiare.com/q?q=ISO'>ISO</a> Code </div>
<div class="wp-block-structured-content-event__currency">
VND </div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Price </div>
<div class="wp-block-structured-content-event__price">
395.000,00 </div>
</div>
</div>
<div class="sc_input-group">
<div class="sc_input-label">
Valid From </div>
<div class="wp-block-structured-content-event__valid_from">
01/12/2021 11:04 Chiều </div>
</div>
</div>
</div>
</section>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"organizer": { "@type": "Organization", "name": "PHỤ KIỆN ĐIỆN THOẠI GIÁ RẺ", "url": "https://phukiendienthoaigiare.com" },
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
"name": "Tìm đại lý phân phối - Đế Sạc Không Dây 15W 3in1 WCTS9 ",
"startDate": "2021-12-01T23:05:00+07:00",
"endDate": "2050-12-01T23:05:00+07:00",
"location":
{
"@type": "VirtualLocation",
"url": "https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/"
}
,
"image" : ["https://phukiendienthoaigiare.com/wp-content/uploads/2021/12/Review-De-Sac-Khong-Day-3in1-WTCS9-22.jpg"],
"offers": {
"@type": "Offer",
"url": "https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/",
"price": "395000.00",
"priceCurrency": "VND",
"availability": "https://schema.org/InStock",
"validFrom": "2021-12-01T23:04:00+07:00"
},
"performer": {
"@type": "PerformingGroup",
"name": "Phụ kiện điện thoại giá rẻ - PMCS TECH"
},
"description": "Đế sạc không dây 3in1 WCTS9<br>Sạc nhanh 15W/ 10W/ 7.5W tương thích với tất cả các thiết bị điện thoại đang có trên thị trường<br>Hỗ trợ sạc : các dòng điện thoại, Apple iwatch, Tai nghe wireless, đèn ngủ<br>Tính năng tự động ngắt sau khi sạc đầy pin cùng khả năng bảo vệ quá nhiệt, quá tải thông minh<br>Tiện lợi: Sạc điện thoại đặt nằm dọc hoặc nằm ngang giúp bạn giải trí dễ dàng: Xem phim, đọc sách, gọi video call,…<br>Chứng nhận an toàn : ROHS/FCC/CE<br>Tùy Chỉnh Logo Doanh nghiệp theo yêu cầu (MOQ=100pcs)"
}
</script>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
<h2 id="h-xem-them">Xem thêm:</h2>
<ul class="wp-block-yoast-seo-related-links"><li><a href="https://phukiendienthoaigiare.com/product/de-sac-khong-day-3in1-wcts9/">Đế Sạc Không Dây 15W 3in1 WCTS9</a></li><li><a href="https://phukiendienthoaigiare.com/product/sac-khong-day-magsafe-charger-wctx2-15w-chuan-qi-cho-iphone-12-13/">Sạc Không Dây Magsafe Charger WCTX2 15W Chuẩn Qi Cho iPhone 12, 13</a></li><li><a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn08/">Tai Nghe Bluetooth 5.1 MN08</a></li><li><a href="https://phukiendienthoaigiare.com/product/tai-nghe-bluetooth-5-1-mn02/">Tai Nghe Bluetooth 5.1 MN02</a></li><li><a href="https://phukiendienthoaigiare.com/2021/11/30/review-de-sac-khong-day-wctk7-chuan-qi-10w/">Review Đế Sạc Không Dây WCTK7 Chuẩn Qi 10w</a></li></ul>
<p>The post <a rel="nofollow" href="https://phukiendienthoaigiare.com/review-sac-khong-day-3in1-wcts9-cao-cap-chuan-qi/">Review Sạc Không Dây 3in1 WCTS9 Cao Cấp Chuẩn Qi</a> appeared first on <a rel="nofollow" href="https://phukiendienthoaigiare.com">Phụ kiện điện thoại</a>.</p> | non_defect | review sạc không dây cao cấp chuẩn qi tín đồ công nghệ có lẽ không còn xa lạ gì đối với công nghệ sạc điện thoại không dây chuẩn qi đây là bước tiến mới trong ngành công nghệ xuất hiện lần đầu trên các dòng điện thoại galaxy của samsung sau đó được gã khổng lồ apple phát triển và phổ biến trên các sản phẩm mới nhất của mình như điện thoại apple watch earphone… sạc không dây là một trong số những phụ kiện đi kèm các sản phẩm của apple được nhiều fan trung thành của táo khuyết lựa chọn nhất hiện nay sạc không dây với công nghệ chuẩn qi đáp ứng nhu cầu sử dụng của những ai yêu thích các thiết bị điện tử của nhà apple ngoài ra những thiết bị công nghệ như điện thoại earphone có hỗ trợ sẵn công nghệ sạc wireless đều có thể sử dụng sạc không dây vậy cụ thể sạc không dây có điểm gì nổi bật có nên lựa chọn sử dụng hay không cùng tìm hiểu qua bài viết dưới đây nhé đế sạc không dây đặc điểm của công nghệ sạc không dây chuẩn qi sạc không dây là sản phẩm tích hợp tiêu chuẩn công nghệ qi đây là công nghệ sạc hiện đại nhất hiện nay không dây được đề xuất và xác nhận bởi tổ chức công đoàn năng lượng không đây wireless power consortium – viết tắt là wpc mục tiêu ban đầu của phát kiến trên là chuẩn hóa sạc điện không dây cho tất cả thiết bị điện tử từ mọi hãng khác nhau tương tự tiêu chuẩn hóa công nghệ của usb hay bluetooth công nhệ sạc không dây hoạt động dựa trên hiện tượng cảm ứng từ hoặc cộng hưởng từ để truyền tải năng lượng chuẩn qi sử dụng cả cảm ứng từ và cộng hưởng từ cho việc sạc tiêu chuẩn trên giúp người sử dụng giải quyết được một số vấn đề lớn thường gặp phải khi sử dụng dây sạc truyền thống hạn chế quá tải điện năng mỗi chiếc điện thoại thông minh đều có một giới hạn điện năng để đề phòng sự nbsp cố nếu không may phải sử dụng bộ sạc quá mạnh so với quy chuẩn ban đầu của sản phẩm có thể làm hư sản phẩm việc áp dụng một tiêu chuẩn sạc thống nhất có thể dùng để sạc cho mọi loại điện thoại sẽ làm giảm sự cố trên hạn chế quá nhiệt là hệ quả của việc sử dụng bộ sạc quá mạnh so với thiết kế của sản phẩm gây ra cháy nổ nguy hiểm đến an toàn người sử dụng mọi thiết bị có hỗ trợ chuẩn qi đều có thể hoạt động chéo với nhau tương tự như thẻ nhớ micro – sd có thể sử dụng với mọi khe cắm microsd vậy tạo ra sự thuận tiện cho người sử dụng chuẩn qi tập trung cơ bản vào khả năng điều tiết năng lượng những bộ sạc không dây dùng tiêu chuẩn này có dạng một bề mặt phẳng vì nó giúp phân phối năng lượng ổn định và hợp lí hơn những thiết bị có tích hợp chuẩn qi có thể điều chỉnh lượng sạc cho thiết bị và tự chuyển sang chế độ chờ khi thiết bị đã đầy pin những bộ sạc này chỉ hoạt động khi các thiết bị tiêu thụ chúng đặt lên bên trên còn khi không có thiết bị thì chúng tự chuyển sang chế độ chờ không kích hoạt để tiết kiệm điện trong cả quá trình sạc không dây có gì đặc biệt sạc không dây được hỗ trợ chuẩn qi là loại sạc đa năng thường dùng sạc cho các thiết bị công nghệ đời mới của apple như apple watch iphone earphone… ngoài ra sạc không dây còn có thể được dùng cho các sản phẩm công nghệ có hỗ trợ chuẩn qi kiểu dáng hiện đại trẻ trung với chuẩn qi được tích hợp đã giúp sạc không dây phát triển toàn diện tính năng đảm bảo an toàn trong quá trình sử dụng thiết bị s ạc không dây có thiết kế hiện đại đep mắt các sản phẩm hiện nay được sản xuất theo màu chính là đen và trắng đều là màu sắc đơn giản nhưng gợi vẻ sang trong cho người sử dụng thiết bị có thiết kế nhỏ gọn kích thước khối lượng khoảng có thể tháo lắp do đó dễ dàng trong quá trình cất giữ di chuyển linh hoạt trong việc lựa chọn địa điểm sạc thiết bị sạc sử dụng chất liệu silicone chống trượt đảm bảo thiết bị không trượt ra trong lúc đang sạc nbsp dùng được cho nhiều thiết bị sạc không dây có bản sạc điện thoại nghiên một góc độ có thể vừa sạc vừa sử dụng điện thoại để xem phim đọc báo lướt web… ngoài ra thiết bị có thể dùng để sạc đồng thời cho sạc không dây thích hợp sử dụng cho mọi loại điện thoại có hỗ trợ sạc wireless các dòng iphone trở về sau samsung galaxy plus plus note … mặt phía sau thiết bị sạc có thể dùng sạc cho các loại không dây mặt phía trên dùng để sạc apple watch se … đế sạc không dây trong mang đến trải nghiệm đầy tiện ích tính năng vượt trội công nghệ chuẩn qi được thiết kế kèm theo một chức năng với tên gọi là foreign object detection sạc không dây có độ nhạy cao để nhận diện điện thoại cũng như các thiết bị cần sạc khác đồng thời sản phẩm được tích hợp các thiết bị chip thông minh giúp kiểm soát nhiệt độ bảo vệ điện áp bảo vệ quá dòng giúp hạn chế thấp nhất nguy chơ cháy nổ đối với người dùng có thói quen sạc qua đêm sẽ không còn lo lắng vấn đề chai pin điện thoại bởi vì sạc sẽ tự động tắt nguồn khi điện thoại của bạn đầy pin đây là ưu điểm lớn nhất so với các loại sạc có dây truyền thống khác sạc không dây trang bị bộ sạc nhanh và cáp loại c ft thiết bị có thể đầy pin sau đến giờ đồng hồ so với các loại sạc có dây iphone khác thì nhanh hơn khoảng công suất đầu vào của bộ sạc cao có thể sạc dùng lúc điện thoại di động ở mặt trước và mặt sau của thiết bị sạc đối với điện thoại sử dụng ốp sạc không dây có thể sạc xuyên qua lớp ốp lưng điện thoại tránh mất trời gian tháo bỏ lớp vỏ đèn led hiển thị màu xanh giúp người dùng nhận biết khi thiết bị kết nối nguồn điện và bắt đầu sạc có thể tận dụng làm đèn ngủ vào buổi tối bởi độ sáng của đèn khá lớn một vài lưu ý khi sử dụng sạc không dây s ạc không dây có nhiều ưu điểm tuy nhiên vẫn có một số vấn đề nhỏ người dùng nên lưu ý để sử dụng sản phẩm một cách có hiệu quả mặc dù có khả năng sạc xuyên ốp điện thoại người dùng nên tránh sử dụng ốp quá dày khi sạc để tránh việc điện thoại không thể kết nối với nguồn sạc khi sạc nên đặt thiết bị cần sạc vào đúng vị trí sạc tránh hiện tượng không thể kết nối điện nbsp trường hợp muốn sạc cùng lúc ba thiết bị hoặc muốn tăng tốc độ sạc cần có thiết bị adapter sạc nhanh kèm theo bộ sạc không dây là thiết bị sạc hiện đại hàng đầu hiện nay được chứng nhận an toàn sạc không dây với thiết kế sang trọng đẹp mắt không chỉ giúp cuộc sống trở nên tiện lợi nó còn thể hiện cá tính của người sở hữu mức giá hiện nay của sản phẩm là đây là mức giá thấp hơn so với mức giá trung bình các dòng sản phẩm sạc không dây hiện có trên thị trường với một mức giá hợp lý bạn đã có thể sử dụng một sản phẩm công nghệ chất lượng cao hàng đầu để thỏa mãn đam mê của bản thân đế sạc không dây nbsp ₫ trên dựa trên đánh giá sạc không dây chuẩn qi nbsp ₫ trên dựa trên đánh giá sạc không dây magsafe charger chuẩn qi cho iphone nbsp ₫ trên dựa trên đánh giá tai nghe bluetooth nbsp ₫ trên dựa trên đánh giá tai nghe bluetooth nbsp ₫ trên dựa trên đánh giá tìm đại lý phân phối – đế sạc không dây meta content đế sạc không dây sạc nhanh tương thích với tất cả các thiết bị điện thoại đang có trên thị trường hỗ trợ sạc các dòng điện thoại apple iwatch tai nghe wireless đèn ngủ tính năng tự động ngắt sau khi sạc đầy pin cùng khả năng bảo vệ quá nhiệt quá tải thông minh tiện lợi sạc điện thoại đặt nằm dọc hoặc nằm ngang giúp bạn giải trí dễ dàng xem phim đọc sách gọi video call … chứng nhận an toàn logo doanh nghiệp theo yêu cầu event meta name tìm đại lý phân phối – đế sạc không dây event status scheduled start date chiều end date chiều event location attendance mode online url a target blank href performer type performing group name phụ kiện điện thoại giá rẻ – pmcs tech offer availability in stock ticket website a href currency vnd price valid from chiều context type event organizer type organization name phụ kiện điện thoại giá rẻ url eventstatus eventattendancemode name tìm đại lý phân phối đế sạc không dây startdate enddate location type virtuallocation url image offers type offer url price pricecurrency vnd availability validfrom performer type performinggroup name phụ kiện điện thoại giá rẻ pmcs tech description đế sạc không dây sạc nhanh tương thích với tất cả các thiết bị điện thoại đang có trên thị trường hỗ trợ sạc các dòng điện thoại apple iwatch tai nghe wireless đèn ngủ tính năng tự động ngắt sau khi sạc đầy pin cùng khả năng bảo vệ quá nhiệt quá tải thông minh tiện lợi sạc điện thoại đặt nằm dọc hoặc nằm ngang giúp bạn giải trí dễ dàng xem phim đọc sách gọi video call … chứng nhận an toàn rohs fcc ce tùy chỉnh logo doanh nghiệp theo yêu cầu moq xem thêm the post appeared first on | 0 |
276,281 | 20,977,122,332 | IssuesEvent | 2022-03-28 16:09:58 | conan-io/cmake-conan | https://api.github.com/repos/conan-io/cmake-conan | closed | [Question] How to use conanfile.txt with new API ? | question documentation | I've read updated README.md:
```
conan_cmake_run() high level wrapper
This function is not the recommended way of using cmake-conan any more and will be deprecated in the near future ...
```
But only this function is support `conanfile.txt` !!
@czoido
How to use `conanfile.txt` with new API ? | 1.0 | [Question] How to use conanfile.txt with new API ? - I've read updated README.md:
```
conan_cmake_run() high level wrapper
This function is not the recommended way of using cmake-conan any more and will be deprecated in the near future ...
```
But only this function is support `conanfile.txt` !!
@czoido
How to use `conanfile.txt` with new API ? | non_defect | how to use conanfile txt with new api i ve read updated readme md conan cmake run high level wrapper this function is not the recommended way of using cmake conan any more and will be deprecated in the near future but only this function is support conanfile txt czoido how to use conanfile txt with new api | 0 |
34,818 | 7,460,667,354 | IssuesEvent | 2018-03-30 20:47:51 | kerdokullamae/test_koik_issued | https://api.github.com/repos/kerdokullamae/test_koik_issued | closed | Perioodid | C: AIS P: highest R: fixed T: defect | **Reported by tarvokarberg on 17 Mar 2017 11:54 UTC**
Kui avada Perioodid->Keskaeg->otsing (http://www.dev-ais-web.arhiiv.ee/et/description_unit/list/?filter%5BeraId%5D=121), siis tuleb veateade:
Tekkis viga
Ups, midagi läks valesti!
Error: Maximum execution time of 30 seconds exceeded
Lae leht uuesti või anna teada süsteemi haldajale. | 1.0 | Perioodid - **Reported by tarvokarberg on 17 Mar 2017 11:54 UTC**
Kui avada Perioodid->Keskaeg->otsing (http://www.dev-ais-web.arhiiv.ee/et/description_unit/list/?filter%5BeraId%5D=121), siis tuleb veateade:
Tekkis viga
Ups, midagi läks valesti!
Error: Maximum execution time of 30 seconds exceeded
Lae leht uuesti või anna teada süsteemi haldajale. | defect | perioodid reported by tarvokarberg on mar utc kui avada perioodid keskaeg otsing siis tuleb veateade tekkis viga ups midagi läks valesti error maximum execution time of seconds exceeded lae leht uuesti või anna teada süsteemi haldajale | 1 |
29,189 | 5,581,836,734 | IssuesEvent | 2017-03-28 19:49:45 | NeuralEnsemble/PyNN | https://api.github.com/repos/NeuralEnsemble/PyNN | closed | Issue with current injection via ACSource in Brian | Brian defect | There is a problem with the output of current injection via ACSource in Brian. The current profile is incorrect (as can be inferred from the voltage trace in below figure), and also the current injection fails to cease at t_stop.
The figure below illustrates this (for this [source code](https://github.com/appukuttan-shailesh/PyNN_testData/blob/master/testCase_AC.py)):
Brian Output:

NEURON Output:

| 1.0 | Issue with current injection via ACSource in Brian - There is a problem with the output of current injection via ACSource in Brian. The current profile is incorrect (as can be inferred from the voltage trace in below figure), and also the current injection fails to cease at t_stop.
The figure below illustrates this (for this [source code](https://github.com/appukuttan-shailesh/PyNN_testData/blob/master/testCase_AC.py)):
Brian Output:

NEURON Output:

| defect | issue with current injection via acsource in brian there is a problem with the output of current injection via acsource in brian the current profile is incorrect as can be inferred from the voltage trace in below figure and also the current injection fails to cease at t stop the figure below illustrates this for this brian output neuron output | 1 |
51,484 | 13,207,500,450 | IssuesEvent | 2020-08-14 23:20:43 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | opened | i3tvtpd clients loose connection and stop getting new events (Trac #515) | Incomplete Migration Migrated from Trac defect glshovel | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/515">https://code.icecube.wisc.edu/projects/icecube/ticket/515</a>, reported by blaufussand owned by troy</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2009-01-16T19:47:04",
"_ts": "1232135224000000",
"description": "I3Tv client/server connections seems to run into a problem.\nTested with offline-software/trunk Revision: 51842\n\nStarted an i3tvtpd server, using a well-used i3 file (single file, runs in a loop over it)\n\nStarted 2 i3tvc clients connecting to this server as:\n./env-shell.sh i3tvc localhost 26227 2\n./env-shell.sh i3tvc localhost 26227 3 \n\nAfter some time (~hr), both clients will stop getting new events with:\nLogging configured from file log4cplus.conf\n/disk02/home/blaufuss/icework/offline-software/trunk/src/icetray/private/icetray/I3Frame.cxx:590: FATAL: checksums don't match\n\nServer continues to run w/o issue. Stopping and restarting the clients gets them back on track.\n\n",
"reporter": "blaufuss",
"cc": "",
"resolution": "fixed",
"time": "2009-01-15T17:34:29",
"component": "glshovel",
"summary": "i3tvtpd clients loose connection and stop getting new events",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "troy",
"type": "defect"
}
```
</p>
</details>
| 1.0 | i3tvtpd clients loose connection and stop getting new events (Trac #515) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/515">https://code.icecube.wisc.edu/projects/icecube/ticket/515</a>, reported by blaufussand owned by troy</em></summary>
<p>
```json
{
"status": "closed",
"changetime": "2009-01-16T19:47:04",
"_ts": "1232135224000000",
"description": "I3Tv client/server connections seems to run into a problem.\nTested with offline-software/trunk Revision: 51842\n\nStarted an i3tvtpd server, using a well-used i3 file (single file, runs in a loop over it)\n\nStarted 2 i3tvc clients connecting to this server as:\n./env-shell.sh i3tvc localhost 26227 2\n./env-shell.sh i3tvc localhost 26227 3 \n\nAfter some time (~hr), both clients will stop getting new events with:\nLogging configured from file log4cplus.conf\n/disk02/home/blaufuss/icework/offline-software/trunk/src/icetray/private/icetray/I3Frame.cxx:590: FATAL: checksums don't match\n\nServer continues to run w/o issue. Stopping and restarting the clients gets them back on track.\n\n",
"reporter": "blaufuss",
"cc": "",
"resolution": "fixed",
"time": "2009-01-15T17:34:29",
"component": "glshovel",
"summary": "i3tvtpd clients loose connection and stop getting new events",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "troy",
"type": "defect"
}
```
</p>
</details>
| defect | clients loose connection and stop getting new events trac migrated from json status closed changetime ts description client server connections seems to run into a problem ntested with offline software trunk revision n nstarted an server using a well used file single file runs in a loop over it n nstarted clients connecting to this server as n env shell sh localhost n env shell sh localhost n nafter some time hr both clients will stop getting new events with nlogging configured from file conf n home blaufuss icework offline software trunk src icetray private icetray cxx fatal checksums don t match n nserver continues to run w o issue stopping and restarting the clients gets them back on track n n reporter blaufuss cc resolution fixed time component glshovel summary clients loose connection and stop getting new events priority normal keywords milestone owner troy type defect | 1 |
628,846 | 20,015,881,569 | IssuesEvent | 2022-02-01 12:01:56 | amosproj/amos2021ws05-fin-prod-port-quick-check | https://api.github.com/repos/amosproj/amos2021ws05-fin-prod-port-quick-check | closed | Fill the Basic Layout of the Result View with Mock Data | est. size: 3 type: feature real size: 3 priority: high frontend | ## User story
1. As a software developer
2. I want the result view to be filled with mock data
3. So that I can test the UI functionalities
## Acceptance criteria
* content of the layout is in a mock object
* the objects in the mock object are rendered dynamically
## Definition of done
* Approved by product owner
* Code has been peer reviewed and approved
* No syntax or runtime errors emerged
* Code has to be included in the release candidate | 1.0 | Fill the Basic Layout of the Result View with Mock Data - ## User story
1. As a software developer
2. I want the result view to be filled with mock data
3. So that I can test the UI functionalities
## Acceptance criteria
* content of the layout is in a mock object
* the objects in the mock object are rendered dynamically
## Definition of done
* Approved by product owner
* Code has been peer reviewed and approved
* No syntax or runtime errors emerged
* Code has to be included in the release candidate | non_defect | fill the basic layout of the result view with mock data user story as a software developer i want the result view to be filled with mock data so that i can test the ui functionalities acceptance criteria content of the layout is in a mock object the objects in the mock object are rendered dynamically definition of done approved by product owner code has been peer reviewed and approved no syntax or runtime errors emerged code has to be included in the release candidate | 0 |
711,849 | 24,477,623,456 | IssuesEvent | 2022-10-08 11:32:17 | apache/skywalking | https://api.github.com/repos/apache/skywalking | closed | [Rover] license issue | high priority chore Rover | ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no similar issues.
### Apache SkyWalking Component
OAP server (apache/skywalking)
### What happened
I happened to find the license of the source file [protocol_analyze.h](https://github.com/apache/skywalking-rover/blob/main/bpf/profiling/network/protocol_analyze.h#L19) is GPL-2.0 but [we declare it as Apache 2.0](https://github.com/apache/skywalking-rover/blob/48fb8ced2e4aaf505777c6eac2587d799ab9c2bd/LICENSE#L218), which is not allowed as per ASF’s policy.
we should fix this as soon as possible before the next release.
### What you expected to happen
No license conflict
### How to reproduce
No need to reproduce.
### Anything else
Note that the GPL files are used in pixie and pixie being Apache2.0 licensed doesn’t mean the GPL files become Apache2.0
### Are you willing to submit PR?
- [ ] 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 | [Rover] license issue - ### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no similar issues.
### Apache SkyWalking Component
OAP server (apache/skywalking)
### What happened
I happened to find the license of the source file [protocol_analyze.h](https://github.com/apache/skywalking-rover/blob/main/bpf/profiling/network/protocol_analyze.h#L19) is GPL-2.0 but [we declare it as Apache 2.0](https://github.com/apache/skywalking-rover/blob/48fb8ced2e4aaf505777c6eac2587d799ab9c2bd/LICENSE#L218), which is not allowed as per ASF’s policy.
we should fix this as soon as possible before the next release.
### What you expected to happen
No license conflict
### How to reproduce
No need to reproduce.
### Anything else
Note that the GPL files are used in pixie and pixie being Apache2.0 licensed doesn’t mean the GPL files become Apache2.0
### Are you willing to submit PR?
- [ ] 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_defect | license issue search before asking i had searched in the and found no similar issues apache skywalking component oap server apache skywalking what happened i happened to find the license of the source file is gpl but which is not allowed as per asf’s policy we should fix this as soon as possible before the next release what you expected to happen no license conflict how to reproduce no need to reproduce anything else note that the gpl files are used in pixie and pixie being licensed doesn’t mean the gpl files become are you willing to submit pr yes i am willing to submit a pr code of conduct i agree to follow this project s | 0 |
164,522 | 25,981,804,009 | IssuesEvent | 2022-12-19 19:33:38 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | opened | [Design] Add error page(s) that are missing in sketch/abstract | design ux HCE-Checkin | ## Tasks
Add error page(s) that are missing in sketch/abstract
## AC
Published to sketch/abstract masters
| 1.0 | [Design] Add error page(s) that are missing in sketch/abstract - ## Tasks
Add error page(s) that are missing in sketch/abstract
## AC
Published to sketch/abstract masters
| non_defect | add error page s that are missing in sketch abstract tasks add error page s that are missing in sketch abstract ac published to sketch abstract masters | 0 |
342,385 | 10,316,131,276 | IssuesEvent | 2019-08-30 09:16:43 | bmp-git/PPS-18-scala-mqtt | https://api.github.com/repos/bmp-git/PPS-18-scala-mqtt | closed | Project Setup | priority: high product item size: 1 | - [x] Project structure #3
- [x] Configure IDE #2
- [x] Configure gradle build #4
- [x] Configure style plugins #5
- [x] Prepare travis CI configuration #6
- [x] Gitignore #7 | 1.0 | Project Setup - - [x] Project structure #3
- [x] Configure IDE #2
- [x] Configure gradle build #4
- [x] Configure style plugins #5
- [x] Prepare travis CI configuration #6
- [x] Gitignore #7 | non_defect | project setup project structure configure ide configure gradle build configure style plugins prepare travis ci configuration gitignore | 0 |
22,327 | 3,634,163,931 | IssuesEvent | 2016-02-11 17:00:51 | idaholab/moose | https://api.github.com/repos/idaholab/moose | opened | Infinite loop with start up steps | C: MOOSE P: normal T: defect | It looks like there is a set of parameters that can cause an infinite loop with a failed solve. See the discussion: https://groups.google.com/d/msgid/moose-users/6bf04fe3-e2e0-4139-88f3-8bb15672811e%40googlegroups.com | 1.0 | Infinite loop with start up steps - It looks like there is a set of parameters that can cause an infinite loop with a failed solve. See the discussion: https://groups.google.com/d/msgid/moose-users/6bf04fe3-e2e0-4139-88f3-8bb15672811e%40googlegroups.com | defect | infinite loop with start up steps it looks like there is a set of parameters that can cause an infinite loop with a failed solve see the discussion | 1 |
82,777 | 10,278,849,652 | IssuesEvent | 2019-08-25 17:48:09 | clovers-network/clovers-dapp | https://api.github.com/repos/clovers-network/clovers-dapp | closed | add "copy moves" back to clovers page | design discuss | maybe copy private key?
might be good to start referring to the images as the public keys and the moves as the private keys | 1.0 | add "copy moves" back to clovers page - maybe copy private key?
might be good to start referring to the images as the public keys and the moves as the private keys | non_defect | add copy moves back to clovers page maybe copy private key might be good to start referring to the images as the public keys and the moves as the private keys | 0 |
68,867 | 21,932,619,194 | IssuesEvent | 2022-05-23 11:07:05 | SeleniumHQ/selenium | https://api.github.com/repos/SeleniumHQ/selenium | closed | [🐛 Bug]: | I-defect needs-triaging | ### What happened?

i have a issue about element , i have double check the element selector and xpath as well all is correct one but the result i get is stil cannot locate the element
### How can we reproduce the issue?
```shell
ChromeOptions option = new ChromeOptions();
driver.Navigate().GoToUrl("https://webtrader.justforex.com");
driver.FindElement(By.CssSelector("#login")).SendKeys("sssss");
```
### Relevant log output
```shell
OpenQA.Selenium.NoSuchElementException: 'no such element: Unable to locate element: {"method":"css selector","selector":"#login"}
(Session info: chrome=101.0.4951.67)'
```
### Operating System
windows10
### Selenium version
C#
### What are the browser(s) and version(s) where you see this issue?
Chrome
### What are the browser driver(s) and version(s) where you see this issue?
ChromeDriver 101.0.4951.67
### Are you using Selenium Grid?
_No response_ | 1.0 | [🐛 Bug]: - ### What happened?

i have a issue about element , i have double check the element selector and xpath as well all is correct one but the result i get is stil cannot locate the element
### How can we reproduce the issue?
```shell
ChromeOptions option = new ChromeOptions();
driver.Navigate().GoToUrl("https://webtrader.justforex.com");
driver.FindElement(By.CssSelector("#login")).SendKeys("sssss");
```
### Relevant log output
```shell
OpenQA.Selenium.NoSuchElementException: 'no such element: Unable to locate element: {"method":"css selector","selector":"#login"}
(Session info: chrome=101.0.4951.67)'
```
### Operating System
windows10
### Selenium version
C#
### What are the browser(s) and version(s) where you see this issue?
Chrome
### What are the browser driver(s) and version(s) where you see this issue?
ChromeDriver 101.0.4951.67
### Are you using Selenium Grid?
_No response_ | defect | what happened i have a issue about element i have double check the element selector and xpath as well all is correct one but the result i get is stil cannot locate the element how can we reproduce the issue shell chromeoptions option new chromeoptions driver navigate gotourl driver findelement by cssselector login sendkeys sssss relevant log output shell openqa selenium nosuchelementexception no such element unable to locate element method css selector selector login session info chrome operating system selenium version c what are the browser s and version s where you see this issue chrome what are the browser driver s and version s where you see this issue chromedriver are you using selenium grid no response | 1 |
12,709 | 2,714,601,927 | IssuesEvent | 2015-04-10 06:02:08 | codenameone/CodenameOne | https://api.github.com/repos/codenameone/CodenameOne | closed | LocationListener doesn't get removed on iOS | Priority-Medium Type-Defect | Original [issue 974](https://code.google.com/p/codenameone/issues/detail?id=974) created by codenameone on 2013-11-28T08:33:04.000Z:
Calling LocationManager.getLocationManager().setLocationListener(null) doesn't remove the LocationListener.
| 1.0 | LocationListener doesn't get removed on iOS - Original [issue 974](https://code.google.com/p/codenameone/issues/detail?id=974) created by codenameone on 2013-11-28T08:33:04.000Z:
Calling LocationManager.getLocationManager().setLocationListener(null) doesn't remove the LocationListener.
| defect | locationlistener doesn t get removed on ios original created by codenameone on calling locationmanager getlocationmanager setlocationlistener null doesn t remove the locationlistener | 1 |
79,260 | 28,068,656,422 | IssuesEvent | 2023-03-29 17:18:51 | vector-im/element-web | https://api.github.com/repos/vector-im/element-web | closed | Win64 version can't even do initial launch properly?! | T-Defect X-Needs-Info | ### Steps to reproduce
1. Where are you starting? What can you see?
* I used element.io/get-started to download and install the Win64 desktop app
* On first launch, I get an error: Failed to start // Your Element is misconfigured // Unexpected error resolving homeserver configuration [Go to element.io](https://element.io/)
* That's pretty discouraging to say the least
* See below for attempts made to work around. At this point, I'm stuck.
2. What do you click?
(Nothing to click other than the offer to return to the main website. That's kind of... silly?)
3. More steps…
### Outcome
#### What did you expect?
An app that launches and gives me... something
#### What happened instead?
Dead app.
#### Workarounds attempted etc
* I searched for other reports...
* Some suspect people are installing a browser-based version. NO
* Some think it might be related to browser. I closed browser. Same exact result.
* I ran wireshark to see if I could learn anything. Nothing obvious. In fact I don't see anything (obviously) related to element or matrix.
Of course, I'm a noob to this software and network.
### Operating system
Win10, current
### Application version
N/A - can't use app
### How did you install the app?
https://element.io/get-started
### Homeserver
matrix.org
### Will you send logs?
Yes | 1.0 | Win64 version can't even do initial launch properly?! - ### Steps to reproduce
1. Where are you starting? What can you see?
* I used element.io/get-started to download and install the Win64 desktop app
* On first launch, I get an error: Failed to start // Your Element is misconfigured // Unexpected error resolving homeserver configuration [Go to element.io](https://element.io/)
* That's pretty discouraging to say the least
* See below for attempts made to work around. At this point, I'm stuck.
2. What do you click?
(Nothing to click other than the offer to return to the main website. That's kind of... silly?)
3. More steps…
### Outcome
#### What did you expect?
An app that launches and gives me... something
#### What happened instead?
Dead app.
#### Workarounds attempted etc
* I searched for other reports...
* Some suspect people are installing a browser-based version. NO
* Some think it might be related to browser. I closed browser. Same exact result.
* I ran wireshark to see if I could learn anything. Nothing obvious. In fact I don't see anything (obviously) related to element or matrix.
Of course, I'm a noob to this software and network.
### Operating system
Win10, current
### Application version
N/A - can't use app
### How did you install the app?
https://element.io/get-started
### Homeserver
matrix.org
### Will you send logs?
Yes | defect | version can t even do initial launch properly steps to reproduce where are you starting what can you see i used element io get started to download and install the desktop app on first launch i get an error failed to start your element is misconfigured unexpected error resolving homeserver configuration that s pretty discouraging to say the least see below for attempts made to work around at this point i m stuck what do you click nothing to click other than the offer to return to the main website that s kind of silly more steps… outcome what did you expect an app that launches and gives me something what happened instead dead app workarounds attempted etc i searched for other reports some suspect people are installing a browser based version no some think it might be related to browser i closed browser same exact result i ran wireshark to see if i could learn anything nothing obvious in fact i don t see anything obviously related to element or matrix of course i m a noob to this software and network operating system current application version n a can t use app how did you install the app homeserver matrix org will you send logs yes | 1 |
52,193 | 13,211,405,314 | IssuesEvent | 2020-08-15 22:54:45 | icecube-trac/tix4 | https://api.github.com/repos/icecube-trac/tix4 | opened | L1 filter for 2014 and 2015 (Trac #1828) | Incomplete Migration Migrated from Trac cmake defect | <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1828">https://code.icecube.wisc.edu/projects/icecube/ticket/1828</a>, reported by saxani</summary>
<p>
```json
{
"status": "closed",
"changetime": "2016-08-18T21:39:38",
"_ts": "1471556378950850",
"description": "Running offline filter for 2014 and 2015:\n/cvmfs/icecube.opensciencegrid.org/py2-v1/RHEL_6_x86_64/metaprojects/icerec/IC2014-L2_V14-02-00/lib/icecube/filterscripts/offlineL2/level1_SimulationFiltering.py\n\nI receive the following error:\n`RuntimeError: dlopen() dynamic loading error: /data/user/saxani/environments/buildfwd/lib/libpfauxiliary.so: cannot open shared object file: No such file or directory`\n",
"reporter": "saxani",
"cc": "",
"resolution": "fixed",
"time": "2016-08-18T21:29:33",
"component": "cmake",
"summary": "L1 filter for 2014 and 2015",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "",
"type": "defect"
}
```
</p>
</details>
| 1.0 | L1 filter for 2014 and 2015 (Trac #1828) - <details>
<summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1828">https://code.icecube.wisc.edu/projects/icecube/ticket/1828</a>, reported by saxani</summary>
<p>
```json
{
"status": "closed",
"changetime": "2016-08-18T21:39:38",
"_ts": "1471556378950850",
"description": "Running offline filter for 2014 and 2015:\n/cvmfs/icecube.opensciencegrid.org/py2-v1/RHEL_6_x86_64/metaprojects/icerec/IC2014-L2_V14-02-00/lib/icecube/filterscripts/offlineL2/level1_SimulationFiltering.py\n\nI receive the following error:\n`RuntimeError: dlopen() dynamic loading error: /data/user/saxani/environments/buildfwd/lib/libpfauxiliary.so: cannot open shared object file: No such file or directory`\n",
"reporter": "saxani",
"cc": "",
"resolution": "fixed",
"time": "2016-08-18T21:29:33",
"component": "cmake",
"summary": "L1 filter for 2014 and 2015",
"priority": "normal",
"keywords": "",
"milestone": "",
"owner": "",
"type": "defect"
}
```
</p>
</details>
| defect | filter for and trac migrated from json status closed changetime ts description running offline filter for and n cvmfs icecube opensciencegrid org rhel metaprojects icerec lib icecube filterscripts simulationfiltering py n ni receive the following error n runtimeerror dlopen dynamic loading error data user saxani environments buildfwd lib libpfauxiliary so cannot open shared object file no such file or directory n reporter saxani cc resolution fixed time component cmake summary filter for and priority normal keywords milestone owner type defect | 1 |
1,381 | 2,603,843,337 | IssuesEvent | 2015-02-24 18:15:15 | chrsmith/nishazi6 | https://api.github.com/repos/chrsmith/nishazi6 | opened | 沈阳尿道口长乳头状物 | auto-migrated Priority-Medium Type-Defect | ```
沈阳尿道口长乳头状物〓沈陽軍區政治部醫院性病〓TEL:024-3
1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。�
��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌�
��歷史悠久、設備精良、技術權威、專家云集,是預防、保健
、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲��
�部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�
��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空
軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體��
�等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:32 | 1.0 | 沈阳尿道口长乳头状物 - ```
沈阳尿道口长乳头状物〓沈陽軍區政治部醫院性病〓TEL:024-3
1023308〓成立于1946年,68年專注于性傳播疾病的研究和治療。�
��于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝煌�
��歷史悠久、設備精良、技術權威、專家云集,是預防、保健
、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲��
�部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、�
��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空
軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體��
�等功。
```
-----
Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:32 | defect | 沈阳尿道口长乳头状物 沈阳尿道口长乳头状物〓沈陽軍區政治部醫院性病〓tel: 〓 , 。� �� 。是一所與新中國同建立共輝煌� ��歷史悠久、設備精良、技術權威、專家云集,是預防、保健 、醫療、科研康復為一體的綜合性醫院。是國家首批公立甲�� �部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學、� ��南大學等知名高等院校的教學醫院。曾被中國人民解放軍空 軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集體�� �等功。 original issue reported on code google com by gmail com on jun at | 1 |
452,300 | 13,048,170,669 | IssuesEvent | 2020-07-29 12:04:37 | DevAdventCalendar/DevAdventCalendar | https://api.github.com/repos/DevAdventCalendar/DevAdventCalendar | closed | Add possibility to set UserName from Registration form | enhancement high priority | During Registration we should be able to set unique UserName - without possibility to change
Update RegisterViewModel | 1.0 | Add possibility to set UserName from Registration form - During Registration we should be able to set unique UserName - without possibility to change
Update RegisterViewModel | non_defect | add possibility to set username from registration form during registration we should be able to set unique username without possibility to change update registerviewmodel | 0 |
39,974 | 9,778,588,443 | IssuesEvent | 2019-06-07 12:29:06 | jOOQ/jOOQ | https://api.github.com/repos/jOOQ/jOOQ | closed | DSL.timestampAdd() produces wrong cast for teradata | C: DB: Teradata C: Functionality E: Enterprise Edition P: Medium R: Fixed T: Defect | When running the following query on TERADATA:
```java
ctx.select(DSL.timestampAdd(currentTimestamp(), 480, DatePart.MINUTE)).fetch()
```
The generated SQL is:
```sql
select (current_timestamp + cast('0 00:' || lpad(cast(? as varchar(2)), 2, '0') || ':00' as interval day to second)) from (select 1 as x) as dummy
```
Notice the cast to `varchar(2)`, which is not accurate and produces a wrong result:
```
"[Error 3798] [SQLState 42000] A column or character expression is larger than the max size."
```
A better solution would be to use `cast(? as interval minute (4))`, since we have a specific `DatePart`, and not an arbitrary interval.
Other date time arithmetic may also produce wrong results / problems. We'll create new issues as we discover them. | 1.0 | DSL.timestampAdd() produces wrong cast for teradata - When running the following query on TERADATA:
```java
ctx.select(DSL.timestampAdd(currentTimestamp(), 480, DatePart.MINUTE)).fetch()
```
The generated SQL is:
```sql
select (current_timestamp + cast('0 00:' || lpad(cast(? as varchar(2)), 2, '0') || ':00' as interval day to second)) from (select 1 as x) as dummy
```
Notice the cast to `varchar(2)`, which is not accurate and produces a wrong result:
```
"[Error 3798] [SQLState 42000] A column or character expression is larger than the max size."
```
A better solution would be to use `cast(? as interval minute (4))`, since we have a specific `DatePart`, and not an arbitrary interval.
Other date time arithmetic may also produce wrong results / problems. We'll create new issues as we discover them. | defect | dsl timestampadd produces wrong cast for teradata when running the following query on teradata java ctx select dsl timestampadd currenttimestamp datepart minute fetch the generated sql is sql select current timestamp cast lpad cast as varchar as interval day to second from select as x as dummy notice the cast to varchar which is not accurate and produces a wrong result a column or character expression is larger than the max size a better solution would be to use cast as interval minute since we have a specific datepart and not an arbitrary interval other date time arithmetic may also produce wrong results problems we ll create new issues as we discover them | 1 |
26,552 | 6,778,045,644 | IssuesEvent | 2017-10-28 04:48:46 | cfpb/cfgov-refresh | https://api.github.com/repos/cfpb/cfgov-refresh | closed | Some JS unit tests missing -spec suffix. | bite-size good first issue help wanted priority: low refactoring - code quality | ## Current behavior
- All JS unit tests have the `-spec` suffix in the file name so they are easier to differentiate from the source file when using cmd+t in an editor to look them up. However, the tests in https://github.com/cfpb/cfgov-refresh/tree/master/test/unit_tests/apps have the same file names as the source files.
## Expected behavior
- JS unit tests should all either have a `-spec` suffix or not.
| 1.0 | Some JS unit tests missing -spec suffix. - ## Current behavior
- All JS unit tests have the `-spec` suffix in the file name so they are easier to differentiate from the source file when using cmd+t in an editor to look them up. However, the tests in https://github.com/cfpb/cfgov-refresh/tree/master/test/unit_tests/apps have the same file names as the source files.
## Expected behavior
- JS unit tests should all either have a `-spec` suffix or not.
| non_defect | some js unit tests missing spec suffix current behavior all js unit tests have the spec suffix in the file name so they are easier to differentiate from the source file when using cmd t in an editor to look them up however the tests in have the same file names as the source files expected behavior js unit tests should all either have a spec suffix or not | 0 |
91,261 | 15,856,385,462 | IssuesEvent | 2021-04-08 02:13:13 | n-devs/Blah-Blah-Blah | https://api.github.com/repos/n-devs/Blah-Blah-Blah | opened | CVE-2018-1107 (Medium) detected in is-my-json-valid-2.16.0.tgz | security vulnerability | ## CVE-2018-1107 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>is-my-json-valid-2.16.0.tgz</b></p></summary>
<p>A JSONSchema validator that uses code generation to be extremely fast</p>
<p>Library home page: <a href="https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz">https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz</a></p>
<p>Path to dependency file: /Blah-Blah-Blah/package.json</p>
<p>Path to vulnerable library: Blah-Blah-Blah/node_modules/is-my-json-valid/package.json</p>
<p>
Dependency Hierarchy:
- eslint-3.19.0.tgz (Root Library)
- :x: **is-my-json-valid-2.16.0.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
It was discovered that the is-my-json-valid JavaScript library used an inefficient regular expression to validate JSON fields defined to have email format. A specially crafted JSON file could cause it to consume an excessive amount of CPU time when validated.
<p>Publish Date: 2021-03-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-1107>CVE-2018-1107</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://bugzilla.redhat.com/show_bug.cgi?id=1546357">https://bugzilla.redhat.com/show_bug.cgi?id=1546357</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 1.4.2,2.17.2</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-2018-1107 (Medium) detected in is-my-json-valid-2.16.0.tgz - ## CVE-2018-1107 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>is-my-json-valid-2.16.0.tgz</b></p></summary>
<p>A JSONSchema validator that uses code generation to be extremely fast</p>
<p>Library home page: <a href="https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz">https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz</a></p>
<p>Path to dependency file: /Blah-Blah-Blah/package.json</p>
<p>Path to vulnerable library: Blah-Blah-Blah/node_modules/is-my-json-valid/package.json</p>
<p>
Dependency Hierarchy:
- eslint-3.19.0.tgz (Root Library)
- :x: **is-my-json-valid-2.16.0.tgz** (Vulnerable Library)
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
It was discovered that the is-my-json-valid JavaScript library used an inefficient regular expression to validate JSON fields defined to have email format. A specially crafted JSON file could cause it to consume an excessive amount of CPU time when validated.
<p>Publish Date: 2021-03-30
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-1107>CVE-2018-1107</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://bugzilla.redhat.com/show_bug.cgi?id=1546357">https://bugzilla.redhat.com/show_bug.cgi?id=1546357</a></p>
<p>Release Date: 2020-07-21</p>
<p>Fix Resolution: 1.4.2,2.17.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_defect | cve medium detected in is my json valid tgz cve medium severity vulnerability vulnerable library is my json valid tgz a jsonschema validator that uses code generation to be extremely fast library home page a href path to dependency file blah blah blah package json path to vulnerable library blah blah blah node modules is my json valid package json dependency hierarchy eslint tgz root library x is my json valid tgz vulnerable library vulnerability details it was discovered that the is my json valid javascript library used an inefficient regular expression to validate json fields defined to have email format a specially crafted json file could cause it to consume an excessive amount of cpu time when validated 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 |
5,257 | 2,610,184,254 | IssuesEvent | 2015-02-26 18:58:34 | chrsmith/quchuseban | https://api.github.com/repos/chrsmith/quchuseban | opened | 讲解色斑怎么样治疗 | auto-migrated Priority-Medium Type-Defect | ```
《摘要》
随缘,是一种胸怀,是一种成熟,是对自我内心的一种自信��
�把握。读懂随缘的人,总能在风云变幻、艰难坎坷的生活中�
��收放自如、游刃有余;总能在逆境中,找寻到前行的方向,
保持坦然愉快的心情。随缘,是对现实正确、清醒的认识,��
�对人生彻悟之后的精神自由,是“聚散离合本是缘”的达观�
��“得即高歌失即休”的超然,更是“一蓑烟雨任平生”的从
容。拥有一份随缘之心,你就会发现,天空中无论是阴云密��
�,还是阳光灿烂;生活的道路上无论是坎坷还是畅达,心中�
��是会拥有一份平静和恬淡。随缘,也让我认识了黛芙薇尔,
最后去掉脸上的斑。色斑怎么样治疗,
《客户案例》
因为我和老公都很喜欢宝宝,所以我们才结婚一年就生��
�孩子,爸妈都很高兴,我们也都一直沉浸在这种喜悦里,可�
��镜子的时候我才突然发现自己的脸上长了许多的斑,一打听
才知道是妊娠斑,心里就很纠结,我才25岁啊。听她们说一旦
长了斑是很难去掉的,而且更不能乱用祛斑的东西,可我每��
�忍不住照镜子看着自己脸上越来越多越来越严重的斑,心里�
��不好受,一开始还只是鼻子两边有一点,慢慢的,脸颊额头
都开始有了,我怎么也没有想到生个孩子居然会长这么多的��
�,感觉自己很矛盾,一方面担心宝宝,一方面又担心自己的�
��,实在没法了,我都觉得自己要被自己这种心理给折磨死了
,老公每次都欲言又止的,我知道他想说什么,可我就是忍��
�住,要不是那段时间,一个姐妹介绍了「黛芙薇尔精华液」�
��我,估计我这家庭战争应该要爆发了,幸好是纯精华的,也
没什么副作用,还是国际品牌,最重要的是不会对宝宝有伤��
�,我了两个周期的时候斑已经淡的差不多了,后来又买了一�
��周期巩固,很干净呢,三个多月了也没有再长,呵呵,现在
我就天天在家照顾宝宝,很平静,很幸福,很安心,太谢谢��
�黛芙薇尔精华液」了,以后它就是我的护肤品了
阅读了色斑怎么样治疗,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
色斑怎么样治疗,同时为您分享祛斑小方法
生活中尽量“隔热”,夏日外出打太阳伞、戴遮阳帽,做完��
�后清洗面部和手臂,尤其注意清洗被热油溅到的部位,烫油�
��造成永久性的黄褐斑,对中老年人尤为重要,所以应立即用
凉水冲洗干净。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 3:17 | 1.0 | 讲解色斑怎么样治疗 - ```
《摘要》
随缘,是一种胸怀,是一种成熟,是对自我内心的一种自信��
�把握。读懂随缘的人,总能在风云变幻、艰难坎坷的生活中�
��收放自如、游刃有余;总能在逆境中,找寻到前行的方向,
保持坦然愉快的心情。随缘,是对现实正确、清醒的认识,��
�对人生彻悟之后的精神自由,是“聚散离合本是缘”的达观�
��“得即高歌失即休”的超然,更是“一蓑烟雨任平生”的从
容。拥有一份随缘之心,你就会发现,天空中无论是阴云密��
�,还是阳光灿烂;生活的道路上无论是坎坷还是畅达,心中�
��是会拥有一份平静和恬淡。随缘,也让我认识了黛芙薇尔,
最后去掉脸上的斑。色斑怎么样治疗,
《客户案例》
因为我和老公都很喜欢宝宝,所以我们才结婚一年就生��
�孩子,爸妈都很高兴,我们也都一直沉浸在这种喜悦里,可�
��镜子的时候我才突然发现自己的脸上长了许多的斑,一打听
才知道是妊娠斑,心里就很纠结,我才25岁啊。听她们说一旦
长了斑是很难去掉的,而且更不能乱用祛斑的东西,可我每��
�忍不住照镜子看着自己脸上越来越多越来越严重的斑,心里�
��不好受,一开始还只是鼻子两边有一点,慢慢的,脸颊额头
都开始有了,我怎么也没有想到生个孩子居然会长这么多的��
�,感觉自己很矛盾,一方面担心宝宝,一方面又担心自己的�
��,实在没法了,我都觉得自己要被自己这种心理给折磨死了
,老公每次都欲言又止的,我知道他想说什么,可我就是忍��
�住,要不是那段时间,一个姐妹介绍了「黛芙薇尔精华液」�
��我,估计我这家庭战争应该要爆发了,幸好是纯精华的,也
没什么副作用,还是国际品牌,最重要的是不会对宝宝有伤��
�,我了两个周期的时候斑已经淡的差不多了,后来又买了一�
��周期巩固,很干净呢,三个多月了也没有再长,呵呵,现在
我就天天在家照顾宝宝,很平静,很幸福,很安心,太谢谢��
�黛芙薇尔精华液」了,以后它就是我的护肤品了
阅读了色斑怎么样治疗,再看脸上容易长斑的原因:
《色斑形成原因》
内部因素
一、压力
当人受到压力时,就会分泌肾上腺素,为对付压力而做��
�备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏�
��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃
。
二、荷尔蒙分泌失调
避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞��
�分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在�
��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕
中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出
现斑,这时候出现的斑点在产后大部分会消失。可是,新陈��
�谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等�
��因,都会使斑加深。有时新长出的斑,产后也不会消失,所
以需要更加注意。
三、新陈代谢缓慢
肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑��
�因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态�
��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是
内分泌失调导致过敏体质而形成的。另外,身体状态不正常��
�时候,紫外线的照射也会加速斑的形成。
四、错误的使用化妆品
使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在��
�疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵�
��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的
问题。
外部因素
一、紫外线
照射紫外线的时候,人体为了保护皮肤,会在基底层产��
�很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更�
��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化,
还会引起黑斑、雀斑等色素沉着的皮肤疾患。
二、不良的清洁习惯
因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。��
�皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦�
��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的
问题。
三、遗传基因
父母中有长斑的,则本人长斑的概率就很高,这种情况��
�一定程度上就可判定是遗传基因的作用。所以家里特别是长�
��有长斑的人,要注意避免引发长斑的重要因素之一——紫外
线照射,这是预防斑必须注意的。
《有疑问帮你解决》
1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐��
�去掉吗?
答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触��
�的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必�
��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑
,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时��
�,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的�
��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显
而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新��
�客都是通过老顾客介绍而来,口碑由此而来!
2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?
答:黛芙薇尔精华液应用了精纯复合配方和领先的分类��
�斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻�
��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有
效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾��
�地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技��
�,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽�
��迹,令每一位爱美的女性都能享受到科技创新所带来的自然
之美。
专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数��
�百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!
3,去除黄褐斑之后,会反弹吗?
答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔��
�白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家�
��据斑的形成原因精心研制而成用事实说话,让消费者打分。
树立权威品牌!我们的很多新客户都是老客户介绍而来,请问�
��如果效果不好,会有客户转介绍吗?
4,你们的价格有点贵,能不能便宜一点?
答:如果您使用西药最少需要2000元,煎服的药最少需要3
000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去�
��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的��
�是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的�
��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉��
�,不但斑没去掉,还把自己的皮肤弄的越来越糟吗
5,我适合用黛芙薇尔精华液吗?
答:黛芙薇尔适用人群:
1、生理紊乱引起的黄褐斑人群
2、生育引起的妊娠斑人群
3、年纪增长引起的老年斑人群
4、化妆品色素沉积、辐射斑人群
5、长期日照引起的日晒斑人群
6、肌肤暗淡急需美白的人群
《祛斑小方法》
色斑怎么样治疗,同时为您分享祛斑小方法
生活中尽量“隔热”,夏日外出打太阳伞、戴遮阳帽,做完��
�后清洗面部和手臂,尤其注意清洗被热油溅到的部位,烫油�
��造成永久性的黄褐斑,对中老年人尤为重要,所以应立即用
凉水冲洗干净。
```
-----
Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 3:17 | defect | 讲解色斑怎么样治疗 《摘要》 随缘,是一种胸怀,是一种成熟,是对自我内心的一种自信�� �把握。读懂随缘的人,总能在风云变幻、艰难坎坷的生活中� ��收放自如、游刃有余;总能在逆境中,找寻到前行的方向, 保持坦然愉快的心情。随缘,是对现实正确、清醒的认识,�� �对人生彻悟之后的精神自由,是“聚散离合本是缘”的达观� ��“得即高歌失即休”的超然,更是“一蓑烟雨任平生”的从 容。拥有一份随缘之心,你就会发现,天空中无论是阴云密�� �,还是阳光灿烂;生活的道路上无论是坎坷还是畅达,心中� ��是会拥有一份平静和恬淡。随缘,也让我认识了黛芙薇尔, 最后去掉脸上的斑。色斑怎么样治疗, 《客户案例》 因为我和老公都很喜欢宝宝,所以我们才结婚一年就生�� �孩子,爸妈都很高兴,我们也都一直沉浸在这种喜悦里,可� ��镜子的时候我才突然发现自己的脸上长了许多的斑,一打听 才知道是妊娠斑,心里就很纠结, 。听她们说一旦 长了斑是很难去掉的,而且更不能乱用祛斑的东西,可我每�� �忍不住照镜子看着自己脸上越来越多越来越严重的斑,心里� ��不好受,一开始还只是鼻子两边有一点,慢慢的,脸颊额头 都开始有了,我怎么也没有想到生个孩子居然会长这么多的�� �,感觉自己很矛盾,一方面担心宝宝,一方面又担心自己的� ��,实在没法了,我都觉得自己要被自己这种心理给折磨死了 ,老公每次都欲言又止的,我知道他想说什么,可我就是忍�� �住,要不是那段时间,一个姐妹介绍了「黛芙薇尔精华液」� ��我,估计我这家庭战争应该要爆发了,幸好是纯精华的,也 没什么副作用,还是国际品牌,最重要的是不会对宝宝有伤�� �,我了两个周期的时候斑已经淡的差不多了,后来又买了一� ��周期巩固,很干净呢,三个多月了也没有再长,呵呵,现在 我就天天在家照顾宝宝,很平静,很幸福,很安心,太谢谢�� �黛芙薇尔精华液」了,以后它就是我的护肤品了 阅读了色斑怎么样治疗,再看脸上容易长斑的原因: 《色斑形成原因》 内部因素 一、压力 当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。 二、荷尔蒙分泌失调 避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。 三、新陈代谢缓慢 肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。 四、错误的使用化妆品 使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。 外部因素 一、紫外线 照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。 二、不良的清洁习惯 因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。 三、遗传基因 父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》 黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗 答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来 ,服用黛芙薇尔美白,会伤身体吗 有副作用吗 答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖 ,去除黄褐斑之后,会反弹吗 答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗 ,你们的价格有点贵,能不能便宜一点 答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗 ,我适合用黛芙薇尔精华液吗 答:黛芙薇尔适用人群: 、生理紊乱引起的黄褐斑人群 、生育引起的妊娠斑人群 、年纪增长引起的老年斑人群 、化妆品色素沉积、辐射斑人群 、长期日照引起的日晒斑人群 、肌肤暗淡急需美白的人群 《祛斑小方法》 色斑怎么样治疗,同时为您分享祛斑小方法 生活中尽量“隔热”,夏日外出打太阳伞、戴遮阳帽,做完�� �后清洗面部和手臂,尤其注意清洗被热油溅到的部位,烫油� ��造成永久性的黄褐斑,对中老年人尤为重要,所以应立即用 凉水冲洗干净。 original issue reported on code google com by additive gmail com on jul at | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.