Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for tpool_ (0.2 sec)

  1. fastapi/applications.py

                    The order of the tags can be used to specify the order shown in
                    tools like Swagger UI, used in the automatic path `/docs`.
    
                    It's not required to specify all the tags used.
    
                    The tags that are not declared MAY be organized randomly or based
                    on the tools' logic. Each tag name in the list MUST be unique.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.5.md

    * Update GCI base image: ([#34156](https://github.com/kubernetes/kubernetes/pull/34156), [@adityakali](https://github.com/adityakali))
      * Enabled VXLAN and IP_SET config options in kernel to support some networking tools (ebtools)
      * OpenSSL CVE fixes
    * ContainerVm/GCI image: try to use ifdown/ifup if available ([#33595](https://github.com/kubernetes/kubernetes/pull/33595), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    			case <-donePing:
    			}
    		case 2:
    		}
    	}
    	db := newTestDBConnector(t, &fakeConnector{waiter: waiter}, "people")
    	defer closeDB(t, db)
    
    	db.SetMaxOpenConns(max)
    
    	// First saturate the connection pool.
    	// Then start new requests for a connection that is canceled after it is requested.
    
    	state = 1
    	for i := 0; i < max; i++ {
    		go func() {
    			rows, err := db.Query("SELECT|people|name,photo|")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    			}
    
    			// Validate per-port connection pool settings
    			errs = AppendValidation(errs, validateConnectionPool(i.ConnectionPool))
    			if i.ConnectionPool != nil && i.ConnectionPool.Http != nil && i.Port != nil && !protocol.Parse(i.Port.Protocol).IsHTTP() {
    				errs = AppendWarningf(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // If subordinate user or group ID ranges are specified for the kubelet user and the getsubids tool
    // is installed, then the single mapping specified both for user and group IDs will be used.
    // If the tool is not installed, or there are no IDs configured, the default mapping is returned.
    // The default mapping includes the entire IDs range except IDs below 65536.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. api/go1.3.txt

    pkg regexp/syntax, method (InstOp) String() string
    pkg runtime/debug, func SetPanicOnFault(bool) bool
    pkg runtime/debug, func WriteHeapDump(uintptr)
    pkg sync, method (*Pool) Get() interface{}
    pkg sync, method (*Pool) Put(interface{})
    pkg sync, type Pool struct
    pkg sync, type Pool struct, New func() interface{}
    pkg syscall (darwin-386), func FcntlFlock(uintptr, int, *Flock_t) error
    pkg syscall (darwin-386), func Mlock([]uint8) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Update GCI base image: ([#34156](https://github.com/kubernetes/kubernetes/pull/34156), [@adityakali](https://github.com/adityakali))
       * Enabled VXLAN and IP_SET config options in kernel to support some networking tools (ebtools)
       * OpenSSL CVE fixes
    * ContainerVm/GCI image: try to use ifdown/ifup if available ([#33595](https://github.com/kubernetes/kubernetes/pull/33595), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			}
    		}
    		if InstallTargetDir(p) == ToTool {
    			// This is for 'go tool'.
    			// Override all the usual logic and force it into the tool directory.
    			if cfg.BuildToolchainName == "gccgo" {
    				p.Target = filepath.Join(build.ToolDir, elem)
    			} else {
    				p.Target = filepath.Join(cfg.GOROOTpkg, "tool", full)
    			}
    		}
    	} else if p.Internal.Local {
    		// Local import turned into absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            },
            "pool": {
              "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
              "type": "string"
            },
            "readOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    func getClusterWriteQuorumMD() MetricDescription {
    	return MetricDescription{
    		Namespace: clusterMetricNamespace,
    		Subsystem: "write",
    		Name:      "quorum",
    		Help:      "Maximum write quorum across all pools and sets",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterHealthStatusMD() MetricDescription {
    	return MetricDescription{
    		Namespace: clusterMetricNamespace,
    		Subsystem: "health",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top