- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 285 for Site (0.02 sec)
-
internal/config/config.go
) var siteLK sync.RWMutex // Site - holds site info - name and region. type Site struct { name string region string } // Update safe update the new site name and region func (s *Site) Update(n Site) { siteLK.Lock() s.name = n.name s.region = n.region siteLK.Unlock() } // Name returns currently configured site name func (s *Site) Name() string { siteLK.RLock()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 37.7K bytes - Viewed (0) -
.gitignore
/target/ /work/ /bin/ /mydbflute/ /solr/data/ /src/main/webapp/WEB-INF/classes/ /src/main/webapp/WEB-INF/lib/ /src/main/webapp/WEB-INF/site/ /src/main/webapp/WEB-INF/plugin/* !/src/main/webapp/WEB-INF/plugin/.keep /src/main/webapp/WEB-INF/env/crawler/lib/ /src/main/webapp/WEB-INF/env/suggest/lib/ /src/main/webapp/WEB-INF/env/thumbnail/lib/ /src/main/webapp/WEB-INF/thumbnails/ /src/main/webapp/jar/ /dbflute_fess/extlib/*
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 1023 bytes - Viewed (0) -
cmd/bucket-versioning-handler.go
return } if globalSiteReplicationSys.isEnabled() && !v.Enabled() { writeErrorResponse(ctx, w, APIError{ Code: "InvalidBucketState", Description: "Cluster replication is enabled on this site, versioning cannot be suspended on bucket.", HTTPStatusCode: http.StatusBadRequest, }, r.URL) return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/01-pkgsite.yml
name: Pkg.go.dev bugs or feature requests description: Issues or feature requests for the documentation site title: "x/pkgsite: issue title" labels: ["pkgsite"] body: - type: markdown attributes: value: "Please answer these questions before submitting your issue. Thanks!" - type: input id: url attributes: label: "What is the URL of the page with the issue?" validations: required: true - type: input
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-model-builder/src/site/apt/index.apt
<<<false>>> for each url: <<<project/@child.project.url.inherit.append.path>>>, <<<project/distributionManagement/site/@child.site.url.inherit.append.path>>>, <<<project/scm/@child.scm.connection.inherit.append.path>>>, <<<project/scm/@child.scm.developerConnection.inherit.append.path>>> and <<<project/scm/@child.scm.url.inherit.append.path>>>.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.2K bytes - Viewed (0) -
docs/releasing.md
Releasing ========= ### Prerequisite: Sonatype (Maven Central) Account Create an account on the [Sonatype issues site][sonatype_issues]. Ask an existing publisher to open an issue requesting publishing permissions for `com.squareup` projects. Cutting a Release ----------------- 1. Update `CHANGELOG.md`. 2. Set versions: ``` export RELEASE_VERSION=X.Y.Z export NEXT_VERSION=X.Y.Z-SNAPSHOT ```
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Dec 26 22:07:16 UTC 2022 - 1.5K bytes - Viewed (0) -
docs/bucket/replication/setup_3site_replication.sh
set -x fi trap 'catch $LINENO' ERR # shellcheck disable=SC2120 catch() { if [ $# -ne 0 ]; then echo "error on line $1" for site in sitea siteb sitec; do echo "$site server logs =========" cat "/tmp/${site}_1.log" echo "===========================" cat "/tmp/${site}_2.log" done fi echo "Cleaning up instances of MinIO" pkill minio pkill -9 minio rm -rf /tmp/multisitea
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.3K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/RecordingAuthenticator.kt
), ) : Authenticator() { val calls = mutableListOf<String>() override fun getPasswordAuthentication(): PasswordAuthentication? { calls.add( "host=$requestingHost port=$requestingPort site=${requestingSite.hostName} " + "url=$requestingURL type=$requestorType prompt=$requestingPrompt " + "protocol=$requestingProtocol scheme=$requestingScheme", ) return authentication }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.4K bytes - Viewed (0) -
CONTRIBUTING.md
Please read the [Development - Contributing](https://fastapi.tiangolo.com/contributing/) guidelines in the documentation site....
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat May 25 15:47:49 UTC 2019 - 127 bytes - Viewed (0) -
tensorflow/api_template.__init__.py
""" # pylint: disable=g-bad-import-order,protected-access,g-import-not-at-top import sysconfig as _sysconfig import importlib import inspect as _inspect import os as _os import site as _site import sys as _sys _os.environ.setdefault("ENABLE_RUNTIME_UPTIME_TELEMETRY", "1") # Do not remove this line; See https://github.com/tensorflow/tensorflow/issues/42596
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 6.8K bytes - Viewed (0)