Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for openat (0.2 sec)

  1. fastapi/applications.py

                Doc(
                    """
                    OpenAPI callbacks that should apply to all *path operations*.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
                    [FastAPI docs for OpenAPI Callbacks](https://fastapi.tiangolo.com/advanced/openapi-callbacks/).
                    """
                ),
            ] = None,
    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. src/cmd/trace/testdata/go122.test

    String id=149
    	data="sync.(*WaitGroup).Done"
    String id=150
    	data="main.cpu20"
    String id=151
    	data="syscall.openat"
    String id=152
    	data="syscall.Open"
    String id=153
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_linux.go"
    String id=154
    	data="os.open"
    String id=155
    	data="/usr/local/google/home/mknyszek/work/go-1/src/os/file_open_unix.go"
    String id=156
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  3. go.sum

    github.com/go-openapi/analysis v0.19.5/go.mod h1:hkEAkxagaIvIP7VTn8ygJNkd4kAYON2rCu0v0ObL0AU=
    github.com/go-openapi/errors v0.17.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0=
    github.com/go-openapi/errors v0.18.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0=
    github.com/go-openapi/errors v0.19.2/go.mod h1:qX0BLWsyaKfvhluLejVpVNwNRdXZhEbTA4kxxpKBC94=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    }
    
    func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
    	return t.driver.Open(t.dsn)
    }
    
    func (t dsnConnector) Driver() driver.Driver {
    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    // Most users will open a database via a driver-specific connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    		db.dumpDeps(t)
    	}
    
    	driver.mu.Lock()
    	opens := driver.openCount - opens0
    	closes := driver.closeCount - closes0
    	driver.mu.Unlock()
    
    	if opens > 10 {
    		t.Logf("open calls = %d", opens)
    		t.Logf("close calls = %d", closes)
    		t.Errorf("db connections opened = %d; want <= 10", opens)
    		db.dumpDeps(t)
    	}
    
    	if err := stmt.Close(); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	"context"
    	"flag"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/klog/v2"
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    	"k8s.io/utils/ptr"
    
    	apiextensionsinternal "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensions "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    er ({{pod}})"}],"title":"CPU Usage","type":"timeseries"},{"collapsed":false,"gridPos":{"h":1,"w":24,"x":0,"y":9},"id":5,"panels":[],"title":"Network","type":"row"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Connections opened and closed per instance","fieldConfig":{"defaults":{"custom":{"fillOpacity":10,"gradientMode":"hue","showPoints":"never"},"unit":"cps"}},"gridPos":{"h":8,"w":8,"x":0,"y":10},"id":6,"interval":"5s","options":{"legend":{"calcs":["last","max"],"disp...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector_test.go

    		response.Header().Set("Content-Type", "application/json")
    		response.WriteHeader(fakeResponse.statusCode)
    		response.Write(fakeResponse.content)
    	}()
    
    	// This is to allow the fakeActionHandler to simulate a watch being opened
    	if strings.Contains(request.URL.RawQuery, "watch=true") {
    		hijacker, ok := response.(http.Hijacker)
    		if !ok {
    			return
    		}
    		connection, _, err := hijacker.Hijack()
    		if err != nil {
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	syncCh <-chan time.Time, housekeepingCh <-chan time.Time, plegCh <-chan *pleg.PodLifecycleEvent) bool {
    	select {
    	case u, open := <-configCh:
    		// Update from a config source; dispatch it to the right handler
    		// callback.
    		if !open {
    			klog.ErrorS(nil, "Update channel is closed, exiting the sync loop")
    			return false
    		}
    
    		switch u.Op {
    		case kubetypes.ADD:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    	op_LAOG    uint32 = 0xEBE6 // FORMAT_RSY1       LOAD AND OR (64)
    	op_LARL    uint32 = 0xC000 // FORMAT_RIL2       LOAD ADDRESS RELATIVE LONG
    	op_LASP    uint32 = 0xE500 // FORMAT_SSE        LOAD ADDRESS SPACE PARAMETERS
    	op_LAT     uint32 = 0xE39F // FORMAT_RXY1       LOAD AND TRAP (32L<-32)
    	op_LAX     uint32 = 0xEBF7 // FORMAT_RSY1       LOAD AND EXCLUSIVE OR (32)
    	op_LAXG    uint32 = 0xEBE7 // FORMAT_RSY1       LOAD AND EXCLUSIVE OR (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top