├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature.md ├── actions │ ├── amazon-linux-build-action │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── tegola-setup-env │ │ └── action.yml │ ├── tegola-upload-path │ │ └── action.yml │ └── upload-artifact │ │ └── action.yml └── workflows │ ├── on_pr_push.yml │ └── on_release_publish.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── atlas ├── atlas.go ├── atlas_test.go ├── cache.go ├── cache_azblob.go ├── cache_gcs.go ├── cache_init_test.go ├── cache_redis.go ├── cache_s3.go ├── errors.go ├── layer.go ├── layer_test.go ├── map.go ├── map_test.go ├── observer_prometheus.go ├── provider.go ├── provider_gpkg.go ├── provider_hana.go └── provider_postgis.go ├── basic ├── clone.go ├── collection.go ├── g.go ├── geometry_math.go ├── go_string.go ├── is_valid.go ├── is_valid_test.go ├── json_marshal.go ├── json_marshal_test.go ├── line.go ├── line_test.go ├── maths │ ├── clean.go │ └── clean_test.go ├── point.go └── polygon.go ├── cache ├── azblob │ ├── README.md │ ├── azblob.go │ └── azblob_test.go ├── cache.go ├── cache_test.go ├── errors.go ├── file │ ├── README.md │ ├── file.go │ ├── file_test.go │ └── testfiles │ │ └── tegola-cache │ │ └── 0 │ │ └── 1 │ │ └── 12 ├── gcs │ ├── README.md │ └── gcs.go ├── memory │ ├── README.md │ ├── memory.go │ └── memory_test.go ├── redis │ ├── README.md │ ├── errors.go │ ├── redis.go │ └── redis_test.go └── s3 │ ├── README.md │ ├── s3.go │ └── s3_test.go ├── ci ├── build_nonrelease.sh └── cat_version_envs.go ├── cmd ├── internal │ └── register │ │ ├── caches.go │ │ ├── caches_test.go │ │ ├── errors.go │ │ ├── maps.go │ │ ├── maps_test.go │ │ ├── observers.go │ │ ├── providers.go │ │ └── providers_test.go ├── tegola │ ├── .gitignore │ ├── cmd │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── flags.go │ │ │ ├── format.go │ │ │ ├── seed_purge.go │ │ │ ├── seed_purge_generator_test.go │ │ │ ├── slippy_test.go │ │ │ ├── testdata │ │ │ │ ├── .gitignore │ │ │ │ └── list.tiles │ │ │ ├── tile_list.go │ │ │ ├── tile_list_generator_test.go │ │ │ ├── tile_name.go │ │ │ ├── tile_name_generator_test.go │ │ │ └── worker.go │ │ ├── root.go │ │ ├── server.go │ │ ├── tile_name_format.go │ │ ├── tile_name_format_test.go │ │ └── version.go │ ├── main.go │ └── pprof.go └── tegola_lambda │ ├── README.md │ └── main.go ├── config ├── config.go ├── config_test.go ├── errors.go └── testdata │ ├── empty_proxy_protocol.toml │ ├── happy_path.toml │ ├── missing_env.toml │ └── test_env.toml ├── container ├── list │ ├── list.go │ ├── list_test.go │ └── point │ │ └── list │ │ ├── point.go │ │ └── point_test.go └── singlelist │ ├── element.go │ ├── list.go │ ├── list_test.go │ ├── mycaller.go │ ├── point │ └── list │ │ ├── list.go │ │ └── point.go │ └── sentinel.go ├── dict ├── dict.go ├── dict_test.go └── types.go ├── docker-compose.yml ├── docs ├── papers │ └── 14_cg.pdf └── screenshots │ └── built-in-viewer.png ├── draw └── svg │ ├── minmax.go │ └── svg.go ├── example └── tile.go ├── geometry.go ├── geometry_math.go ├── go.mod ├── go.sum ├── gostring.go ├── internal ├── build │ ├── build.go │ ├── cgo.generated.go │ ├── no_azblob_cache.generated.go │ ├── no_gpkg_provider.generated.go │ ├── no_postgis_provider.generated.go │ ├── no_prometheus_observer.generated.go │ ├── no_redis_cache.generated.go │ ├── no_s3_cache.generated.go │ ├── no_viewer.generated.go │ ├── no_viewer.go │ ├── not_cgo.generated.go │ ├── not_no_azblob_cache.generated.go │ ├── not_no_gpkg_provider.generated.go │ ├── not_no_postgis_provider.generated.go │ ├── not_no_prometheus_observer.generated.go │ ├── not_no_redis_cache.generated.go │ ├── not_no_s3_cache.generated.go │ ├── not_no_viewer.generated.go │ ├── not_pprof.generated.go │ ├── pprof.generated.go │ ├── tags │ │ └── tags.go │ └── viewer.go ├── cmd │ ├── README.md │ └── main.go ├── convert │ ├── convert.go │ ├── convert_test.go │ └── math_point.go ├── env │ ├── dict.go │ ├── dict_test.go │ ├── parse.go │ ├── parse_test.go │ ├── types.go │ ├── types_internal_test.go │ └── types_test.go ├── log │ ├── README.md │ ├── log.go │ └── log_test.go ├── observer │ └── null.go ├── p │ ├── README.md │ └── p.go └── ttools │ ├── getenv.go │ ├── getenv_test.go │ └── skip.go ├── isequal.go ├── isequal_test.go ├── mapbox ├── style │ ├── layer.go │ ├── light.go │ ├── source.go │ ├── style.go │ └── transition.go └── tilejson │ └── tilejson.go ├── maths ├── clip │ ├── clip.go │ ├── internal │ │ └── draw │ │ │ ├── draw.go │ │ │ └── svg.go │ ├── intersect │ │ ├── go_string.go │ │ ├── intersect.go │ │ ├── intersect_test.go │ │ ├── point.go │ │ └── walker.go │ ├── linestring_test.go │ ├── region │ │ ├── axis.go │ │ ├── axis_test.go │ │ ├── go_string.go │ │ ├── region.go │ │ └── region_test.go │ └── subject │ │ ├── go_string.go │ │ ├── pair.go │ │ ├── subject.go │ │ └── subject_test.go ├── hitmap │ ├── hitmap.go │ ├── hitmap_test.go │ └── hitmap_y.go ├── internal │ └── assert │ │ └── assert.go ├── line.go ├── line_intersect.go ├── lines │ └── lines.go ├── makevalid │ ├── .gitignore │ ├── README.md │ ├── _docs │ │ ├── makevalid.sketch │ │ ├── makevalid_columns.png │ │ ├── makevalid_destructure.png │ │ ├── makevalid_hitmap.png │ │ ├── makevalid_hitmap.svg │ │ ├── makevalid_starting.png │ │ ├── makevalid_stitching.png │ │ └── makevalid_triangulation.png │ ├── colptmap.go │ ├── construct_polygon_test.go │ ├── construct_ring_test.go │ ├── debug.go │ ├── main.go │ ├── makevalid.go │ ├── makevalid_splitpts_test.go │ ├── makevalid_test.go │ └── plyg │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── debug.go │ │ ├── gettriangle_test.go │ │ ├── ring.go │ │ ├── ring_test.go │ │ └── testdata │ │ ├── 175a14a6-d975-41f4-8985-ac21730409cb │ │ ├── 175a14a6-d975-41f4-8985-ac21730409cb.svg │ │ ├── 62254d3e-10a4-4b71-912b-48d3c7168a9c │ │ ├── 62254d3e-10a4-4b71-912b-48d3c7168a9c.svg │ │ ├── 66223d1e-18a4-4d84-bde0-950a4ec9a8c5 │ │ ├── 66223d1e-18a4-4d84-bde0-950a4ec9a8c5.svg │ │ ├── 7b4b6d11-90a4-4a4a-8ca7-f6d1dba1c2d8 │ │ ├── 7b4b6d11-90a4-4a4a-8ca7-f6d1dba1c2d8.svg │ │ ├── 9297b97c-bbbf-4f8d-a285-3adb99de4163 │ │ ├── 9ac4d011-c9b6-4d68-b128-584a5992f1f7 │ │ ├── 9ac4d011-c9b6-4d68-b128-584a5992f1f7.svg │ │ ├── c23a7a28-743f-4fef-b335-0e0d1fd94126 │ │ └── c23a7a28-743f-4fef-b335-0e0d1fd94126.svg ├── maths.go ├── maths_test.go ├── maths_windingorder_test.go ├── points │ ├── byxy.go │ ├── paired.go │ ├── points.go │ ├── reverse.go │ ├── rotate.go │ ├── sorted.go │ └── sorted_test.go ├── rectangle.go ├── simplify │ ├── douglas_peucker.go │ └── simplify.go ├── testdata │ ├── issue_1.txt │ └── test1.txt ├── testhelpers │ └── main.go ├── triangle.go ├── validate │ ├── Readme.md │ ├── testdata │ │ └── invalid_polygon.txt │ └── validate.go ├── webmercator │ ├── main.go │ └── pseudo.go └── windingorder.go ├── mvtprovider ├── hana │ ├── README.md │ └── doc.go └── postgis │ ├── README.md │ └── doc.go ├── observability ├── none.go ├── observability.go └── prometheus │ ├── README.md │ ├── build_info.go │ ├── cache.go │ ├── http.go │ └── prometheus.go ├── projections.go ├── provider ├── debug │ ├── debug.go │ └── layer.go ├── errors.go ├── feature.go ├── gpkg │ ├── README.md │ ├── binary_header.go │ ├── binary_header_internal_test.go │ ├── cgo_test.go │ ├── errors.go │ ├── gpkg.go │ ├── gpkg_register.go │ ├── gpkg_register_internal_test.go │ ├── gpkg_register_nocgo.go │ ├── gpkg_test.go │ ├── layer.go │ ├── nocgo_test.go │ ├── testdata │ │ ├── apeldoorn.gpkg │ │ ├── athens-osm-20170921.gpkg │ │ ├── config_athens.toml │ │ ├── natural_earth_minimal.gpkg │ │ └── puerto_mont-osm-20170922.gpkg │ ├── util.go │ └── util_internal_test.go ├── hana │ ├── README.md │ ├── debug.go │ ├── error.go │ ├── hana.go │ ├── hana_test.go │ ├── layer.go │ ├── register.go │ ├── util.go │ └── util_internal_test.go ├── layer.go ├── map.go ├── map_layer.go ├── mvt_provider.go ├── paramater_decoders.go ├── postgis │ ├── README.md │ ├── debug.go │ ├── error.go │ ├── layer.go │ ├── postgis.go │ ├── postgis_internal_test.go │ ├── postgis_test.go │ ├── register.go │ ├── util.go │ └── util_internal_test.go ├── provider.go ├── provider_internal_test.go ├── provider_test.go ├── query_parameter.go ├── query_parameter_value.go ├── query_parameter_value_test.go ├── test │ ├── emptycollection │ │ ├── layer.go │ │ └── provider.go │ ├── layer.go │ └── provider.go └── testdata │ └── 11_358_827.pbf ├── server ├── README.md ├── errors.go ├── handle_capabilities.go ├── handle_capabilities_test.go ├── handle_map_capabilities.go ├── handle_map_capabilities_test.go ├── handle_map_layer_zxy.go ├── handle_map_layer_zxy_test.go ├── handle_map_style.go ├── handle_map_style_internal_test.go ├── handle_map_style_test.go ├── middleware_gzip.go ├── middleware_gzip_internal_test.go ├── middleware_gzip_test.go ├── middleware_headers.go ├── middleware_headers_test.go ├── middleware_tile_cache.go ├── middleware_tile_cache_internal_test.go ├── middleware_tile_cache_test.go ├── server.go ├── server_cors_test.go ├── server_internal_test.go ├── server_test.go ├── testcert │ ├── README.txt │ ├── cert.pem │ └── key.pem ├── tile_url_template.go ├── tile_url_template_test.go ├── viewer_disabled.go ├── viewer_embed.go └── viewer_gen.go ├── testdata └── postgis │ ├── migration.sh │ ├── postgis-add-test-tags-table.sql │ ├── postgis-test-warning-function.sql │ └── tegola.dump ├── tile.go ├── tile_test.go ├── tools └── tools.go ├── ui ├── .prettierrc ├── README.md ├── babel.config.js ├── build.go ├── dist │ └── .keep ├── embed.go ├── index.html ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── assets │ │ └── svg │ │ │ └── arrow.svg │ ├── components │ │ ├── LeftNav │ │ │ ├── LeftNav.vue │ │ │ ├── MapLayerRow.vue │ │ │ └── MapRow.vue │ │ ├── MapControls.js │ │ ├── Viewer.vue │ │ └── ViewerHeader.vue │ ├── globals │ │ ├── map.js │ │ └── store.js │ └── main.js ├── vite.config.js └── vue.config.js └── vendor ├── cloud.google.com └── go │ ├── LICENSE │ ├── compute │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── metadata.go │ │ ├── retry.go │ │ └── retry_linux.go │ ├── iam │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── apiv1 │ │ └── iampb │ │ │ ├── iam_policy.pb.go │ │ │ ├── options.pb.go │ │ │ └── policy.pb.go │ └── iam.go │ ├── internal │ ├── .repo-metadata-full.json │ ├── README.md │ ├── annotate.go │ ├── cloudbuild.yaml │ ├── optional │ │ └── optional.go │ ├── retry.go │ ├── trace │ │ └── trace.go │ └── version │ │ ├── update_version.sh │ │ └── version.go │ └── storage │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── acl.go │ ├── bucket.go │ ├── client.go │ ├── copy.go │ ├── doc.go │ ├── emulator_test.sh │ ├── grpc_client.go │ ├── hmac.go │ ├── http_client.go │ ├── iam.go │ ├── internal │ ├── apiv2 │ │ ├── doc.go │ │ ├── gapic_metadata.json │ │ ├── metadata.go │ │ ├── storage_client.go │ │ ├── stubs │ │ │ └── storage.pb.go │ │ └── version.go │ └── version.go │ ├── invoke.go │ ├── notifications.go │ ├── post_policy_v4.go │ ├── reader.go │ ├── storage.go │ ├── storage.replay │ └── writer.go ├── github.com ├── Azure │ ├── azure-pipeline-go │ │ ├── LICENSE │ │ └── pipeline │ │ │ ├── core.go │ │ │ ├── defaultlog_syslog.go │ │ │ ├── defaultlog_windows.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── progress.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ └── version.go │ └── azure-storage-blob-go │ │ ├── 2017-07-29 │ │ └── azblob │ │ │ ├── access_conditions.go │ │ │ ├── atomicmorph.go │ │ │ ├── highlevel.go │ │ │ ├── parsing_urls.go │ │ │ ├── sas_service.go │ │ │ ├── service_codes_blob.go │ │ │ ├── url_append_blob.go │ │ │ ├── url_blob.go │ │ │ ├── url_block_blob.go │ │ │ ├── url_container.go │ │ │ ├── url_page_blob.go │ │ │ ├── url_service.go │ │ │ ├── version.go │ │ │ ├── zc_credential_anonymous.go │ │ │ ├── zc_credential_shared_key.go │ │ │ ├── zc_credential_token.go │ │ │ ├── zc_mmf_unix.go │ │ │ ├── zc_mmf_windows.go │ │ │ ├── zc_pipeline.go │ │ │ ├── zc_policy_request_log.go │ │ │ ├── zc_policy_retry.go │ │ │ ├── zc_policy_telemetry.go │ │ │ ├── zc_policy_unique_request_id.go │ │ │ ├── zc_retry_reader.go │ │ │ ├── zc_sas_account.go │ │ │ ├── zc_sas_query_params.go │ │ │ ├── zc_service_codes_common.go │ │ │ ├── zc_storage_error.go │ │ │ ├── zc_util_validate.go │ │ │ ├── zc_uuid.go │ │ │ ├── zt_doc.go │ │ │ ├── zz_generated_append_blobs.go │ │ │ ├── zz_generated_blobs.go │ │ │ ├── zz_generated_block_blobs.go │ │ │ ├── zz_generated_client.go │ │ │ ├── zz_generated_containers.go │ │ │ ├── zz_generated_models.go │ │ │ ├── zz_generated_page_blobs.go │ │ │ ├── zz_generated_responder_policy.go │ │ │ ├── zz_generated_response_error.go │ │ │ ├── zz_generated_service.go │ │ │ ├── zz_generated_validation.go │ │ │ ├── zz_generated_version.go │ │ │ └── zz_response_helpers.go │ │ └── LICENSE ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COMPATIBLE │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── decode_go116.go │ │ ├── decode_meta.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── parse.go │ │ ├── type_check.go │ │ └── type_fields.go ├── SAP │ └── go-hdb │ │ ├── LICENSE.md │ │ └── driver │ │ ├── args.go │ │ ├── atomicBool1.18.go │ │ ├── atomicBool1.19.go │ │ ├── authattrs.go │ │ ├── bytes.go │ │ ├── connattrs.go │ │ ├── connection.go │ │ ├── connector.go │ │ ├── dbconnectinfo.go │ │ ├── decimal.go │ │ ├── deprecated.go │ │ ├── dial │ │ └── dialer.go │ │ ├── doc.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── error.go │ │ ├── identifier.go │ │ ├── internal │ │ ├── errors │ │ │ └── errors.go │ │ ├── logflag │ │ │ └── logflag.go │ │ └── protocol │ │ │ ├── auth.go │ │ │ ├── auth │ │ │ ├── auth.go │ │ │ ├── jwt.go │ │ │ ├── scram.go │ │ │ ├── scrampbkdf2sha256.go │ │ │ ├── scramsha256.go │ │ │ ├── sessioncookie.go │ │ │ └── x509.go │ │ │ ├── connectoption.go │ │ │ ├── convert.go │ │ │ ├── datatype.go │ │ │ ├── decodeerror.go │ │ │ ├── dfv.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ ├── decimal.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── fieldsize.go │ │ │ ├── error.go │ │ │ ├── fieldnames.go │ │ │ ├── fieldtype.go │ │ │ ├── functioncode.go │ │ │ ├── headers.go │ │ │ ├── init.go │ │ │ ├── julian │ │ │ └── julian.go │ │ │ ├── keyvaluesparts.go │ │ │ ├── lob.go │ │ │ ├── messagetype.go │ │ │ ├── multioptionsparts.go │ │ │ ├── optionsparts.go │ │ │ ├── optiontype.go │ │ │ ├── parameter.go │ │ │ ├── partkind.go │ │ │ ├── parts.go │ │ │ ├── protocol.go │ │ │ ├── protocoltrace.go │ │ │ ├── resizeslice.go │ │ │ ├── result.go │ │ │ ├── rowsaffected.go │ │ │ ├── scanner │ │ │ └── scanner.go │ │ │ ├── simpleparts.go │ │ │ ├── typecode.go │ │ │ ├── x509 │ │ │ └── x509.go │ │ │ ├── x_generator.go │ │ │ └── x_stringer.go │ │ ├── lob.go │ │ ├── log.go │ │ ├── metrics.go │ │ ├── querydescr.go │ │ ├── queryresultcache.go │ │ ├── rand.go │ │ ├── result.go │ │ ├── sniffer.go │ │ ├── sqltrace │ │ ├── doc.go │ │ └── trace.go │ │ ├── stats.go │ │ ├── stats.tmpl │ │ ├── statscfg.go │ │ ├── statscfg.json │ │ ├── unicode │ │ └── cesu8 │ │ │ ├── cesu8.go │ │ │ └── encoding.go │ │ └── version.go ├── ajstarks │ └── svgo │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── doc.go │ │ ├── gophercolor128x128.png │ │ ├── newsvg │ │ ├── svg.go │ │ ├── svgdef.pdf │ │ ├── svgdef.png │ │ └── svgdef.svg ├── akrylysov │ └── algnhsa │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── alb.go │ │ ├── apigw_v1.go │ │ ├── apigw_v2.go │ │ ├── debug.go │ │ ├── options.go │ │ ├── request.go │ │ └── response.go ├── arolek │ └── p │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── p.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_Events.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_Kinesis.md │ │ │ ├── README_KinesisDataAnalytics.md │ │ │ ├── README_KinesisFirehose.md │ │ │ ├── README_Lambda.md │ │ │ ├── README_Lex.md │ │ │ ├── README_S3.md │ │ │ ├── README_S3_Batch_Job.md │ │ │ ├── README_SES.md │ │ │ ├── README_SNS.md │ │ │ ├── README_SQS.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 │ │ │ ├── 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 │ │ ├── arn │ │ │ └── arn.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 │ │ │ ├── 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 │ │ │ ├── static_provider.go │ │ │ └── stscreds │ │ │ │ ├── assume_role_provider.go │ │ │ │ └── web_identity_provider.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 │ │ │ ├── cabundle_transport.go │ │ │ ├── cabundle_transport_1_5.go │ │ │ ├── cabundle_transport_1_6.go │ │ │ ├── credentials.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 │ │ ├── s3err │ │ │ └── error.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 │ │ ├── strings │ │ │ └── strings.go │ │ └── sync │ │ │ └── singleflight │ │ │ ├── LICENSE │ │ │ └── singleflight.go │ │ ├── private │ │ ├── checksum │ │ │ └── content_md5.go │ │ └── protocol │ │ │ ├── eventstream │ │ │ ├── debug.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── eventstreamapi │ │ │ │ ├── error.go │ │ │ │ ├── reader.go │ │ │ │ ├── shared.go │ │ │ │ ├── signer.go │ │ │ │ ├── stream_writer.go │ │ │ │ └── writer.go │ │ │ ├── header.go │ │ │ ├── header_value.go │ │ │ └── message.go │ │ │ ├── host.go │ │ │ ├── host_prefix.go │ │ │ ├── idempotency.go │ │ │ ├── json │ │ │ └── jsonutil │ │ │ │ ├── build.go │ │ │ │ └── unmarshal.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 │ │ │ ├── restxml │ │ │ └── restxml.go │ │ │ ├── timestamp.go │ │ │ ├── unmarshal.go │ │ │ ├── unmarshal_error.go │ │ │ └── xml │ │ │ └── xmlutil │ │ │ ├── build.go │ │ │ ├── sort.go │ │ │ ├── unmarshal.go │ │ │ └── xml_to_struct.go │ │ └── service │ │ ├── s3 │ │ ├── api.go │ │ ├── body_hash.go │ │ ├── bucket_location.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── doc_custom.go │ │ ├── endpoint.go │ │ ├── endpoint_errors.go │ │ ├── errors.go │ │ ├── host_style_bucket.go │ │ ├── internal │ │ │ └── arn │ │ │ │ ├── accesspoint_arn.go │ │ │ │ └── arn.go │ │ ├── platform_handlers.go │ │ ├── platform_handlers_go1.6.go │ │ ├── service.go │ │ ├── sse.go │ │ ├── statusok_error.go │ │ ├── unmarshal_error.go │ │ └── waiters.go │ │ └── sts │ │ ├── api.go │ │ ├── customizations.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── service.go │ │ └── stsiface │ │ └── interface.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── cespare │ └── xxhash │ │ └── v2 │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── testall.sh │ │ ├── xxhash.go │ │ ├── xxhash_amd64.s │ │ ├── xxhash_arm64.s │ │ ├── xxhash_asm.go │ │ ├── xxhash_other.go │ │ ├── xxhash_safe.go │ │ └── xxhash_unsafe.go ├── dgryski │ └── go-rendezvous │ │ ├── LICENSE │ │ └── rdv.go ├── dimfeld │ └── httptreemux │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── group.go │ │ ├── panichandler.go │ │ ├── path.go │ │ ├── router.go │ │ ├── tree.go │ │ ├── treemux_16.go │ │ ├── treemux_17.go │ │ ├── unescape_17.go │ │ └── unescape_18.go ├── gdey │ └── tbltest │ │ ├── .codeclimate.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── mycaller.go │ │ └── tbl.go ├── go-spatial │ ├── cobra │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completions.md │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ └── zsh_completions.go │ ├── geom │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bbox.go │ │ ├── circle.go │ │ ├── cmp │ │ │ ├── by_xy.go │ │ │ ├── cmp.go │ │ │ ├── compare.go │ │ │ ├── default_compare.go │ │ │ ├── empty.go │ │ │ └── helper.go │ │ ├── collection.go │ │ ├── debug.go │ │ ├── encoding │ │ │ ├── mvt │ │ │ │ ├── README.md │ │ │ │ ├── debug.go │ │ │ │ ├── decode.go │ │ │ │ ├── feature.go │ │ │ │ ├── layer.go │ │ │ │ ├── mvt.go │ │ │ │ ├── prepare.go │ │ │ │ ├── tile.go │ │ │ │ └── vector_tile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── vector_tile.go │ │ │ │ │ ├── vector_tile.pb.go │ │ │ │ │ └── vector_tile.proto │ │ │ ├── wkb │ │ │ │ ├── internal │ │ │ │ │ ├── consts │ │ │ │ │ │ └── consts.go │ │ │ │ │ ├── decode │ │ │ │ │ │ └── decode.go │ │ │ │ │ └── encode │ │ │ │ │ │ └── encode.go │ │ │ │ └── wkb.go │ │ │ └── wkt │ │ │ │ ├── errors.go │ │ │ │ ├── wkt.go │ │ │ │ ├── wkt_decode.go │ │ │ │ └── wkt_encode.go │ │ ├── errors.go │ │ ├── geom.go │ │ ├── line.go │ │ ├── line_string.go │ │ ├── line_stringm.go │ │ ├── line_stringms.go │ │ ├── line_strings.go │ │ ├── line_stringz.go │ │ ├── line_stringzm.go │ │ ├── line_stringzms.go │ │ ├── line_stringzs.go │ │ ├── multi_line_string.go │ │ ├── multi_line_stringm.go │ │ ├── multi_line_stringms.go │ │ ├── multi_line_strings.go │ │ ├── multi_line_stringz.go │ │ ├── multi_line_stringzm.go │ │ ├── multi_line_stringzms.go │ │ ├── multi_line_stringzs.go │ │ ├── multi_point.go │ │ ├── multi_pointm.go │ │ ├── multi_pointms.go │ │ ├── multi_points.go │ │ ├── multi_pointz.go │ │ ├── multi_pointzm.go │ │ ├── multi_pointzms.go │ │ ├── multi_pointzs.go │ │ ├── multi_polygon.go │ │ ├── point.go │ │ ├── pointm.go │ │ ├── pointms.go │ │ ├── points.go │ │ ├── pointz.go │ │ ├── pointzm.go │ │ ├── pointzms.go │ │ ├── pointzs.go │ │ ├── polygon.go │ │ ├── polygonm.go │ │ ├── polygonms.go │ │ ├── polygons.go │ │ ├── polygonz.go │ │ ├── polygonzm.go │ │ ├── polygonzms.go │ │ ├── polygonzs.go │ │ ├── set_geom.go │ │ ├── slippy │ │ │ ├── maths.go │ │ │ ├── tile.go │ │ │ └── tile_grid.go │ │ ├── triangle.go │ │ ├── utils.go │ │ └── winding │ │ │ ├── debug.go │ │ │ └── winding.go │ └── proj │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS.md │ │ ├── Convert.go │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── build.sh │ │ ├── core │ │ ├── ConvertLPToXY.go │ │ ├── Coordinate.go │ │ ├── Ellipsoid.go │ │ ├── Meridian.go │ │ ├── Operation.go │ │ ├── OperationDescription.go │ │ └── System.go │ │ ├── merror │ │ ├── Error.go │ │ └── error_strings.go │ │ ├── mlog │ │ └── Log.go │ │ ├── operations │ │ ├── Aea.go │ │ ├── Aeqd.go │ │ ├── Airy.go │ │ ├── August.go │ │ ├── Eqc.go │ │ ├── EtMerc.go │ │ ├── Merc.go │ │ └── common.go │ │ └── support │ │ ├── Aasincos.go │ │ ├── Adjlon.go │ │ ├── DMS.go │ │ ├── DatumsTable.go │ │ ├── EllipsoidsTable.go │ │ ├── MeridiansTable.go │ │ ├── Mlfn.go │ │ ├── Msfn.go │ │ ├── ParseDate.go │ │ ├── Phi2.go │ │ ├── ProjString.go │ │ ├── ProjectionsTable.go │ │ ├── Qsfn.go │ │ ├── Tsfn.go │ │ ├── UnitsTable.go │ │ └── constants.go ├── go-test │ └── deep │ │ ├── .gitignore │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ └── deep.go ├── gofrs │ └── uuid │ │ └── v5 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── fuzz.go │ │ ├── generator.go │ │ ├── sql.go │ │ └── uuid.go ├── golang │ ├── groupcache │ │ ├── LICENSE │ │ └── lru │ │ │ └── lru.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── jsonpb │ │ ├── decode.go │ │ ├── encode.go │ │ └── json.go │ │ ├── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ └── any.pb.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ └── duration.pb.go │ │ ├── timestamp.go │ │ └── timestamp │ │ └── timestamp.pb.go ├── google │ ├── go-cmp │ │ ├── LICENSE │ │ └── cmp │ │ │ ├── compare.go │ │ │ ├── export.go │ │ │ ├── internal │ │ │ ├── diff │ │ │ │ ├── debug_disable.go │ │ │ │ ├── debug_enable.go │ │ │ │ └── diff.go │ │ │ ├── flags │ │ │ │ └── flags.go │ │ │ ├── function │ │ │ │ └── func.go │ │ │ └── value │ │ │ │ ├── name.go │ │ │ │ ├── pointer.go │ │ │ │ └── sort.go │ │ │ ├── options.go │ │ │ ├── path.go │ │ │ ├── report.go │ │ │ ├── report_compare.go │ │ │ ├── report_references.go │ │ │ ├── report_reflect.go │ │ │ ├── report_slices.go │ │ │ ├── report_text.go │ │ │ └── report_value.go │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── googleapis │ ├── enterprise-certificate-proxy │ │ ├── LICENSE │ │ └── client │ │ │ ├── client.go │ │ │ └── util │ │ │ └── util.go │ └── gax-go │ │ └── v2 │ │ ├── .release-please-manifest.json │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── apierror │ │ ├── apierror.go │ │ └── internal │ │ │ └── proto │ │ │ ├── README.md │ │ │ ├── custom_error.pb.go │ │ │ ├── custom_error.proto │ │ │ ├── error.pb.go │ │ │ └── error.proto │ │ ├── call_option.go │ │ ├── content_type.go │ │ ├── gax.go │ │ ├── header.go │ │ ├── internal │ │ └── version.go │ │ ├── invoke.go │ │ ├── proto_json_stream.go │ │ └── release-please-config.json ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── jackc │ ├── pgpassfile │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── pgpass.go │ ├── pgservicefile │ │ ├── LICENSE │ │ ├── README.md │ │ └── pgservicefile.go │ ├── pgx-gofrs-uuid │ │ ├── LICENSE │ │ ├── integration_benchmark_test.go.erb │ │ ├── integration_benchmark_test_gen.sh │ │ └── uuid.go │ ├── pgx │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── batch.go │ │ │ ├── conn.go │ │ │ ├── copy_from.go │ │ │ ├── derived_types.go │ │ │ ├── doc.go │ │ │ ├── extended_query_builder.go │ │ │ ├── internal │ │ │ ├── iobufpool │ │ │ │ └── iobufpool.go │ │ │ ├── pgio │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ └── write.go │ │ │ ├── sanitize │ │ │ │ ├── benchmmark.sh │ │ │ │ └── sanitize.go │ │ │ └── stmtcache │ │ │ │ ├── lru_cache.go │ │ │ │ ├── stmtcache.go │ │ │ │ └── unlimited_cache.go │ │ │ ├── large_objects.go │ │ │ ├── named_args.go │ │ │ ├── pgconn │ │ │ ├── README.md │ │ │ ├── auth_scram.go │ │ │ ├── config.go │ │ │ ├── ctxwatch │ │ │ │ └── context_watcher.go │ │ │ ├── defaults.go │ │ │ ├── defaults_windows.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── bgreader │ │ │ │ │ └── bgreader.go │ │ │ ├── krb5.go │ │ │ └── pgconn.go │ │ │ ├── pgproto3 │ │ │ ├── README.md │ │ │ ├── authentication_cleartext_password.go │ │ │ ├── authentication_gss.go │ │ │ ├── authentication_gss_continue.go │ │ │ ├── authentication_md5_password.go │ │ │ ├── authentication_ok.go │ │ │ ├── authentication_sasl.go │ │ │ ├── authentication_sasl_continue.go │ │ │ ├── authentication_sasl_final.go │ │ │ ├── backend.go │ │ │ ├── backend_key_data.go │ │ │ ├── big_endian.go │ │ │ ├── bind.go │ │ │ ├── bind_complete.go │ │ │ ├── cancel_request.go │ │ │ ├── chunkreader.go │ │ │ ├── close.go │ │ │ ├── close_complete.go │ │ │ ├── command_complete.go │ │ │ ├── copy_both_response.go │ │ │ ├── copy_data.go │ │ │ ├── copy_done.go │ │ │ ├── copy_fail.go │ │ │ ├── copy_in_response.go │ │ │ ├── copy_out_response.go │ │ │ ├── data_row.go │ │ │ ├── describe.go │ │ │ ├── doc.go │ │ │ ├── empty_query_response.go │ │ │ ├── error_response.go │ │ │ ├── execute.go │ │ │ ├── flush.go │ │ │ ├── frontend.go │ │ │ ├── function_call.go │ │ │ ├── function_call_response.go │ │ │ ├── gss_enc_request.go │ │ │ ├── gss_response.go │ │ │ ├── no_data.go │ │ │ ├── notice_response.go │ │ │ ├── notification_response.go │ │ │ ├── parameter_description.go │ │ │ ├── parameter_status.go │ │ │ ├── parse.go │ │ │ ├── parse_complete.go │ │ │ ├── password_message.go │ │ │ ├── pgproto3.go │ │ │ ├── portal_suspended.go │ │ │ ├── query.go │ │ │ ├── ready_for_query.go │ │ │ ├── row_description.go │ │ │ ├── sasl_initial_response.go │ │ │ ├── sasl_response.go │ │ │ ├── ssl_request.go │ │ │ ├── startup_message.go │ │ │ ├── sync.go │ │ │ ├── terminate.go │ │ │ └── trace.go │ │ │ ├── pgtype │ │ │ ├── array.go │ │ │ ├── array_codec.go │ │ │ ├── bits.go │ │ │ ├── bool.go │ │ │ ├── box.go │ │ │ ├── builtin_wrappers.go │ │ │ ├── bytea.go │ │ │ ├── circle.go │ │ │ ├── composite.go │ │ │ ├── convert.go │ │ │ ├── date.go │ │ │ ├── doc.go │ │ │ ├── enum_codec.go │ │ │ ├── float4.go │ │ │ ├── float8.go │ │ │ ├── hstore.go │ │ │ ├── inet.go │ │ │ ├── int.go │ │ │ ├── int.go.erb │ │ │ ├── int_test.go.erb │ │ │ ├── integration_benchmark_test.go.erb │ │ │ ├── integration_benchmark_test_gen.sh │ │ │ ├── interval.go │ │ │ ├── json.go │ │ │ ├── jsonb.go │ │ │ ├── line.go │ │ │ ├── lseg.go │ │ │ ├── ltree.go │ │ │ ├── macaddr.go │ │ │ ├── multirange.go │ │ │ ├── numeric.go │ │ │ ├── path.go │ │ │ ├── pgtype.go │ │ │ ├── pgtype_default.go │ │ │ ├── point.go │ │ │ ├── polygon.go │ │ │ ├── qchar.go │ │ │ ├── range.go │ │ │ ├── range_codec.go │ │ │ ├── record_codec.go │ │ │ ├── register_default_pg_types.go │ │ │ ├── register_default_pg_types_disabled.go │ │ │ ├── text.go │ │ │ ├── text_format_only_codec.go │ │ │ ├── tid.go │ │ │ ├── time.go │ │ │ ├── timestamp.go │ │ │ ├── timestamptz.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uuid.go │ │ │ └── xml.go │ │ │ ├── pgxpool │ │ │ ├── batch_results.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── pool.go │ │ │ ├── rows.go │ │ │ ├── stat.go │ │ │ ├── tracer.go │ │ │ └── tx.go │ │ │ ├── rows.go │ │ │ ├── tracelog │ │ │ └── tracelog.go │ │ │ ├── tracer.go │ │ │ ├── tx.go │ │ │ └── values.go │ └── puddle │ │ └── v2 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── doc.go │ │ ├── internal │ │ └── genstack │ │ │ ├── gen_stack.go │ │ │ └── stack.go │ │ ├── log.go │ │ ├── nanotime.go │ │ ├── pool.go │ │ └── resource_list.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 ├── mattn │ ├── go-sqlite3 │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_math_functions.go │ │ ├── sqlite3_opt_os_trace.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_serialize.go │ │ ├── sqlite3_opt_serialize_omit.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go │ └── goveralls │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── gitinfo.go │ │ ├── gocover.go │ │ ├── goveralls.go │ │ └── renovate.json ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── pborman │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── prometheus │ ├── client_golang │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build_info_collector.go │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── get_pid.go │ │ │ ├── get_pid_gopherjs.go │ │ │ ├── go_collector.go │ │ │ ├── go_collector_go116.go │ │ │ ├── go_collector_latest.go │ │ │ ├── histogram.go │ │ │ ├── internal │ │ │ ├── almost_equal.go │ │ │ ├── difflib.go │ │ │ ├── go_collector_options.go │ │ │ ├── go_runtime_metrics.go │ │ │ └── metric.go │ │ │ ├── labels.go │ │ │ ├── metric.go │ │ │ ├── num_threads.go │ │ │ ├── num_threads_gopherjs.go │ │ │ ├── observer.go │ │ │ ├── process_collector.go │ │ │ ├── process_collector_js.go │ │ │ ├── process_collector_other.go │ │ │ ├── process_collector_windows.go │ │ │ ├── promhttp │ │ │ ├── delegator.go │ │ │ ├── http.go │ │ │ ├── instrument_client.go │ │ │ ├── instrument_server.go │ │ │ └── option.go │ │ │ ├── push │ │ │ └── push.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── timer.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ ├── vec.go │ │ │ └── wrap.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── go │ │ │ └── metrics.pb.go │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── openmetrics_create.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ └── value.go │ └── procfs │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── NOTICE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── arp.go │ │ ├── buddyinfo.go │ │ ├── cmdline.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_armx.go │ │ ├── cpuinfo_loong64.go │ │ ├── cpuinfo_mipsx.go │ │ ├── cpuinfo_others.go │ │ ├── cpuinfo_ppcx.go │ │ ├── cpuinfo_riscvx.go │ │ ├── cpuinfo_s390x.go │ │ ├── cpuinfo_x86.go │ │ ├── crypto.go │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fscache.go │ │ ├── internal │ │ ├── fs │ │ │ └── fs.go │ │ └── util │ │ │ ├── parse.go │ │ │ ├── readfile.go │ │ │ ├── sysreadfile.go │ │ │ ├── sysreadfile_compat.go │ │ │ └── valueparser.go │ │ ├── ipvs.go │ │ ├── kernel_random.go │ │ ├── loadavg.go │ │ ├── mdstat.go │ │ ├── meminfo.go │ │ ├── mountinfo.go │ │ ├── mountstats.go │ │ ├── net_conntrackstat.go │ │ ├── net_dev.go │ │ ├── net_ip_socket.go │ │ ├── net_protocols.go │ │ ├── net_sockstat.go │ │ ├── net_softnet.go │ │ ├── net_tcp.go │ │ ├── net_udp.go │ │ ├── net_unix.go │ │ ├── net_xfrm.go │ │ ├── netstat.go │ │ ├── proc.go │ │ ├── proc_cgroup.go │ │ ├── proc_cgroups.go │ │ ├── proc_environ.go │ │ ├── proc_fdinfo.go │ │ ├── proc_interrupts.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_maps.go │ │ ├── proc_netstat.go │ │ ├── proc_ns.go │ │ ├── proc_psi.go │ │ ├── proc_smaps.go │ │ ├── proc_snmp.go │ │ ├── proc_snmp6.go │ │ ├── proc_stat.go │ │ ├── proc_status.go │ │ ├── proc_sys.go │ │ ├── schedstat.go │ │ ├── slab.go │ │ ├── softirqs.go │ │ ├── stat.go │ │ ├── swaps.go │ │ ├── thread.go │ │ ├── ttar │ │ ├── vm.go │ │ └── zoneinfo.go ├── redis │ └── go-redis │ │ └── v9 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .prettierrc.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── acl_commands.go │ │ ├── bitmap_commands.go │ │ ├── cluster_commands.go │ │ ├── command.go │ │ ├── commands.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── gears_commands.go │ │ ├── generic_commands.go │ │ ├── geo_commands.go │ │ ├── hash_commands.go │ │ ├── hyperloglog_commands.go │ │ ├── internal │ │ ├── arg.go │ │ ├── hashtag │ │ │ └── hashtag.go │ │ ├── hscan │ │ │ ├── hscan.go │ │ │ └── structmap.go │ │ ├── internal.go │ │ ├── log.go │ │ ├── once.go │ │ ├── pool │ │ │ ├── conn.go │ │ │ ├── conn_check.go │ │ │ ├── conn_check_dummy.go │ │ │ ├── pool.go │ │ │ ├── pool_single.go │ │ │ └── pool_sticky.go │ │ ├── proto │ │ │ ├── reader.go │ │ │ ├── scan.go │ │ │ └── writer.go │ │ ├── rand │ │ │ └── rand.go │ │ ├── util.go │ │ └── util │ │ │ ├── safe.go │ │ │ ├── strconv.go │ │ │ ├── type.go │ │ │ └── unsafe.go │ │ ├── iterator.go │ │ ├── json.go │ │ ├── list_commands.go │ │ ├── options.go │ │ ├── osscluster.go │ │ ├── osscluster_commands.go │ │ ├── pipeline.go │ │ ├── probabilistic.go │ │ ├── pubsub.go │ │ ├── pubsub_commands.go │ │ ├── redis.go │ │ ├── result.go │ │ ├── ring.go │ │ ├── script.go │ │ ├── scripting_commands.go │ │ ├── search_commands.go │ │ ├── sentinel.go │ │ ├── set_commands.go │ │ ├── sortedset_commands.go │ │ ├── stream_commands.go │ │ ├── string_commands.go │ │ ├── timeseries_commands.go │ │ ├── tx.go │ │ ├── universal.go │ │ └── version.go ├── spf13 │ └── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go └── theckman │ └── goconstraint │ ├── LICENSE │ └── go1.8 │ └── gte │ ├── constraint.go │ └── go18.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ ├── tagencoding │ │ └── tagencoding.go │ └── traceinternals.go ├── metric │ ├── metricdata │ │ ├── doc.go │ │ ├── exemplar.go │ │ ├── label.go │ │ ├── metric.go │ │ ├── point.go │ │ ├── type_string.go │ │ └── unit.go │ └── metricproducer │ │ ├── manager.go │ │ └── producer.go ├── opencensus.go ├── plugin │ ├── ocgrpc │ │ ├── client.go │ │ ├── client_metrics.go │ │ ├── client_stats_handler.go │ │ ├── doc.go │ │ ├── server.go │ │ ├── server_metrics.go │ │ ├── server_stats_handler.go │ │ ├── stats_common.go │ │ └── trace_common.go │ └── ochttp │ │ ├── client.go │ │ ├── client_stats.go │ │ ├── doc.go │ │ ├── propagation │ │ └── b3 │ │ │ └── b3.go │ │ ├── route.go │ │ ├── server.go │ │ ├── span_annotating_client_trace.go │ │ ├── stats.go │ │ ├── trace.go │ │ └── wrapped_body.go ├── resource │ └── resource.go ├── stats │ ├── doc.go │ ├── internal │ │ └── record.go │ ├── measure.go │ ├── measure_float64.go │ ├── measure_int64.go │ ├── record.go │ ├── units.go │ └── view │ │ ├── aggregation.go │ │ ├── aggregation_data.go │ │ ├── collector.go │ │ ├── doc.go │ │ ├── export.go │ │ ├── view.go │ │ ├── view_to_metric.go │ │ ├── worker.go │ │ └── worker_commands.go ├── tag │ ├── context.go │ ├── doc.go │ ├── key.go │ ├── map.go │ ├── map_codec.go │ ├── metadata.go │ ├── profile_19.go │ ├── profile_not19.go │ └── validate.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── propagation │ └── propagation.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ └── pbkdf2 │ │ └── pbkdf2.go │ ├── exp │ ├── LICENSE │ ├── PATENTS │ ├── constraints │ │ └── constraints.go │ ├── maps │ │ └── maps.go │ └── slices │ │ ├── slices.go │ │ ├── sort.go │ │ ├── zsortfunc.go │ │ └── zsortordered.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ └── context.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ └── timeseries │ │ │ └── timeseries.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── oauth2 │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── authhandler │ │ └── authhandler.go │ ├── deviceauth.go │ ├── google │ │ ├── appengine.go │ │ ├── default.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── externalaccount │ │ │ ├── aws.go │ │ │ ├── basecredentials.go │ │ │ ├── executablecredsource.go │ │ │ ├── filecredsource.go │ │ │ ├── header.go │ │ │ ├── programmaticrefreshcredsource.go │ │ │ └── urlcredsource.go │ │ ├── google.go │ │ ├── internal │ │ │ ├── externalaccountauthorizeduser │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ ├── impersonate │ │ │ │ └── impersonate.go │ │ │ └── stsexchange │ │ │ │ ├── clientauth.go │ │ │ │ └── sts_exchange.go │ │ ├── jwt.go │ │ └── sdk.go │ ├── internal │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── jws │ │ └── jws.go │ ├── jwt │ │ └── jwt.go │ ├── oauth2.go │ ├── pkce.go │ ├── token.go │ └── transport.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── 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 │ ├── text │ ├── LICENSE │ ├── PATENTS │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── fold.go │ │ ├── icu.go │ │ ├── info.go │ │ ├── map.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── internal.go │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── match.go │ │ └── tag │ │ │ └── tag.go │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ ├── secure │ │ ├── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ │ └── precis │ │ │ ├── class.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ ├── transform │ │ └── transform.go │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ └── width │ │ ├── kind_string.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trieval.go │ │ └── width.go │ ├── tools │ ├── LICENSE │ ├── PATENTS │ └── cover │ │ └── profile.go │ └── xerrors │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── adaptor.go │ ├── codereview.cfg │ ├── doc.go │ ├── errors.go │ ├── fmt.go │ ├── format.go │ ├── frame.go │ ├── internal │ └── internal.go │ └── wrap.go ├── google.golang.org ├── api │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── googleapi │ │ ├── googleapi.go │ │ ├── transport │ │ │ └── apikey.go │ │ └── types.go │ ├── iamcredentials │ │ └── v1 │ │ │ ├── iamcredentials-api.json │ │ │ └── iamcredentials-gen.go │ ├── internal │ │ ├── cert │ │ │ ├── default_cert.go │ │ │ ├── enterprise_cert.go │ │ │ └── secureconnect_cert.go │ │ ├── conn_pool.go │ │ ├── creds.go │ │ ├── dca.go │ │ ├── gensupport │ │ │ ├── buffer.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── json.go │ │ │ ├── jsonfloat.go │ │ │ ├── media.go │ │ │ ├── params.go │ │ │ ├── resumable.go │ │ │ ├── retry.go │ │ │ ├── retryable_linux.go │ │ │ ├── send.go │ │ │ └── version.go │ │ ├── impersonate │ │ │ └── impersonate.go │ │ ├── settings.go │ │ ├── third_party │ │ │ └── uritemplates │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── uritemplates.go │ │ │ │ └── utils.go │ │ └── version.go │ ├── iterator │ │ └── iterator.go │ ├── option │ │ ├── internaloption │ │ │ └── internaloption.go │ │ └── option.go │ ├── storage │ │ └── v1 │ │ │ ├── storage-api.json │ │ │ └── storage-gen.go │ └── transport │ │ ├── dial.go │ │ ├── doc.go │ │ ├── grpc │ │ ├── dial.go │ │ ├── dial_appengine.go │ │ ├── dial_socketopt.go │ │ └── pool.go │ │ └── http │ │ ├── dial.go │ │ ├── dial_appengine.go │ │ └── internal │ │ └── propagation │ │ └── http.go ├── appengine │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── appengine.go │ ├── appengine_vm.go │ ├── errors.go │ ├── identity.go │ ├── internal │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── app_id.go │ │ ├── app_identity │ │ │ ├── app_identity_service.pb.go │ │ │ └── app_identity_service.proto │ │ ├── base │ │ │ ├── api_base.pb.go │ │ │ └── api_base.proto │ │ ├── datastore │ │ │ ├── datastore_v3.pb.go │ │ │ └── datastore_v3.proto │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_flex.go │ │ ├── identity_vm.go │ │ ├── internal.go │ │ ├── log │ │ │ ├── log_service.pb.go │ │ │ └── log_service.proto │ │ ├── main.go │ │ ├── main_common.go │ │ ├── main_vm.go │ │ ├── metadata.go │ │ ├── modules │ │ │ ├── modules_service.pb.go │ │ │ └── modules_service.proto │ │ ├── net.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── socket │ │ │ ├── socket_service.pb.go │ │ │ └── socket_service.proto │ │ ├── transaction.go │ │ └── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ ├── namespace.go │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ ├── timeout.go │ ├── travis_install.sh │ ├── travis_test.sh │ └── urlfetch │ │ └── urlfetch.go ├── genproto │ ├── LICENSE │ └── googleapis │ │ ├── api │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ └── launch_stage.pb.go │ │ ├── iam │ │ └── v1 │ │ │ └── alias.go │ │ ├── rpc │ │ ├── code │ │ │ └── code.pb.go │ │ ├── errdetails │ │ │ └── error_details.pb.go │ │ └── status │ │ │ └── status.pb.go │ │ └── type │ │ ├── date │ │ └── date.pb.go │ │ └── expr │ │ └── expr.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── grpclb │ │ │ ├── grpc_lb_v1 │ │ │ │ ├── load_balancer.pb.go │ │ │ │ └── load_balancer_grpc.pb.go │ │ │ ├── grpclb.go │ │ │ ├── grpclb_config.go │ │ │ ├── grpclb_picker.go │ │ │ ├── grpclb_remote_balancer.go │ │ │ ├── grpclb_util.go │ │ │ └── state │ │ │ │ └── state.go │ │ └── roundrobin │ │ │ └── roundrobin.go │ ├── balancer_conn_wrappers.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codegen.sh │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── alts │ │ │ ├── alts.go │ │ │ ├── internal │ │ │ │ ├── authinfo │ │ │ │ │ └── authinfo.go │ │ │ │ ├── common.go │ │ │ │ ├── conn │ │ │ │ │ ├── aeadrekey.go │ │ │ │ │ ├── aes128gcm.go │ │ │ │ │ ├── aes128gcmrekey.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── counter.go │ │ │ │ │ ├── record.go │ │ │ │ │ └── utils.go │ │ │ │ ├── handshaker │ │ │ │ │ ├── handshaker.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ └── proto │ │ │ │ │ └── grpc_gcp │ │ │ │ │ ├── altscontext.pb.go │ │ │ │ │ ├── handshaker.pb.go │ │ │ │ │ ├── handshaker_grpc.pb.go │ │ │ │ │ └── transport_security_common.pb.go │ │ │ └── utils.go │ │ ├── credentials.go │ │ ├── google │ │ │ ├── google.go │ │ │ └── xds.go │ │ ├── insecure │ │ │ └── insecure.go │ │ ├── oauth │ │ │ └── oauth.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ └── proto │ │ │ └── proto.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── idle.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── id.go │ │ │ ├── logging.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_nonlinux.go │ │ │ ├── util_linux.go │ │ │ └── util_nonlinux.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── googlecloud │ │ │ ├── googlecloud.go │ │ │ ├── manufacturer.go │ │ │ ├── manufacturer_linux.go │ │ │ └── manufacturer_windows.go │ │ ├── grpclog │ │ │ ├── grpclog.go │ │ │ └── prefixLogger.go │ │ ├── grpcrand │ │ │ └── grpcrand.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── oncefunc.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ └── transport.go │ │ └── xds_handshake_cluster.go │ ├── keepalive │ │ └── keepalive.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── preloader.go │ ├── regenerate.sh │ ├── resolver │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── version.go │ └── vet.sh └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ ├── errors.go │ │ ├── is_go112.go │ │ └── is_go113.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ └── placeholder.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_map_go111.go │ │ ├── codec_map_go112.go │ │ ├── codec_message.go │ │ ├── codec_messageset.go │ │ ├── codec_reflect.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── validate.go │ │ └── weak.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ ├── strings_pure.go │ │ ├── strings_unsafe_go120.go │ │ └── strings_unsafe_go121.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ └── wrappers.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_pure.go │ │ ├── value_union.go │ │ ├── value_unsafe_go120.go │ │ └── value_unsafe_go121.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ ├── go_features.pb.go │ └── go_features.proto │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ ├── emptypb │ └── empty.pb.go │ ├── fieldmaskpb │ └── field_mask.pb.go │ └── timestamppb │ └── timestamp.pb.go ├── gopkg.in └── go-playground │ └── colors.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── colors.go │ ├── hex.go │ ├── rgb.go │ └── rgba.go └── modules.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/actions/tegola-setup-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/actions/tegola-setup-env/action.yml -------------------------------------------------------------------------------- /.github/actions/tegola-upload-path/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/actions/tegola-upload-path/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-artifact/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/actions/upload-artifact/action.yml -------------------------------------------------------------------------------- /.github/workflows/on_pr_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/workflows/on_pr_push.yml -------------------------------------------------------------------------------- /.github/workflows/on_release_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.github/workflows/on_release_publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/README.md -------------------------------------------------------------------------------- /atlas/atlas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/atlas.go -------------------------------------------------------------------------------- /atlas/atlas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/atlas_test.go -------------------------------------------------------------------------------- /atlas/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/cache.go -------------------------------------------------------------------------------- /atlas/cache_azblob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/cache_azblob.go -------------------------------------------------------------------------------- /atlas/cache_gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/cache_gcs.go -------------------------------------------------------------------------------- /atlas/cache_init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/cache_init_test.go -------------------------------------------------------------------------------- /atlas/cache_redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/cache_redis.go -------------------------------------------------------------------------------- /atlas/cache_s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/cache_s3.go -------------------------------------------------------------------------------- /atlas/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/errors.go -------------------------------------------------------------------------------- /atlas/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/layer.go -------------------------------------------------------------------------------- /atlas/layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/layer_test.go -------------------------------------------------------------------------------- /atlas/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/map.go -------------------------------------------------------------------------------- /atlas/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/map_test.go -------------------------------------------------------------------------------- /atlas/observer_prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/observer_prometheus.go -------------------------------------------------------------------------------- /atlas/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/provider.go -------------------------------------------------------------------------------- /atlas/provider_gpkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/provider_gpkg.go -------------------------------------------------------------------------------- /atlas/provider_hana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/provider_hana.go -------------------------------------------------------------------------------- /atlas/provider_postgis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/atlas/provider_postgis.go -------------------------------------------------------------------------------- /basic/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/clone.go -------------------------------------------------------------------------------- /basic/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/collection.go -------------------------------------------------------------------------------- /basic/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/g.go -------------------------------------------------------------------------------- /basic/geometry_math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/geometry_math.go -------------------------------------------------------------------------------- /basic/go_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/go_string.go -------------------------------------------------------------------------------- /basic/is_valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/is_valid.go -------------------------------------------------------------------------------- /basic/is_valid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/is_valid_test.go -------------------------------------------------------------------------------- /basic/json_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/json_marshal.go -------------------------------------------------------------------------------- /basic/json_marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/json_marshal_test.go -------------------------------------------------------------------------------- /basic/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/line.go -------------------------------------------------------------------------------- /basic/line_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/line_test.go -------------------------------------------------------------------------------- /basic/maths/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/maths/clean.go -------------------------------------------------------------------------------- /basic/maths/clean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/maths/clean_test.go -------------------------------------------------------------------------------- /basic/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/point.go -------------------------------------------------------------------------------- /basic/polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/basic/polygon.go -------------------------------------------------------------------------------- /cache/azblob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/azblob/README.md -------------------------------------------------------------------------------- /cache/azblob/azblob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/azblob/azblob.go -------------------------------------------------------------------------------- /cache/azblob/azblob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/azblob/azblob_test.go -------------------------------------------------------------------------------- /cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/cache.go -------------------------------------------------------------------------------- /cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/cache_test.go -------------------------------------------------------------------------------- /cache/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/errors.go -------------------------------------------------------------------------------- /cache/file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/file/README.md -------------------------------------------------------------------------------- /cache/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/file/file.go -------------------------------------------------------------------------------- /cache/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/file/file_test.go -------------------------------------------------------------------------------- /cache/file/testfiles/tegola-cache/0/1/12: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /cache/gcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/gcs/README.md -------------------------------------------------------------------------------- /cache/gcs/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/gcs/gcs.go -------------------------------------------------------------------------------- /cache/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/memory/README.md -------------------------------------------------------------------------------- /cache/memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/memory/memory.go -------------------------------------------------------------------------------- /cache/memory/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/memory/memory_test.go -------------------------------------------------------------------------------- /cache/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/redis/README.md -------------------------------------------------------------------------------- /cache/redis/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/redis/errors.go -------------------------------------------------------------------------------- /cache/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/redis/redis.go -------------------------------------------------------------------------------- /cache/redis/redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/redis/redis_test.go -------------------------------------------------------------------------------- /cache/s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/s3/README.md -------------------------------------------------------------------------------- /cache/s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/s3/s3.go -------------------------------------------------------------------------------- /cache/s3/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cache/s3/s3_test.go -------------------------------------------------------------------------------- /ci/build_nonrelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ci/build_nonrelease.sh -------------------------------------------------------------------------------- /ci/cat_version_envs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ci/cat_version_envs.go -------------------------------------------------------------------------------- /cmd/internal/register/caches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/caches.go -------------------------------------------------------------------------------- /cmd/internal/register/caches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/caches_test.go -------------------------------------------------------------------------------- /cmd/internal/register/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/errors.go -------------------------------------------------------------------------------- /cmd/internal/register/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/maps.go -------------------------------------------------------------------------------- /cmd/internal/register/maps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/maps_test.go -------------------------------------------------------------------------------- /cmd/internal/register/observers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/observers.go -------------------------------------------------------------------------------- /cmd/internal/register/providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/providers.go -------------------------------------------------------------------------------- /cmd/internal/register/providers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/internal/register/providers_test.go -------------------------------------------------------------------------------- /cmd/tegola/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/.gitignore -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/cache.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/flags.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/format.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/seed_purge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/seed_purge.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/slippy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/slippy_test.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/testdata/.gitignore: -------------------------------------------------------------------------------- 1 | *.generated.debug.stilelist -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/testdata/list.tiles: -------------------------------------------------------------------------------- 1 | 14/300/781 2 | -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/tile_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/tile_list.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/tile_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/tile_name.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/cache/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/cache/worker.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/root.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/server.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/tile_name_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/tile_name_format.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/tile_name_format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/tile_name_format_test.go -------------------------------------------------------------------------------- /cmd/tegola/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/cmd/version.go -------------------------------------------------------------------------------- /cmd/tegola/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/main.go -------------------------------------------------------------------------------- /cmd/tegola/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola/pprof.go -------------------------------------------------------------------------------- /cmd/tegola_lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola_lambda/README.md -------------------------------------------------------------------------------- /cmd/tegola_lambda/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/cmd/tegola_lambda/main.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/errors.go -------------------------------------------------------------------------------- /config/testdata/empty_proxy_protocol.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/testdata/empty_proxy_protocol.toml -------------------------------------------------------------------------------- /config/testdata/happy_path.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/testdata/happy_path.toml -------------------------------------------------------------------------------- /config/testdata/missing_env.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/testdata/missing_env.toml -------------------------------------------------------------------------------- /config/testdata/test_env.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/config/testdata/test_env.toml -------------------------------------------------------------------------------- /container/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/list/list.go -------------------------------------------------------------------------------- /container/list/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/list/list_test.go -------------------------------------------------------------------------------- /container/list/point/list/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/list/point/list/point.go -------------------------------------------------------------------------------- /container/list/point/list/point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/list/point/list/point_test.go -------------------------------------------------------------------------------- /container/singlelist/element.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/element.go -------------------------------------------------------------------------------- /container/singlelist/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/list.go -------------------------------------------------------------------------------- /container/singlelist/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/list_test.go -------------------------------------------------------------------------------- /container/singlelist/mycaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/mycaller.go -------------------------------------------------------------------------------- /container/singlelist/point/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/point/list/list.go -------------------------------------------------------------------------------- /container/singlelist/point/list/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/point/list/point.go -------------------------------------------------------------------------------- /container/singlelist/sentinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/container/singlelist/sentinel.go -------------------------------------------------------------------------------- /dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/dict/dict.go -------------------------------------------------------------------------------- /dict/dict_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/dict/dict_test.go -------------------------------------------------------------------------------- /dict/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/dict/types.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/papers/14_cg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/docs/papers/14_cg.pdf -------------------------------------------------------------------------------- /docs/screenshots/built-in-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/docs/screenshots/built-in-viewer.png -------------------------------------------------------------------------------- /draw/svg/minmax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/draw/svg/minmax.go -------------------------------------------------------------------------------- /draw/svg/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/draw/svg/svg.go -------------------------------------------------------------------------------- /example/tile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/example/tile.go -------------------------------------------------------------------------------- /geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/geometry.go -------------------------------------------------------------------------------- /geometry_math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/geometry_math.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/go.sum -------------------------------------------------------------------------------- /gostring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/gostring.go -------------------------------------------------------------------------------- /internal/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/build.go -------------------------------------------------------------------------------- /internal/build/cgo.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/cgo.generated.go -------------------------------------------------------------------------------- /internal/build/no_azblob_cache.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/no_azblob_cache.generated.go -------------------------------------------------------------------------------- /internal/build/no_gpkg_provider.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/no_gpkg_provider.generated.go -------------------------------------------------------------------------------- /internal/build/no_redis_cache.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/no_redis_cache.generated.go -------------------------------------------------------------------------------- /internal/build/no_s3_cache.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/no_s3_cache.generated.go -------------------------------------------------------------------------------- /internal/build/no_viewer.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/no_viewer.generated.go -------------------------------------------------------------------------------- /internal/build/no_viewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/no_viewer.go -------------------------------------------------------------------------------- /internal/build/not_cgo.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/not_cgo.generated.go -------------------------------------------------------------------------------- /internal/build/not_no_s3_cache.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/not_no_s3_cache.generated.go -------------------------------------------------------------------------------- /internal/build/not_no_viewer.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/not_no_viewer.generated.go -------------------------------------------------------------------------------- /internal/build/not_pprof.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/not_pprof.generated.go -------------------------------------------------------------------------------- /internal/build/pprof.generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/pprof.generated.go -------------------------------------------------------------------------------- /internal/build/tags/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/tags/tags.go -------------------------------------------------------------------------------- /internal/build/viewer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/build/viewer.go -------------------------------------------------------------------------------- /internal/cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/cmd/README.md -------------------------------------------------------------------------------- /internal/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/cmd/main.go -------------------------------------------------------------------------------- /internal/convert/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/convert/convert.go -------------------------------------------------------------------------------- /internal/convert/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/convert/convert_test.go -------------------------------------------------------------------------------- /internal/convert/math_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/convert/math_point.go -------------------------------------------------------------------------------- /internal/env/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/dict.go -------------------------------------------------------------------------------- /internal/env/dict_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/dict_test.go -------------------------------------------------------------------------------- /internal/env/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/parse.go -------------------------------------------------------------------------------- /internal/env/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/parse_test.go -------------------------------------------------------------------------------- /internal/env/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/types.go -------------------------------------------------------------------------------- /internal/env/types_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/types_internal_test.go -------------------------------------------------------------------------------- /internal/env/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/env/types_test.go -------------------------------------------------------------------------------- /internal/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/log/README.md -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/log/log_test.go -------------------------------------------------------------------------------- /internal/observer/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/observer/null.go -------------------------------------------------------------------------------- /internal/p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/p/README.md -------------------------------------------------------------------------------- /internal/p/p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/p/p.go -------------------------------------------------------------------------------- /internal/ttools/getenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/ttools/getenv.go -------------------------------------------------------------------------------- /internal/ttools/getenv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/ttools/getenv_test.go -------------------------------------------------------------------------------- /internal/ttools/skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/internal/ttools/skip.go -------------------------------------------------------------------------------- /isequal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/isequal.go -------------------------------------------------------------------------------- /isequal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/isequal_test.go -------------------------------------------------------------------------------- /mapbox/style/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mapbox/style/layer.go -------------------------------------------------------------------------------- /mapbox/style/light.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mapbox/style/light.go -------------------------------------------------------------------------------- /mapbox/style/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mapbox/style/source.go -------------------------------------------------------------------------------- /mapbox/style/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mapbox/style/style.go -------------------------------------------------------------------------------- /mapbox/style/transition.go: -------------------------------------------------------------------------------- 1 | package style 2 | 3 | type Transition struct{} 4 | -------------------------------------------------------------------------------- /mapbox/tilejson/tilejson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mapbox/tilejson/tilejson.go -------------------------------------------------------------------------------- /maths/clip/clip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/clip.go -------------------------------------------------------------------------------- /maths/clip/internal/draw/draw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/internal/draw/draw.go -------------------------------------------------------------------------------- /maths/clip/internal/draw/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/internal/draw/svg.go -------------------------------------------------------------------------------- /maths/clip/intersect/go_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/intersect/go_string.go -------------------------------------------------------------------------------- /maths/clip/intersect/intersect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/intersect/intersect.go -------------------------------------------------------------------------------- /maths/clip/intersect/intersect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/intersect/intersect_test.go -------------------------------------------------------------------------------- /maths/clip/intersect/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/intersect/point.go -------------------------------------------------------------------------------- /maths/clip/intersect/walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/intersect/walker.go -------------------------------------------------------------------------------- /maths/clip/linestring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/linestring_test.go -------------------------------------------------------------------------------- /maths/clip/region/axis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/region/axis.go -------------------------------------------------------------------------------- /maths/clip/region/axis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/region/axis_test.go -------------------------------------------------------------------------------- /maths/clip/region/go_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/region/go_string.go -------------------------------------------------------------------------------- /maths/clip/region/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/region/region.go -------------------------------------------------------------------------------- /maths/clip/region/region_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/region/region_test.go -------------------------------------------------------------------------------- /maths/clip/subject/go_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/subject/go_string.go -------------------------------------------------------------------------------- /maths/clip/subject/pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/subject/pair.go -------------------------------------------------------------------------------- /maths/clip/subject/subject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/subject/subject.go -------------------------------------------------------------------------------- /maths/clip/subject/subject_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/clip/subject/subject_test.go -------------------------------------------------------------------------------- /maths/hitmap/hitmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/hitmap/hitmap.go -------------------------------------------------------------------------------- /maths/hitmap/hitmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/hitmap/hitmap_test.go -------------------------------------------------------------------------------- /maths/hitmap/hitmap_y.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/hitmap/hitmap_y.go -------------------------------------------------------------------------------- /maths/internal/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/internal/assert/assert.go -------------------------------------------------------------------------------- /maths/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/line.go -------------------------------------------------------------------------------- /maths/line_intersect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/line_intersect.go -------------------------------------------------------------------------------- /maths/lines/lines.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/lines/lines.go -------------------------------------------------------------------------------- /maths/makevalid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/.gitignore -------------------------------------------------------------------------------- /maths/makevalid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/README.md -------------------------------------------------------------------------------- /maths/makevalid/_docs/makevalid.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/_docs/makevalid.sketch -------------------------------------------------------------------------------- /maths/makevalid/_docs/makevalid_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/_docs/makevalid_columns.png -------------------------------------------------------------------------------- /maths/makevalid/_docs/makevalid_hitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/_docs/makevalid_hitmap.png -------------------------------------------------------------------------------- /maths/makevalid/_docs/makevalid_hitmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/_docs/makevalid_hitmap.svg -------------------------------------------------------------------------------- /maths/makevalid/_docs/makevalid_starting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/_docs/makevalid_starting.png -------------------------------------------------------------------------------- /maths/makevalid/_docs/makevalid_stitching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/_docs/makevalid_stitching.png -------------------------------------------------------------------------------- /maths/makevalid/colptmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/colptmap.go -------------------------------------------------------------------------------- /maths/makevalid/construct_polygon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/construct_polygon_test.go -------------------------------------------------------------------------------- /maths/makevalid/construct_ring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/construct_ring_test.go -------------------------------------------------------------------------------- /maths/makevalid/debug.go: -------------------------------------------------------------------------------- 1 | package makevalid 2 | 3 | const debug = false 4 | -------------------------------------------------------------------------------- /maths/makevalid/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/main.go -------------------------------------------------------------------------------- /maths/makevalid/makevalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/makevalid.go -------------------------------------------------------------------------------- /maths/makevalid/makevalid_splitpts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/makevalid_splitpts_test.go -------------------------------------------------------------------------------- /maths/makevalid/makevalid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/makevalid_test.go -------------------------------------------------------------------------------- /maths/makevalid/plyg/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/plyg/builder.go -------------------------------------------------------------------------------- /maths/makevalid/plyg/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/plyg/builder_test.go -------------------------------------------------------------------------------- /maths/makevalid/plyg/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/plyg/debug.go -------------------------------------------------------------------------------- /maths/makevalid/plyg/gettriangle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/plyg/gettriangle_test.go -------------------------------------------------------------------------------- /maths/makevalid/plyg/ring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/plyg/ring.go -------------------------------------------------------------------------------- /maths/makevalid/plyg/ring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/makevalid/plyg/ring_test.go -------------------------------------------------------------------------------- /maths/maths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/maths.go -------------------------------------------------------------------------------- /maths/maths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/maths_test.go -------------------------------------------------------------------------------- /maths/maths_windingorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/maths_windingorder_test.go -------------------------------------------------------------------------------- /maths/points/byxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/byxy.go -------------------------------------------------------------------------------- /maths/points/paired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/paired.go -------------------------------------------------------------------------------- /maths/points/points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/points.go -------------------------------------------------------------------------------- /maths/points/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/reverse.go -------------------------------------------------------------------------------- /maths/points/rotate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/rotate.go -------------------------------------------------------------------------------- /maths/points/sorted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/sorted.go -------------------------------------------------------------------------------- /maths/points/sorted_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/points/sorted_test.go -------------------------------------------------------------------------------- /maths/rectangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/rectangle.go -------------------------------------------------------------------------------- /maths/simplify/douglas_peucker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/simplify/douglas_peucker.go -------------------------------------------------------------------------------- /maths/simplify/simplify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/simplify/simplify.go -------------------------------------------------------------------------------- /maths/testdata/issue_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/testdata/issue_1.txt -------------------------------------------------------------------------------- /maths/testdata/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/testdata/test1.txt -------------------------------------------------------------------------------- /maths/testhelpers/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/testhelpers/main.go -------------------------------------------------------------------------------- /maths/triangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/triangle.go -------------------------------------------------------------------------------- /maths/validate/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/validate/Readme.md -------------------------------------------------------------------------------- /maths/validate/testdata/invalid_polygon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/validate/testdata/invalid_polygon.txt -------------------------------------------------------------------------------- /maths/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/validate/validate.go -------------------------------------------------------------------------------- /maths/webmercator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/webmercator/main.go -------------------------------------------------------------------------------- /maths/webmercator/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/webmercator/pseudo.go -------------------------------------------------------------------------------- /maths/windingorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/maths/windingorder.go -------------------------------------------------------------------------------- /mvtprovider/hana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mvtprovider/hana/README.md -------------------------------------------------------------------------------- /mvtprovider/hana/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mvtprovider/hana/doc.go -------------------------------------------------------------------------------- /mvtprovider/postgis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mvtprovider/postgis/README.md -------------------------------------------------------------------------------- /mvtprovider/postgis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/mvtprovider/postgis/doc.go -------------------------------------------------------------------------------- /observability/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/none.go -------------------------------------------------------------------------------- /observability/observability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/observability.go -------------------------------------------------------------------------------- /observability/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/prometheus/README.md -------------------------------------------------------------------------------- /observability/prometheus/build_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/prometheus/build_info.go -------------------------------------------------------------------------------- /observability/prometheus/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/prometheus/cache.go -------------------------------------------------------------------------------- /observability/prometheus/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/prometheus/http.go -------------------------------------------------------------------------------- /observability/prometheus/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/observability/prometheus/prometheus.go -------------------------------------------------------------------------------- /projections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/projections.go -------------------------------------------------------------------------------- /provider/debug/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/debug/debug.go -------------------------------------------------------------------------------- /provider/debug/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/debug/layer.go -------------------------------------------------------------------------------- /provider/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/errors.go -------------------------------------------------------------------------------- /provider/feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/feature.go -------------------------------------------------------------------------------- /provider/gpkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/README.md -------------------------------------------------------------------------------- /provider/gpkg/binary_header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/binary_header.go -------------------------------------------------------------------------------- /provider/gpkg/binary_header_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/binary_header_internal_test.go -------------------------------------------------------------------------------- /provider/gpkg/cgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/cgo_test.go -------------------------------------------------------------------------------- /provider/gpkg/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/errors.go -------------------------------------------------------------------------------- /provider/gpkg/gpkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/gpkg.go -------------------------------------------------------------------------------- /provider/gpkg/gpkg_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/gpkg_register.go -------------------------------------------------------------------------------- /provider/gpkg/gpkg_register_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/gpkg_register_internal_test.go -------------------------------------------------------------------------------- /provider/gpkg/gpkg_register_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/gpkg_register_nocgo.go -------------------------------------------------------------------------------- /provider/gpkg/gpkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/gpkg_test.go -------------------------------------------------------------------------------- /provider/gpkg/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/layer.go -------------------------------------------------------------------------------- /provider/gpkg/nocgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/nocgo_test.go -------------------------------------------------------------------------------- /provider/gpkg/testdata/apeldoorn.gpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/testdata/apeldoorn.gpkg -------------------------------------------------------------------------------- /provider/gpkg/testdata/config_athens.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/testdata/config_athens.toml -------------------------------------------------------------------------------- /provider/gpkg/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/util.go -------------------------------------------------------------------------------- /provider/gpkg/util_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/gpkg/util_internal_test.go -------------------------------------------------------------------------------- /provider/hana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/README.md -------------------------------------------------------------------------------- /provider/hana/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/debug.go -------------------------------------------------------------------------------- /provider/hana/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/error.go -------------------------------------------------------------------------------- /provider/hana/hana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/hana.go -------------------------------------------------------------------------------- /provider/hana/hana_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/hana_test.go -------------------------------------------------------------------------------- /provider/hana/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/layer.go -------------------------------------------------------------------------------- /provider/hana/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/register.go -------------------------------------------------------------------------------- /provider/hana/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/util.go -------------------------------------------------------------------------------- /provider/hana/util_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/hana/util_internal_test.go -------------------------------------------------------------------------------- /provider/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/layer.go -------------------------------------------------------------------------------- /provider/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/map.go -------------------------------------------------------------------------------- /provider/map_layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/map_layer.go -------------------------------------------------------------------------------- /provider/mvt_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/mvt_provider.go -------------------------------------------------------------------------------- /provider/paramater_decoders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/paramater_decoders.go -------------------------------------------------------------------------------- /provider/postgis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/README.md -------------------------------------------------------------------------------- /provider/postgis/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/debug.go -------------------------------------------------------------------------------- /provider/postgis/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/error.go -------------------------------------------------------------------------------- /provider/postgis/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/layer.go -------------------------------------------------------------------------------- /provider/postgis/postgis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/postgis.go -------------------------------------------------------------------------------- /provider/postgis/postgis_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/postgis_internal_test.go -------------------------------------------------------------------------------- /provider/postgis/postgis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/postgis_test.go -------------------------------------------------------------------------------- /provider/postgis/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/register.go -------------------------------------------------------------------------------- /provider/postgis/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/util.go -------------------------------------------------------------------------------- /provider/postgis/util_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/postgis/util_internal_test.go -------------------------------------------------------------------------------- /provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/provider.go -------------------------------------------------------------------------------- /provider/provider_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/provider_internal_test.go -------------------------------------------------------------------------------- /provider/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/provider_test.go -------------------------------------------------------------------------------- /provider/query_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/query_parameter.go -------------------------------------------------------------------------------- /provider/query_parameter_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/query_parameter_value.go -------------------------------------------------------------------------------- /provider/query_parameter_value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/query_parameter_value_test.go -------------------------------------------------------------------------------- /provider/test/emptycollection/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/test/emptycollection/layer.go -------------------------------------------------------------------------------- /provider/test/emptycollection/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/test/emptycollection/provider.go -------------------------------------------------------------------------------- /provider/test/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/test/layer.go -------------------------------------------------------------------------------- /provider/test/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/test/provider.go -------------------------------------------------------------------------------- /provider/testdata/11_358_827.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/provider/testdata/11_358_827.pbf -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/README.md -------------------------------------------------------------------------------- /server/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/errors.go -------------------------------------------------------------------------------- /server/handle_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_capabilities.go -------------------------------------------------------------------------------- /server/handle_capabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_capabilities_test.go -------------------------------------------------------------------------------- /server/handle_map_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_capabilities.go -------------------------------------------------------------------------------- /server/handle_map_capabilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_capabilities_test.go -------------------------------------------------------------------------------- /server/handle_map_layer_zxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_layer_zxy.go -------------------------------------------------------------------------------- /server/handle_map_layer_zxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_layer_zxy_test.go -------------------------------------------------------------------------------- /server/handle_map_style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_style.go -------------------------------------------------------------------------------- /server/handle_map_style_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_style_internal_test.go -------------------------------------------------------------------------------- /server/handle_map_style_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/handle_map_style_test.go -------------------------------------------------------------------------------- /server/middleware_gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_gzip.go -------------------------------------------------------------------------------- /server/middleware_gzip_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_gzip_internal_test.go -------------------------------------------------------------------------------- /server/middleware_gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_gzip_test.go -------------------------------------------------------------------------------- /server/middleware_headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_headers.go -------------------------------------------------------------------------------- /server/middleware_headers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_headers_test.go -------------------------------------------------------------------------------- /server/middleware_tile_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_tile_cache.go -------------------------------------------------------------------------------- /server/middleware_tile_cache_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_tile_cache_internal_test.go -------------------------------------------------------------------------------- /server/middleware_tile_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/middleware_tile_cache_test.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/server.go -------------------------------------------------------------------------------- /server/server_cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/server_cors_test.go -------------------------------------------------------------------------------- /server/server_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/server_internal_test.go -------------------------------------------------------------------------------- /server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/server_test.go -------------------------------------------------------------------------------- /server/testcert/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/testcert/README.txt -------------------------------------------------------------------------------- /server/testcert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/testcert/cert.pem -------------------------------------------------------------------------------- /server/testcert/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/testcert/key.pem -------------------------------------------------------------------------------- /server/tile_url_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/tile_url_template.go -------------------------------------------------------------------------------- /server/tile_url_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/tile_url_template_test.go -------------------------------------------------------------------------------- /server/viewer_disabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/viewer_disabled.go -------------------------------------------------------------------------------- /server/viewer_embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/server/viewer_embed.go -------------------------------------------------------------------------------- /server/viewer_gen.go: -------------------------------------------------------------------------------- 1 | //go:generate go run ../ui/build.go 2 | 3 | package server 4 | -------------------------------------------------------------------------------- /testdata/postgis/migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/testdata/postgis/migration.sh -------------------------------------------------------------------------------- /testdata/postgis/tegola.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/testdata/postgis/tegola.dump -------------------------------------------------------------------------------- /tile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/tile.go -------------------------------------------------------------------------------- /tile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/tile_test.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/tools/tools.go -------------------------------------------------------------------------------- /ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/.prettierrc -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/babel.config.js -------------------------------------------------------------------------------- /ui/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/build.go -------------------------------------------------------------------------------- /ui/dist/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/embed.go -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/public/favicon.ico -------------------------------------------------------------------------------- /ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/App.vue -------------------------------------------------------------------------------- /ui/src/assets/svg/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/assets/svg/arrow.svg -------------------------------------------------------------------------------- /ui/src/components/LeftNav/LeftNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/components/LeftNav/LeftNav.vue -------------------------------------------------------------------------------- /ui/src/components/LeftNav/MapLayerRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/components/LeftNav/MapLayerRow.vue -------------------------------------------------------------------------------- /ui/src/components/LeftNav/MapRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/components/LeftNav/MapRow.vue -------------------------------------------------------------------------------- /ui/src/components/MapControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/components/MapControls.js -------------------------------------------------------------------------------- /ui/src/components/Viewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/components/Viewer.vue -------------------------------------------------------------------------------- /ui/src/components/ViewerHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/components/ViewerHeader.vue -------------------------------------------------------------------------------- /ui/src/globals/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/globals/map.js -------------------------------------------------------------------------------- /ui/src/globals/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/globals/store.js -------------------------------------------------------------------------------- /ui/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/src/main.js -------------------------------------------------------------------------------- /ui/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/vite.config.js -------------------------------------------------------------------------------- /ui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/ui/vue.config.js -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/iam/CHANGES.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/iam/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/iam/README.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/iam/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/iam/iam.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/internal/README.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/internal/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/internal/retry.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/CHANGES.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/LICENSE -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/README.md -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/acl.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/bucket.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/client.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/copy.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/doc.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/hmac.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/iam.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/invoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/invoke.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/reader.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/storage.go -------------------------------------------------------------------------------- /vendor/cloud.google.com/go/storage/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/cloud.google.com/go/storage/writer.go -------------------------------------------------------------------------------- /vendor/github.com/Azure/azure-storage-blob-go/2017-07-29/azblob/version.go: -------------------------------------------------------------------------------- 1 | package azblob 2 | 3 | const serviceLibVersion = "0.1" 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COMPATIBLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/COMPATIBLE -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/decode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/encode.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/BurntSushi/toml/parse.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/args.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/doc.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/driver.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/dsn.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/error.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/lob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/lob.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/log.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/rand.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/result.go -------------------------------------------------------------------------------- /vendor/github.com/SAP/go-hdb/driver/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/SAP/go-hdb/driver/stats.go -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/newsvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/newsvg -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/svg.go -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/svgdef.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/svgdef.pdf -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/svgdef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/svgdef.png -------------------------------------------------------------------------------- /vendor/github.com/ajstarks/svgo/svgdef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/ajstarks/svgo/svgdef.svg -------------------------------------------------------------------------------- /vendor/github.com/akrylysov/algnhsa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/akrylysov/algnhsa/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/akrylysov/algnhsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/akrylysov/algnhsa/README.md -------------------------------------------------------------------------------- /vendor/github.com/akrylysov/algnhsa/alb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/akrylysov/algnhsa/alb.go -------------------------------------------------------------------------------- /vendor/github.com/akrylysov/algnhsa/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/akrylysov/algnhsa/debug.go -------------------------------------------------------------------------------- /vendor/github.com/arolek/p/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /vendor/github.com/arolek/p/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/arolek/p/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/arolek/p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/arolek/p/README.md -------------------------------------------------------------------------------- /vendor/github.com/arolek/p/p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/arolek/p/p.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-lambda-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/aws/aws-lambda-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/aws/aws-sdk-go/aws/doc.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/aws/aws-sdk-go/aws/types.go -------------------------------------------------------------------------------- /vendor/github.com/aws/aws-sdk-go/aws/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/aws/aws-sdk-go/aws/url.go -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/cespare/xxhash/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/cespare/xxhash/v2/xxhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/cespare/xxhash/v2/xxhash.go -------------------------------------------------------------------------------- /vendor/github.com/dimfeld/httptreemux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/dimfeld/httptreemux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dimfeld/httptreemux/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/dimfeld/httptreemux/path.go -------------------------------------------------------------------------------- /vendor/github.com/dimfeld/httptreemux/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/dimfeld/httptreemux/tree.go -------------------------------------------------------------------------------- /vendor/github.com/gdey/tbltest/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gdey/tbltest/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gdey/tbltest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gdey/tbltest/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gdey/tbltest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gdey/tbltest/README.md -------------------------------------------------------------------------------- /vendor/github.com/gdey/tbltest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gdey/tbltest/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gdey/tbltest/mycaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gdey/tbltest/mycaller.go -------------------------------------------------------------------------------- /vendor/github.com/gdey/tbltest/tbl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gdey/tbltest/tbl.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/bbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/bbox.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/circle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/circle.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/cmp/cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/cmp/cmp.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/debug.go: -------------------------------------------------------------------------------- 1 | package geom 2 | 3 | const debug = false 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/encoding/mvt/debug.go: -------------------------------------------------------------------------------- 1 | package mvt 2 | 3 | var debug = false 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/errors.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/geom.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/line.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/point.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/pointm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/pointm.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/pointms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/pointms.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/points.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/pointz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/pointz.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/pointzm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/pointzm.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/pointzms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/pointzms.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/pointzs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/pointzs.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/polygon.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/polygonm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/polygonm.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/polygons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/polygons.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/polygonz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/polygonz.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/set_geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/set_geom.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/triangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/triangle.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/geom/utils.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/geom/winding/debug.go: -------------------------------------------------------------------------------- 1 | package winding 2 | 3 | const debug = false 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/.gitignore: -------------------------------------------------------------------------------- 1 | .cover 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/proj/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/Convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/proj/Convert.go -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/proj/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/proj/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/proj/build.sh -------------------------------------------------------------------------------- /vendor/github.com/go-spatial/proj/mlog/Log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-spatial/proj/mlog/Log.go -------------------------------------------------------------------------------- /vendor/github.com/go-test/deep/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-test/deep/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-test/deep/CHANGES.md -------------------------------------------------------------------------------- /vendor/github.com/go-test/deep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-test/deep/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-test/deep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-test/deep/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-test/deep/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-test/deep/SECURITY.md -------------------------------------------------------------------------------- /vendor/github.com/go-test/deep/deep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/go-test/deep/deep.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/README.md -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/codec.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/generator.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/sql.go -------------------------------------------------------------------------------- /vendor/github.com/gofrs/uuid/v5/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/gofrs/uuid/v5/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/go-cmp/cmp/export.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/go-cmp/cmp/path.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/cmp/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/go-cmp/cmp/report.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "v2": "2.7.1" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gax-go/v2/gax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/googleapis/gax-go/v2/gax.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgpassfile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgpassfile/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgpassfile/pgpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgpassfile/pgpass.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgservicefile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgservicefile/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/Rakefile -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/batch.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/copy_from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/copy_from.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/named_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/named_args.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgconn/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgconn/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgconn/krb5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgconn/krb5.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/bits.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/bool.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/box.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/date.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/inet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/inet.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/int.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/json.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/line.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/lseg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/lseg.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/path.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/text.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/tid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/tid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/time.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgtype/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgtype/xml.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgxpool/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgxpool/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/pgxpool/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/pgxpool/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/tracer.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/pgx/v5/values.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/context.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/log.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/nanotime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/nanotime.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jackc/puddle/v2/pool.go -------------------------------------------------------------------------------- /vendor/github.com/jmespath/go-jmespath/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/jmespath/go-jmespath/api.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/backup.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/convert.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/error.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-sqlite3/sqlite3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/go-sqlite3/sqlite3.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/goveralls/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /goveralls 3 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/goveralls/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/goveralls/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/goveralls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/goveralls/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/goveralls/gitinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/goveralls/gitinfo.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/goveralls/gocover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/mattn/goveralls/gocover.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/pborman/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/pborman/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/README.md -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/arp.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/crypto.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/slab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/slab.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/swaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/swaps.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/thread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/thread.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/prometheus/procfs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/.gitignore: -------------------------------------------------------------------------------- 1 | *.rdb 2 | testdata/* 3 | .idea/ 4 | .DS_Store 5 | *.tar.gz 6 | *.dic -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/.prettierrc.yml: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | proseWrap: always 4 | printWidth: 100 5 | -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/Makefile -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/README.md -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/doc.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/error.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/internal/util/type.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | func ToPtr[T any](v T) *T { 4 | return &v 5 | } 6 | -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/json.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/pubsub.go -------------------------------------------------------------------------------- /vendor/github.com/redis/go-redis/v9/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/redis/go-redis/v9/tx.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/stats/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/measure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/stats/measure.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/stats/record.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/units.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/stats/units.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/stats/view/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/stats/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/stats/view/view.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/context.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/key.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/map.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/map_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/map_codec.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/metadata.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/profile_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/profile_19.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/tag/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/tag/validate.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/go.opencensus.io/trace/trace_api.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/exp/slices/slices.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/slices/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/exp/slices/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/pre_go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/pre_go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie12.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/trie12.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie13.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/trie13.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/google/error.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bpxsvc_zos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/bpxsvc_zos.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/cover/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/tools/cover/profile.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/README -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/adaptor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/fmt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/xerrors/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/golang.org/x/xerrors/wrap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/api/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/api/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/api/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/SECURITY.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/idle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/idle.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-spatial/tegola/HEAD/vendor/modules.txt --------------------------------------------------------------------------------