├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── function ├── Makefile ├── go.mod ├── go.sum ├── inspect.go └── vendor │ ├── github.com │ ├── AdaLogics │ │ └── go-fuzz-headers │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── consumer.go │ │ │ ├── funcs.go │ │ │ └── sql.go │ ├── aws │ │ ├── aws-lambda-go │ │ │ ├── LICENSE │ │ │ ├── LICENSE-LAMBDACODE │ │ │ ├── LICENSE-SUMMARY │ │ │ ├── events │ │ │ │ ├── README.md │ │ │ │ ├── README_ALBTargetGroupEvents.md │ │ │ │ ├── README_ApiGatewayCustomAuthorizer.md │ │ │ │ ├── README_ApiGatewayEvent.md │ │ │ │ ├── README_AutoScaling.md │ │ │ │ ├── README_Chime_Bots.md │ │ │ │ ├── README_ClientVPN.md │ │ │ │ ├── README_CloudWatch_Logs.md │ │ │ │ ├── README_CodeBuild.md │ │ │ │ ├── README_CodeCommit.md │ │ │ │ ├── README_CodeDeploy.md │ │ │ │ ├── README_Cognito.md │ │ │ │ ├── README_Cognito_UserPools_CustomAuthLambdaTriggers.md │ │ │ │ ├── README_Cognito_UserPools_PostConfirmation.md │ │ │ │ ├── README_Cognito_UserPools_PreAuthentication.md │ │ │ │ ├── README_Cognito_UserPools_PreSignup.md │ │ │ │ ├── README_Cognito_UserPools_PreTokenGen.md │ │ │ │ ├── README_Config.md │ │ │ │ ├── README_Connect.md │ │ │ │ ├── README_DynamoDB.md │ │ │ │ ├── README_ECS_ContainerInstance.md │ │ │ │ ├── README_EventBridge_Events.md │ │ │ │ ├── README_Kinesis.md │ │ │ │ ├── README_KinesisDataAnalytics.md │ │ │ │ ├── README_KinesisFirehose.md │ │ │ │ ├── README_Lambda.md │ │ │ │ ├── README_Lex.md │ │ │ │ ├── README_S3.md │ │ │ │ ├── README_S3_Batch_Job.md │ │ │ │ ├── README_S3_Object_Lambda.md │ │ │ │ ├── README_SES.md │ │ │ │ ├── README_SNS.md │ │ │ │ ├── README_SQS.md │ │ │ │ ├── README_SecretsManager_SecretRotationEvent.md │ │ │ │ ├── activemq.go │ │ │ │ ├── alb.go │ │ │ │ ├── apigw.go │ │ │ │ ├── appsync.go │ │ │ │ ├── attributevalue.go │ │ │ │ ├── autoscaling.go │ │ │ │ ├── chime_bot.go │ │ │ │ ├── clientvpn.go │ │ │ │ ├── cloudwatch_events.go │ │ │ │ ├── cloudwatch_logs.go │ │ │ │ ├── code_commit.go │ │ │ │ ├── codebuild.go │ │ │ │ ├── codedeploy.go │ │ │ │ ├── codepipeline.go │ │ │ │ ├── codepipeline_cloudwatch.go │ │ │ │ ├── codepipeline_job.go │ │ │ │ ├── cognito.go │ │ │ │ ├── config.go │ │ │ │ ├── connect.go │ │ │ │ ├── duration.go │ │ │ │ ├── dynamodb.go │ │ │ │ ├── ecr_image_action.go │ │ │ │ ├── ecr_scan.go │ │ │ │ ├── ecs_container_instance.go │ │ │ │ ├── epoch_time.go │ │ │ │ ├── firehose.go │ │ │ │ ├── iam.go │ │ │ │ ├── iot.go │ │ │ │ ├── iot_1_click.go │ │ │ │ ├── iot_button.go │ │ │ │ ├── iot_deprecated.go │ │ │ │ ├── iot_preprovision_hook.go │ │ │ │ ├── kafka.go │ │ │ │ ├── kinesis.go │ │ │ │ ├── kinesis_analytics.go │ │ │ │ ├── lambda_function_urls.go │ │ │ │ ├── lex.go │ │ │ │ ├── rabbitmq.go │ │ │ │ ├── s3.go │ │ │ │ ├── s3_batch_job.go │ │ │ │ ├── s3_object_lambda.go │ │ │ │ ├── secretsmanager.go │ │ │ │ ├── ses.go │ │ │ │ ├── sns.go │ │ │ │ ├── sqs.go │ │ │ │ ├── streams.go │ │ │ │ └── time_window.go │ │ │ ├── lambda │ │ │ │ ├── README.md │ │ │ │ ├── entry.go │ │ │ │ ├── entry_generic.go │ │ │ │ ├── errors.go │ │ │ │ ├── extensions_api_client.go │ │ │ │ ├── handler.go │ │ │ │ ├── handlertrace │ │ │ │ │ └── trace.go │ │ │ │ ├── invoke_loop.go │ │ │ │ ├── messages │ │ │ │ │ ├── README.md │ │ │ │ │ └── messages.go │ │ │ │ ├── panic.go │ │ │ │ ├── rpc_function.go │ │ │ │ ├── runtime_api_client.go │ │ │ │ └── sigterm.go │ │ │ └── lambdacontext │ │ │ │ ├── README.md │ │ │ │ └── context.go │ │ └── aws-sdk-go │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws │ │ │ ├── auth │ │ │ │ └── bearer │ │ │ │ │ └── token.go │ │ │ ├── awserr │ │ │ │ ├── error.go │ │ │ │ └── types.go │ │ │ ├── awsutil │ │ │ │ ├── copy.go │ │ │ │ ├── equal.go │ │ │ │ ├── path_value.go │ │ │ │ ├── prettify.go │ │ │ │ └── string_value.go │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── default_retryer.go │ │ │ │ ├── logger.go │ │ │ │ ├── metadata │ │ │ │ │ └── client_info.go │ │ │ │ └── no_op_retryer.go │ │ │ ├── config.go │ │ │ ├── context_1_5.go │ │ │ ├── context_1_9.go │ │ │ ├── context_background_1_5.go │ │ │ ├── context_background_1_7.go │ │ │ ├── context_sleep.go │ │ │ ├── convert_types.go │ │ │ ├── corehandlers │ │ │ │ ├── awsinternal.go │ │ │ │ ├── handlers.go │ │ │ │ ├── param_validator.go │ │ │ │ └── user_agent.go │ │ │ ├── credentials │ │ │ │ ├── chain_provider.go │ │ │ │ ├── context_background_go1.5.go │ │ │ │ ├── context_background_go1.7.go │ │ │ │ ├── context_go1.5.go │ │ │ │ ├── context_go1.9.go │ │ │ │ ├── credentials.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── env_provider.go │ │ │ │ ├── example.ini │ │ │ │ ├── processcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ ├── ssocreds │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── os.go │ │ │ │ │ ├── os_windows.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── sso_cached_token.go │ │ │ │ │ └── token_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ └── web_identity_provider.go │ │ │ ├── crr │ │ │ │ ├── cache.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── sync_map.go │ │ │ │ └── sync_map_1_8.go │ │ │ ├── csm │ │ │ │ ├── doc.go │ │ │ │ ├── enable.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_chan.go │ │ │ │ ├── metric_exception.go │ │ │ │ └── reporter.go │ │ │ ├── defaults │ │ │ │ ├── defaults.go │ │ │ │ └── shared_config.go │ │ │ ├── doc.go │ │ │ ├── ec2metadata │ │ │ │ ├── api.go │ │ │ │ ├── service.go │ │ │ │ └── token_provider.go │ │ │ ├── endpoints │ │ │ │ ├── decode.go │ │ │ │ ├── defaults.go │ │ │ │ ├── dep_service_ids.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── legacy_regions.go │ │ │ │ ├── v3model.go │ │ │ │ └── v3model_codegen.go │ │ │ ├── errors.go │ │ │ ├── jsonvalue.go │ │ │ ├── logger.go │ │ │ ├── request │ │ │ │ ├── connection_reset_error.go │ │ │ │ ├── handlers.go │ │ │ │ ├── http_request.go │ │ │ │ ├── offset_reader.go │ │ │ │ ├── request.go │ │ │ │ ├── request_1_7.go │ │ │ │ ├── request_1_8.go │ │ │ │ ├── request_context.go │ │ │ │ ├── request_context_1_6.go │ │ │ │ ├── request_pagination.go │ │ │ │ ├── retryer.go │ │ │ │ ├── timeout_read_closer.go │ │ │ │ ├── validation.go │ │ │ │ └── waiter.go │ │ │ ├── session │ │ │ │ ├── credentials.go │ │ │ │ ├── custom_transport.go │ │ │ │ ├── custom_transport_go1.12.go │ │ │ │ ├── custom_transport_go1.5.go │ │ │ │ ├── custom_transport_go1.6.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── session.go │ │ │ │ └── shared_config.go │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── request_context_go1.5.go │ │ │ │ │ ├── request_context_go1.7.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ ├── url_1_7.go │ │ │ └── version.go │ │ │ ├── internal │ │ │ ├── context │ │ │ │ └── background_go1.5.go │ │ │ ├── ini │ │ │ │ ├── ast.go │ │ │ │ ├── comma_token.go │ │ │ │ ├── comment_token.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_token.go │ │ │ │ ├── expression.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── ini.go │ │ │ │ ├── ini_lexer.go │ │ │ │ ├── ini_parser.go │ │ │ │ ├── literal_tokens.go │ │ │ │ ├── newline_token.go │ │ │ │ ├── number_helper.go │ │ │ │ ├── op_tokens.go │ │ │ │ ├── parse_error.go │ │ │ │ ├── parse_stack.go │ │ │ │ ├── sep_tokens.go │ │ │ │ ├── skipper.go │ │ │ │ ├── statement.go │ │ │ │ ├── value_util.go │ │ │ │ ├── visitor.go │ │ │ │ ├── walker.go │ │ │ │ └── ws_token.go │ │ │ ├── sdkio │ │ │ │ ├── byte.go │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ ├── sdkmath │ │ │ │ ├── floor.go │ │ │ │ └── floor_go1.9.go │ │ │ ├── sdkrand │ │ │ │ ├── locked_source.go │ │ │ │ ├── read.go │ │ │ │ └── read_1_5.go │ │ │ ├── sdkuri │ │ │ │ └── path.go │ │ │ ├── shareddefaults │ │ │ │ ├── ecs_container.go │ │ │ │ ├── shared_config.go │ │ │ │ ├── shared_config_resolve_home.go │ │ │ │ └── shared_config_resolve_home_go1.12.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ ├── LICENSE │ │ │ │ └── singleflight.go │ │ │ ├── private │ │ │ └── protocol │ │ │ │ ├── host.go │ │ │ │ ├── host_prefix.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json │ │ │ │ └── jsonutil │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonrpc │ │ │ │ ├── jsonrpc.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── protocol.go │ │ │ │ ├── query │ │ │ │ ├── build.go │ │ │ │ ├── queryutil │ │ │ │ │ └── queryutil.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest │ │ │ │ ├── build.go │ │ │ │ ├── payload.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── restjson │ │ │ │ ├── restjson.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── unmarshal.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── xml │ │ │ │ └── xmlutil │ │ │ │ ├── build.go │ │ │ │ ├── sort.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ │ └── service │ │ │ ├── dynamodb │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── doc_custom.go │ │ │ ├── dynamodbattribute │ │ │ │ ├── converter.go │ │ │ │ ├── decode.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode.go │ │ │ │ ├── field.go │ │ │ │ ├── fields_go1.9.go │ │ │ │ ├── fields_go_old.go │ │ │ │ └── tag.go │ │ │ ├── dynamodbiface │ │ │ │ └── interface.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── waiters.go │ │ │ ├── sso │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── ssoiface │ │ │ │ └── interface.go │ │ │ ├── ssooidc │ │ │ ├── api.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ └── service.go │ │ │ └── sts │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── stsiface │ │ │ └── interface.go │ ├── containerd │ │ ├── containerd │ │ │ └── v2 │ │ │ │ ├── LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── core │ │ │ │ ├── content │ │ │ │ │ ├── adaptor.go │ │ │ │ │ ├── content.go │ │ │ │ │ └── helpers.go │ │ │ │ ├── images │ │ │ │ │ ├── annotations.go │ │ │ │ │ ├── diffid.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ ├── image.go │ │ │ │ │ ├── importexport.go │ │ │ │ │ ├── labels.go │ │ │ │ │ └── mediatypes.go │ │ │ │ └── remotes │ │ │ │ │ ├── docker │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── fetch.go │ │ │ │ │ │ └── parse.go │ │ │ │ │ ├── authorizer.go │ │ │ │ │ ├── converter.go │ │ │ │ │ ├── converter_fuzz.go │ │ │ │ │ ├── errcode.go │ │ │ │ │ ├── errdesc.go │ │ │ │ │ ├── fetcher.go │ │ │ │ │ ├── fetcher_fuzz.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── httpreadseeker.go │ │ │ │ │ ├── pusher.go │ │ │ │ │ ├── registry.go │ │ │ │ │ ├── resolver.go │ │ │ │ │ ├── resolver_unix.go │ │ │ │ │ ├── resolver_windows.go │ │ │ │ │ ├── schema1 │ │ │ │ │ │ └── converter.go │ │ │ │ │ ├── scope.go │ │ │ │ │ └── status.go │ │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ │ ├── handlers.go │ │ │ │ │ └── resolver.go │ │ │ │ ├── internal │ │ │ │ ├── fsverity │ │ │ │ │ ├── fsverity_linux.go │ │ │ │ │ └── fsverity_other.go │ │ │ │ └── randutil │ │ │ │ │ └── randutil.go │ │ │ │ ├── pkg │ │ │ │ ├── archive │ │ │ │ │ └── compression │ │ │ │ │ │ ├── compression.go │ │ │ │ │ │ └── compression_fuzzer.go │ │ │ │ ├── deprecation │ │ │ │ │ └── deprecation.go │ │ │ │ ├── filters │ │ │ │ │ ├── adaptor.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── parser.go │ │ │ │ │ ├── quote.go │ │ │ │ │ └── scanner.go │ │ │ │ ├── kernelversion │ │ │ │ │ └── kernel_linux.go │ │ │ │ ├── labels │ │ │ │ │ ├── labels.go │ │ │ │ │ └── validate.go │ │ │ │ ├── reference │ │ │ │ │ └── reference.go │ │ │ │ └── tracing │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── tracing.go │ │ │ │ ├── plugins │ │ │ │ └── content │ │ │ │ │ └── local │ │ │ │ │ ├── content_local_fuzzer.go │ │ │ │ │ ├── locks.go │ │ │ │ │ ├── readerat.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── store_bsd.go │ │ │ │ │ ├── store_openbsd.go │ │ │ │ │ ├── store_unix.go │ │ │ │ │ ├── store_windows.go │ │ │ │ │ ├── test_helper.go │ │ │ │ │ └── writer.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ ├── errdefs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ └── resolve.go │ │ ├── log │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── context.go │ │ └── platforms │ │ │ ├── .gitattributes │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compare.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_linux.go │ │ │ ├── cpuinfo_other.go │ │ │ ├── database.go │ │ │ ├── defaults.go │ │ │ ├── defaults_darwin.go │ │ │ ├── defaults_freebsd.go │ │ │ ├── defaults_unix.go │ │ │ ├── defaults_windows.go │ │ │ ├── errors.go │ │ │ ├── platform_windows_compat.go │ │ │ └── platforms.go │ ├── docker │ │ ├── cli │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── cli │ │ │ │ └── config │ │ │ │ ├── config.go │ │ │ │ ├── configfile │ │ │ │ ├── file.go │ │ │ │ ├── file_unix.go │ │ │ │ └── file_windows.go │ │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── default_store.go │ │ │ │ ├── default_store_darwin.go │ │ │ │ ├── default_store_linux.go │ │ │ │ ├── default_store_unsupported.go │ │ │ │ ├── default_store_windows.go │ │ │ │ ├── file_store.go │ │ │ │ └── native_store.go │ │ │ │ └── types │ │ │ │ └── authconfig.go │ │ ├── distribution │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .mailmap │ │ │ ├── BUILDING.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── blobs.go │ │ │ ├── digestset │ │ │ │ └── set.go │ │ │ ├── doc.go │ │ │ ├── docker-bake.hcl │ │ │ ├── errors.go │ │ │ ├── manifest │ │ │ │ ├── doc.go │ │ │ │ ├── manifestlist │ │ │ │ │ └── manifestlist.go │ │ │ │ └── versioned.go │ │ │ ├── manifests.go │ │ │ ├── reference │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ │ ├── registry.go │ │ │ ├── tags.go │ │ │ └── vendor.conf │ │ ├── docker-credential-helpers │ │ │ ├── LICENSE │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ └── command.go │ │ │ └── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── error.go │ │ │ │ ├── helper.go │ │ │ │ └── version.go │ │ └── docker │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── pkg │ │ │ └── homedir │ │ │ ├── homedir.go │ │ │ ├── homedir_linux.go │ │ │ └── homedir_others.go │ ├── estesp │ │ └── manifest-tool │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ ├── registry │ │ │ ├── fetch.go │ │ │ ├── fetcher.go │ │ │ ├── push.go │ │ │ └── pusher.go │ │ │ ├── store │ │ │ └── store.go │ │ │ ├── types │ │ │ ├── image.go │ │ │ ├── input.go │ │ │ ├── manifests.go │ │ │ └── request.go │ │ │ └── util │ │ │ ├── name.go │ │ │ ├── os.go │ │ │ ├── oslist.go │ │ │ └── resolver.go │ ├── felixge │ │ └── httpsnoop │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── capture_metrics.go │ │ │ ├── docs.go │ │ │ ├── wrap_generated_gteq_1.8.go │ │ │ └── wrap_generated_lt_1.8.go │ ├── go-logr │ │ ├── logr │ │ │ ├── .golangci.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── context.go │ │ │ ├── context_noslog.go │ │ │ ├── context_slog.go │ │ │ ├── discard.go │ │ │ ├── funcr │ │ │ │ ├── funcr.go │ │ │ │ └── slogsink.go │ │ │ ├── logr.go │ │ │ ├── sloghandler.go │ │ │ ├── slogr.go │ │ │ └── slogsink.go │ │ └── stdr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── stdr.go │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── astnodetype_string.go │ │ │ ├── functions.go │ │ │ ├── interpreter.go │ │ │ ├── lexer.go │ │ │ ├── parser.go │ │ │ ├── toktype_string.go │ │ │ └── util.go │ ├── klauspost │ │ └── compress │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── compressible.go │ │ │ ├── fse │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── bytereader.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ └── fse.go │ │ │ ├── gen.sh │ │ │ ├── huff0 │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ ├── decompress_amd64.go │ │ │ ├── decompress_amd64.s │ │ │ ├── decompress_generic.go │ │ │ └── huff0.go │ │ │ ├── internal │ │ │ ├── cpuinfo │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ └── cpuinfo_amd64.s │ │ │ ├── le │ │ │ │ ├── le.go │ │ │ │ ├── unsafe_disabled.go │ │ │ │ └── unsafe_enabled.go │ │ │ └── snapref │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── decode_other.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_other.go │ │ │ │ └── snappy.go │ │ │ ├── s2sx.mod │ │ │ ├── s2sx.sum │ │ │ └── zstd │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── blockdec.go │ │ │ ├── blockenc.go │ │ │ ├── blocktype_string.go │ │ │ ├── bytebuf.go │ │ │ ├── bytereader.go │ │ │ ├── decodeheader.go │ │ │ ├── decoder.go │ │ │ ├── decoder_options.go │ │ │ ├── dict.go │ │ │ ├── enc_base.go │ │ │ ├── enc_best.go │ │ │ ├── enc_better.go │ │ │ ├── enc_dfast.go │ │ │ ├── enc_fast.go │ │ │ ├── encoder.go │ │ │ ├── encoder_options.go │ │ │ ├── framedec.go │ │ │ ├── frameenc.go │ │ │ ├── fse_decoder.go │ │ │ ├── fse_decoder_amd64.go │ │ │ ├── fse_decoder_amd64.s │ │ │ ├── fse_decoder_generic.go │ │ │ ├── fse_encoder.go │ │ │ ├── fse_predefined.go │ │ │ ├── hash.go │ │ │ ├── history.go │ │ │ ├── internal │ │ │ └── xxhash │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_arm64.s │ │ │ │ ├── xxhash_asm.go │ │ │ │ ├── xxhash_other.go │ │ │ │ └── xxhash_safe.go │ │ │ ├── matchlen_amd64.go │ │ │ ├── matchlen_amd64.s │ │ │ ├── matchlen_generic.go │ │ │ ├── seqdec.go │ │ │ ├── seqdec_amd64.go │ │ │ ├── seqdec_amd64.s │ │ │ ├── seqdec_generic.go │ │ │ ├── seqenc.go │ │ │ ├── snappy.go │ │ │ ├── zip.go │ │ │ └── zstd.go │ ├── moby │ │ └── locker │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── locker.go │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── .mailmap │ │ │ ├── .pullapprove.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ └── image-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ └── sirupsen │ │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go │ ├── go.opentelemetry.io │ ├── contrib │ │ └── instrumentation │ │ │ └── net │ │ │ └── http │ │ │ └── otelhttp │ │ │ ├── LICENSE │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── handler.go │ │ │ ├── internal │ │ │ ├── request │ │ │ │ ├── body_wrapper.go │ │ │ │ └── resp_writer_wrapper.go │ │ │ ├── semconv │ │ │ │ ├── env.go │ │ │ │ ├── httpconv.go │ │ │ │ ├── util.go │ │ │ │ └── v1.20.0.go │ │ │ └── semconvutil │ │ │ │ ├── gen.go │ │ │ │ ├── httpconv.go │ │ │ │ └── netconv.go │ │ │ ├── labeler.go │ │ │ ├── transport.go │ │ │ └── version.go │ └── otel │ │ ├── .codespellignore │ │ ├── .codespellrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .lycheeignore │ │ ├── .markdownlint.yaml │ │ ├── CHANGELOG.md │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── VERSIONING.md │ │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ │ ├── baggage │ │ ├── README.md │ │ ├── baggage.go │ │ ├── context.go │ │ └── doc.go │ │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ │ ├── doc.go │ │ ├── error_handler.go │ │ ├── get_main_pkgs.sh │ │ ├── handler.go │ │ ├── internal │ │ ├── attribute │ │ │ └── attribute.go │ │ ├── baggage │ │ │ ├── baggage.go │ │ │ └── context.go │ │ ├── gen.go │ │ ├── global │ │ │ ├── handler.go │ │ │ ├── instruments.go │ │ │ ├── internal_logging.go │ │ │ ├── meter.go │ │ │ ├── propagator.go │ │ │ ├── state.go │ │ │ └── trace.go │ │ └── rawhelpers.go │ │ ├── internal_logging.go │ │ ├── metric.go │ │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── noop │ │ │ ├── README.md │ │ │ └── noop.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ │ ├── propagation.go │ │ ├── propagation │ │ ├── README.md │ │ ├── baggage.go │ │ ├── doc.go │ │ ├── propagation.go │ │ └── trace_context.go │ │ ├── renovate.json │ │ ├── requirements.txt │ │ ├── semconv │ │ ├── v1.20.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── http.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ ├── v1.21.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── exception.go │ │ │ ├── resource.go │ │ │ ├── schema.go │ │ │ └── trace.go │ │ └── v1.26.0 │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── exception.go │ │ │ ├── metric.go │ │ │ └── schema.go │ │ ├── trace.go │ │ ├── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go │ │ ├── verify_readmes.sh │ │ ├── verify_released_changelog.sh │ │ ├── version.go │ │ └── versions.yaml │ ├── golang.org │ └── x │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup │ │ │ └── errgroup.go │ │ └── semaphore │ │ │ └── semaphore.go │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── modules.txt │ └── oras.land │ └── oras-go │ └── v2 │ ├── LICENSE │ ├── content │ ├── descriptor.go │ ├── graph.go │ ├── limitedstorage.go │ ├── memory │ │ └── memory.go │ ├── reader.go │ ├── resolver.go │ └── storage.go │ ├── errdef │ └── errors.go │ └── internal │ ├── cas │ ├── memory.go │ └── proxy.go │ ├── container │ └── set │ │ └── set.go │ ├── descriptor │ └── descriptor.go │ ├── docker │ └── mediatype.go │ ├── graph │ └── memory.go │ ├── ioutil │ └── io.go │ ├── resolver │ └── memory.go │ ├── spec │ └── artifact.go │ ├── status │ └── tracker.go │ └── syncutil │ ├── limit.go │ ├── limitgroup.go │ ├── merge.go │ ├── once.go │ └── pool.go ├── go.mod ├── go.sum ├── hack └── vendor.sh ├── mquery.go ├── packaging ├── Dockerfile.linux ├── Dockerfile.windows ├── Dockerfile.windows2016 ├── cross.sh ├── pushml-pre.yaml └── pushml.yaml └── vendor ├── github.com ├── dghubble │ └── sling │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── body.go │ │ ├── doc.go │ │ ├── response.go │ │ └── sling.go ├── google │ └── go-querystring │ │ ├── LICENSE │ │ └── query │ │ └── encode.go └── opencontainers │ ├── go-digest │ ├── .mailmap │ ├── .pullapprove.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── LICENSE.docs │ ├── MAINTAINERS │ ├── README.md │ ├── algorithm.go │ ├── digest.go │ ├── digester.go │ ├── doc.go │ └── verifiers.go │ └── image-spec │ ├── LICENSE │ └── specs-go │ ├── v1 │ ├── annotations.go │ ├── config.go │ ├── descriptor.go │ ├── index.go │ ├── layout.go │ ├── manifest.go │ └── mediatype.go │ ├── version.go │ └── versioned.go └── modules.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/README.md -------------------------------------------------------------------------------- /function/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/Makefile -------------------------------------------------------------------------------- /function/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/go.mod -------------------------------------------------------------------------------- /function/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/go.sum -------------------------------------------------------------------------------- /function/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/inspect.go -------------------------------------------------------------------------------- /function/vendor/github.com/AdaLogics/go-fuzz-headers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/AdaLogics/go-fuzz-headers/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/AdaLogics/go-fuzz-headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/AdaLogics/go-fuzz-headers/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/AdaLogics/go-fuzz-headers/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/AdaLogics/go-fuzz-headers/consumer.go -------------------------------------------------------------------------------- /function/vendor/github.com/AdaLogics/go-fuzz-headers/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/AdaLogics/go-fuzz-headers/funcs.go -------------------------------------------------------------------------------- /function/vendor/github.com/AdaLogics/go-fuzz-headers/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/AdaLogics/go-fuzz-headers/sql.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/LICENSE-LAMBDACODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/LICENSE-LAMBDACODE -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/LICENSE-SUMMARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/LICENSE-SUMMARY -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/README_S3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/README_S3.md -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/activemq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/activemq.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/alb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/alb.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/apigw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/apigw.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/appsync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/appsync.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/chime_bot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/chime_bot.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/clientvpn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/clientvpn.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/codebuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/codebuild.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/cognito.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/cognito.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/config.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/connect.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/duration.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/dynamodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/dynamodb.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/ecr_scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/ecr_scan.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/firehose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/firehose.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/iam.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/iot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/iot.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/kafka.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/kinesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/kinesis.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/lex.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/rabbitmq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/rabbitmq.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/s3.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/ses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/ses.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/sns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/sns.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/sqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/sqs.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/events/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/events/streams.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/lambda/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/lambda/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/lambda/entry.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/lambda/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/lambda/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/lambda/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/lambda/handler.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/lambda/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/lambda/panic.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-lambda-go/lambda/sigterm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-lambda-go/lambda/sigterm.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/client/client.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/config.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/context_1_5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/context_1_5.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/context_1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/context_1_9.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/context_sleep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/context_sleep.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/awsinternal.go: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT 2 | package corehandlers 3 | 4 | const isAwsInternal = "" -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/crr/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/crr/cache.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/crr/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/crr/endpoint.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/crr/sync_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/crr/sync_map.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/csm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/csm/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/csm/enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/csm/enable.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/csm/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/csm/metric.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/csm/metric_chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/csm/metric_chan.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/csm/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/csm/reporter.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/logger.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/request/request.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/session/session.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/types.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/url.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/url_1_7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/url_1_7.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/aws/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/aws/version.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/internal/ini/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/internal/ini/ast.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/internal/ini/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/internal/ini/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/internal/ini/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/internal/ini/fuzz.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/internal/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/internal/ini/ini.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/internal/ini/walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/internal/ini/walker.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/internal/sdkio/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/internal/sdkio/byte.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sso/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sso/api.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sso/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sso/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sso/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sso/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sso/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sso/service.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/ssooidc/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/ssooidc/api.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/ssooidc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/ssooidc/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sts/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sts/api.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sts/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sts/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sts/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sts/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/aws/aws-sdk-go/service/sts/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/aws/aws-sdk-go/service/sts/service.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/containerd/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/containerd/v2/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/containerd/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/containerd/v2/NOTICE -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/errdefs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/errdefs/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/errdefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/errdefs/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/errdefs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/errdefs/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/errdefs/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/errdefs/resolve.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/log/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/log/.golangci.yml -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/log/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/log/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/log/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/log/context.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/.golangci.yml -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/compare.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/cpuinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/cpuinfo.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/cpuinfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/cpuinfo_linux.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/cpuinfo_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/cpuinfo_other.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/database.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/defaults.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/defaults_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/defaults_unix.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/containerd/platforms/platforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/containerd/platforms/platforms.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/cli/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/cli/AUTHORS -------------------------------------------------------------------------------- /function/vendor/github.com/docker/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/cli/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/docker/cli/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/cli/NOTICE -------------------------------------------------------------------------------- /function/vendor/github.com/docker/cli/cli/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/cli/cli/config/config.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/.gitignore -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/.golangci.yml -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/.mailmap -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/BUILDING.md -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/CONTRIBUTING.md -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/Dockerfile -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/MAINTAINERS -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/Makefile -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/ROADMAP.md -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/blobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/blobs.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/digestset/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/digestset/set.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/docker-bake.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/docker-bake.hcl -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/manifest/doc.go: -------------------------------------------------------------------------------- 1 | package manifest 2 | -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/manifests.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/registry.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/tags.go -------------------------------------------------------------------------------- /function/vendor/github.com/docker/distribution/vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/distribution/vendor.conf -------------------------------------------------------------------------------- /function/vendor/github.com/docker/docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/docker/AUTHORS -------------------------------------------------------------------------------- /function/vendor/github.com/docker/docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/docker/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/docker/docker/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/docker/NOTICE -------------------------------------------------------------------------------- /function/vendor/github.com/docker/docker/pkg/homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/docker/docker/pkg/homedir/homedir.go -------------------------------------------------------------------------------- /function/vendor/github.com/estesp/manifest-tool/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/estesp/manifest-tool/v2/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /function/vendor/github.com/felixge/httpsnoop/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/felixge/httpsnoop/LICENSE.txt -------------------------------------------------------------------------------- /function/vendor/github.com/felixge/httpsnoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/felixge/httpsnoop/Makefile -------------------------------------------------------------------------------- /function/vendor/github.com/felixge/httpsnoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/felixge/httpsnoop/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/felixge/httpsnoop/capture_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/felixge/httpsnoop/capture_metrics.go -------------------------------------------------------------------------------- /function/vendor/github.com/felixge/httpsnoop/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/felixge/httpsnoop/docs.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/.golangci.yaml -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/CHANGELOG.md -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/CONTRIBUTING.md -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/SECURITY.md -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/context.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/context_noslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/context_noslog.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/context_slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/context_slog.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/discard.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/funcr/funcr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/funcr/funcr.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/funcr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/funcr/slogsink.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/logr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/logr.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/sloghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/sloghandler.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/slogr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/slogr.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/logr/slogsink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/logr/slogsink.go -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/stdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/stdr/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/stdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/stdr/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/go-logr/stdr/stdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/go-logr/stdr/stdr.go -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/.gitignore -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/.travis.yml -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/Makefile -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/api.go -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/functions.go -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/interpreter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/interpreter.go -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/lexer.go -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/parser.go -------------------------------------------------------------------------------- /function/vendor/github.com/jmespath/go-jmespath/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/jmespath/go-jmespath/util.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/.gitattributes -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/.gitignore -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/.goreleaser.yml -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/SECURITY.md -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/compressible.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/compressible.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/bitreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/bitreader.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/bitwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/bitwriter.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/bytereader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/bytereader.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/compress.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/decompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/decompress.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/fse/fse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/fse/fse.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/huff0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/huff0/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/huff0/bitreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/huff0/bitreader.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/huff0/bitwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/huff0/bitwriter.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/huff0/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/huff0/compress.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/huff0/huff0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/huff0/huff0.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/internal/le/le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/internal/le/le.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/bitreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/bitreader.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/bitwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/bitwriter.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/blockdec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/blockdec.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/blockenc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/blockenc.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/bytebuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/bytebuf.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/bytereader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/bytereader.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/decoder.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/dict.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/enc_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/enc_base.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/enc_best.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/enc_best.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/enc_better.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/enc_better.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/enc_dfast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/enc_dfast.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/enc_fast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/enc_fast.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/encoder.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/framedec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/framedec.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/frameenc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/frameenc.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/hash.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/history.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/seqdec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/seqdec.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/seqenc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/seqenc.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/snappy.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/zip.go -------------------------------------------------------------------------------- /function/vendor/github.com/klauspost/compress/zstd/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/klauspost/compress/zstd/zstd.go -------------------------------------------------------------------------------- /function/vendor/github.com/moby/locker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/moby/locker/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/moby/locker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/moby/locker/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/moby/locker/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/moby/locker/locker.go -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/.mailmap -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/.travis.yml -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/LICENSE.docs -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/MAINTAINERS -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/algorithm.go -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/digest.go -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/digester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/digester.go -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/go-digest/verifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/go-digest/verifiers.go -------------------------------------------------------------------------------- /function/vendor/github.com/opencontainers/image-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/opencontainers/image-spec/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /function/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/.golangci.yml -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/buffer_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/buffer_pool.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/terminal_check_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/terminal_check_js.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /function/vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.codespellignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.codespellignore -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.codespellrc -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.gitattributes -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.gitignore -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.golangci.yml -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.lycheeignore -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/.markdownlint.yaml -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/CHANGELOG.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/CODEOWNERS -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/CONTRIBUTING.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/Makefile -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/RELEASING.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/VERSIONING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/VERSIONING.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/encoder.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/filter.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/iterator.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/key.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/kv.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/set.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/attribute/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/attribute/value.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/baggage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/baggage/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/baggage/baggage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/baggage/baggage.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/baggage/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/baggage/context.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/baggage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/baggage/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/codes/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/codes/codes.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/codes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/codes/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/error_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/error_handler.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/get_main_pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/get_main_pkgs.sh -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/handler.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/internal/gen.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/internal/rawhelpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/internal/rawhelpers.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/internal_logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/internal_logging.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/LICENSE -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/asyncfloat64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/asyncfloat64.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/asyncint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/asyncint64.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/config.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/instrument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/instrument.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/meter.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/noop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/noop/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/noop/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/noop/noop.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/syncfloat64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/syncfloat64.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/metric/syncint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/metric/syncint64.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/propagation.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/propagation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/propagation/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/propagation/baggage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/propagation/baggage.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/propagation/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/propagation/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/renovate.json -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.3.0 2 | -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/semconv/v1.20.0/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/semconv/v1.20.0/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/semconv/v1.20.0/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/semconv/v1.20.0/http.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/semconv/v1.21.0/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/semconv/v1.21.0/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/semconv/v1.26.0/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/semconv/v1.26.0/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/LICENSE -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/README.md -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/config.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/context.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/doc.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/nonrecording.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/nonrecording.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/noop.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/provider.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/span.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/trace.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/tracer.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/trace/tracestate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/trace/tracestate.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/verify_readmes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/verify_readmes.sh -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/version.go -------------------------------------------------------------------------------- /function/vendor/go.opentelemetry.io/otel/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/go.opentelemetry.io/otel/versions.yaml -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sync/semaphore/semaphore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sync/semaphore/semaphore.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_loong64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_loong64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/auxv_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/auxv_unsupported.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ioctl_signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ioctl_signed.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ioctl_unsigned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ioctl_unsigned.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/mmap_nomremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/mmap_nomremap.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/readdirent_getdents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/readdirent_getdents.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sockcmsg_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sockcmsg_zos.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_hurd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_hurd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_hurd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_hurd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/vgetrandom_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/vgetrandom_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/mkknownfolderids.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/mkknownfolderids.bash -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/setupapi_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/setupapi_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/types_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/types_windows_386.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/types_windows_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/types_windows_arm.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/zerrors_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/zerrors_windows.go -------------------------------------------------------------------------------- /function/vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /function/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/modules.txt -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/LICENSE -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/descriptor.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/graph.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/limitedstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/limitedstorage.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/memory/memory.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/reader.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/resolver.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/content/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/content/storage.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/errdef/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/errdef/errors.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/cas/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/cas/memory.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/cas/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/cas/proxy.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/graph/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/graph/memory.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/ioutil/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/ioutil/io.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/spec/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/spec/artifact.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/syncutil/once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/syncutil/once.go -------------------------------------------------------------------------------- /function/vendor/oras.land/oras-go/v2/internal/syncutil/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/function/vendor/oras.land/oras-go/v2/internal/syncutil/pool.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/go.sum -------------------------------------------------------------------------------- /hack/vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/hack/vendor.sh -------------------------------------------------------------------------------- /mquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/mquery.go -------------------------------------------------------------------------------- /packaging/Dockerfile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/packaging/Dockerfile.linux -------------------------------------------------------------------------------- /packaging/Dockerfile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/packaging/Dockerfile.windows -------------------------------------------------------------------------------- /packaging/Dockerfile.windows2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/packaging/Dockerfile.windows2016 -------------------------------------------------------------------------------- /packaging/cross.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/packaging/cross.sh -------------------------------------------------------------------------------- /packaging/pushml-pre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/packaging/pushml-pre.yaml -------------------------------------------------------------------------------- /packaging/pushml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/packaging/pushml.yaml -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/CHANGES.md -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/Makefile -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/README.md -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/body.go -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/doc.go -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/response.go -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/sling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/dghubble/sling/sling.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-querystring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/google/go-querystring/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-querystring/query/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/google/go-querystring/query/encode.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/.pullapprove.yml -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/LICENSE.docs -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/README.md -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/algorithm.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/digest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/digest.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/digester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/digester.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/doc.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/go-digest/verifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/go-digest/verifiers.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/image-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/github.com/opencontainers/image-spec/LICENSE -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estesp/mquery/HEAD/vendor/modules.txt --------------------------------------------------------------------------------