Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 166 for ts (0.02 sec)

  1. pilot/pkg/xds/debug.go

    	proxyID, con := s.getDebugConnection(req)
    	if con == nil {
    		s.errorHandler(w, proxyID, con)
    		return
    	}
    	if ts := s.getResourceTypes(req); len(ts) != 0 {
    		resources := s.getConfigDumpByResourceType(con, nil, ts)
    		configDump := &admin.ConfigDump{}
    		for _, resource := range resources {
    			for _, rr := range resource {
    				configDump.Configs = append(configDump.Configs, rr.Resource)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func UtimesNano(path string, ts []Timespec) error {
    	if ts == nil {
    		return utimensat(AT_FDCWD, path, nil, 0)
    	}
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error {
    	if ts == nil {
    		return utimensat(dirfd, path, nil, flags)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  3. src/go/types/stmt.go

    			if T == nil && t == nil || T != nil && t != nil && Identical(T, t) {
    				// talk about "case" rather than "type" because of nil case
    				Ts := "nil"
    				if T != nil {
    					Ts = TypeString(T, check.qualifier)
    				}
    				err := check.newError(DuplicateCase)
    				err.addf(e, "duplicate case %s in type switch", Ts)
    				err.addf(other, "previous case")
    				err.report()
    				continue L
    			}
    		}
    		seen[T] = e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. src/runtime/sys_netbsd_arm.s

    TEXT runtime·osyield(SB),NOSPLIT,$0
    	SWI $SYS_sched_yield
    	RET
    
    TEXT runtime·lwp_park(SB),NOSPLIT,$8
    	MOVW clockid+0(FP), R0		// arg 1 - clock_id
    	MOVW flags+4(FP), R1		// arg 2 - flags
    	MOVW ts+8(FP), R2		// arg 3 - ts
    	MOVW unpark+12(FP), R3		// arg 4 - unpark
    	MOVW hint+16(FP), R4		// arg 5 - hint
    	MOVW R4, 4(R13)
    	MOVW unparkhint+20(FP), R5	// arg 6 - unparkhint
    	MOVW R5, 8(R13)
    	SWI $SYS____lwp_park60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. internal/s3select/sql/funceval.go

    	if !ok {
    		return nil, fmt.Errorf("QUANTITY must be a numeric argument to %s()", sqlFnDateAdd)
    	}
    
    	ts, err := d.Timestamp.evalNode(r, tableAlias)
    	if err != nil {
    		return nil, err
    	}
    	if err = inferTypeAsTimestamp(ts); err != nil {
    		return nil, err
    	}
    	t, ok := ts.ToTimestamp()
    	if !ok {
    		return nil, fmt.Errorf("%s() expects a timestamp argument", sqlFnDateAdd)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    						Namespace: key.Namespace,
    					},
    					Logging: telemetry.Spec.GetAccessLogging(),
    				})
    			}
    			ts = append(ts, telemetry.Spec.GetTracing()...)
    		}
    	}
    
    	ct := &computedTelemetries{
    		telemetryKey: key,
    		Metrics:      ms,
    		Logging:      ls,
    		Tracing:      ts,
    	}
    
    	matcher := PolicyMatcherForProxy(proxy).WithService(svc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. src/encoding/json/stream_test.go

    		})
    	}
    }
    
    // Test from golang.org/issue/11893
    func TestHTTPDecoding(t *testing.T) {
    	const raw = `{ "foo": "bar" }`
    
    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		w.Write([]byte(raw))
    	}))
    	defer ts.Close()
    	res, err := http.Get(ts.URL)
    	if err != nil {
    		log.Fatalf("http.Get error: %v", err)
    	}
    	defer res.Body.Close()
    
    	foo := struct {
    		Foo string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. src/net/http/cgi/host_test.go

    func TestCopyError(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.cgi",
    	}
    	ts := httptest.NewServer(h)
    	defer ts.Close()
    
    	conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    	req, _ := http.NewRequest("GET", "http://example.com/test.cgi?bigresponse=1", nil)
    	err = req.Write(conn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    			if T == nil && t == nil || T != nil && t != nil && Identical(T, t) {
    				// talk about "case" rather than "type" because of nil case
    				Ts := "nil"
    				if T != nil {
    					Ts = TypeString(T, check.qualifier)
    				}
    				err := check.newError(DuplicateCase)
    				err.addf(e, "duplicate case %s in type switch", Ts)
    				err.addf(other, "previous case")
    				err.report()
    				continue L
    			}
    		}
    		seen[T] = e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. operator/pkg/translate/translate.go

    func renderFeatureComponentPathTemplate(tmpl string, componentName name.ComponentName) (string, error) {
    	type Temp struct {
    		ComponentName name.ComponentName
    	}
    	ts := Temp{
    		ComponentName: componentName,
    	}
    	return util.RenderTemplate(tmpl, ts)
    }
    
    // renderResourceComponentPathTemplate renders a template of the form <path>{{.ResourceName}}<path>{{.ContainerName}}<path> with
    // the supplied parameters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top