- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 2,039 for xtrue (0.11 sec)
-
docs/debugging/s3-check-md5/main.go
for _, b := range bucketsInfo { buckets = append(buckets, b.Name) } } for _, bucket := range buckets { opts := minio.ListObjectsOptions{ Recursive: true, Prefix: prefix, WithVersions: versions, WithMetadata: true, } objFullPath := func(obj minio.ObjectInfo) (fpath string) { fpath = path.Join(bucket, obj.Key) if versions { fpath += ":" + obj.VersionID }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sat Feb 17 01:15:57 UTC 2024 - 6.3K bytes - Viewed (0) -
.devcontainer/devcontainer.json
{ "name": "istio build-tools", "image": "gcr.io/istio-testing/build-tools:master-b9d5987e7b84504a75de25d4db720358198585fc", "privileged": true, "remoteEnv": { "USE_GKE_GCLOUD_AUTH_PLUGIN": "True", "BUILD_WITH_CONTAINER": "0", "CARGO_HOME": "/home/.cargo", "RUSTUP_HOME": "/home/.rustup" }, "features": { "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, "ghcr.io/mpriscella/features/kind:1": {} },
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 18:29:51 UTC 2024 - 879 bytes - Viewed (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# [true] # Add schema to table SQL name. (The table name on query is SCHEMA.TABLE) # #; isAvailableAddingSchemaToTableSqlName = false # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o isAvailableAddingCatalogToTableSqlName: (NotRequired - Default false) # [true]
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8.8K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard_test.go
WantException: true, }, { // case 7 Args: strings.Split("jaeger --browser=false", " "), ExpectedOutput: "Error: no pods found with selector app=jaeger\n", WantException: true, }, { // case 8 Args: strings.Split("kiali --browser=false", " "), ExpectedOutput: "Error: no pods found with selector app=kiali\n", WantException: true, }, { // case 9
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Tue Nov 21 01:17:24 UTC 2023 - 4.3K bytes - Viewed (0) -
src/cmd/asm/internal/arch/ppc64.go
ppc64.ASUBZE: return true } return false } func ppc64RegisterNumber(name string, n int16) (int16, bool) { switch name { case "CR": if 0 <= n && n <= 7 { return ppc64.REG_CR0 + n, true } case "A": if 0 <= n && n <= 8 { return ppc64.REG_A0 + n, true } case "VS": if 0 <= n && n <= 63 { return ppc64.REG_VS0 + n, true } case "V": if 0 <= n && n <= 31 {
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Fri May 17 21:53:50 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/resources/fess_config.properties
-XX:G1MaxNewSizePercent=30\n\ -Dio.netty.noUnsafe=true\n\ -Dio.netty.noKeySetOptimization=true\n\ -Dio.netty.recycler.maxCapacityPerThread=0\n\ -Dlog4j.shutdownHookEnabled=false\n\ -Dlog4j2.disable.jmx=true\n\ -Dlog4j2.formatMsgNoLookups=true\n\ -Dlog4j.skipJansi=true\n\ jvm.thumbnail.options=\ -Djava.awt.headless=true\n\ -Dfile.encoding=UTF-8\n\ -Djna.nosys=true\n\ -Djdk.io.permissionsUseCanonicalPath=true\n\
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
cni/test/install_k8s_test.go
resultFileName: "00-minikube_cni.conflist", expectedOutputFile: testDataDir + "/expected/minikube_cni.conflist.expected", expectedPostCleanFile: testDataDir + "/expected/minikube_cni.conflist.clean", cniConfDirOrderedFiles: []string{"minikube_cni.conf", "calico.conflist"}, }, { name: "Skip non-json file for first valid .conf file", chainedCNIPlugin: true,
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Wed Jul 27 18:01:48 UTC 2022 - 8K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle.go
return true } if rule.NoncurrentVersionExpiration.NewerNoncurrentVersions > 0 { return true } if !rule.NoncurrentVersionTransition.IsNull() { return true } if !rule.Expiration.IsDateNull() && rule.Expiration.Date.Before(time.Now().UTC()) { return true } if !rule.Expiration.IsDaysNull() { return true } if rule.Expiration.DeleteMarker.val {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu May 23 01:12:48 UTC 2024 - 17.9K bytes - Viewed (0) -
docs_src/sql_databases/tutorial002_py310.py
from sqlmodel import Field, Session, SQLModel, create_engine, select class HeroBase(SQLModel): name: str = Field(index=True) age: int | None = Field(default=None, index=True) class Hero(HeroBase, table=True): id: int | None = Field(default=None, primary_key=True) secret_name: str class HeroPublic(HeroBase): id: int class HeroCreate(HeroBase): secret_name: str
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 2.5K bytes - Viewed (0) -
internal/event/target/nats_contrib_test.go
opts := natsserver.DefaultTestOptions opts.Port = 14222 s := natsserver.RunServer(&opts) defer s.Shutdown() clientConfig := &NATSArgs{ Enable: true, Address: xnet.Host{ Name: "localhost", Port: (xnet.Port(opts.Port)), IsPortSet: true, }, Subject: "test", } con, err := clientConfig.connectNats() if err != nil { t.Errorf("Could not connect to nats: %v", err) }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 2.3K bytes - Viewed (0)