Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 166 for ts (0.03 sec)

  1. pkg/wasm/cache_test.go

    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if gotNumRequest <= 1 {
    			w.Write(binary1)
    		} else {
    			w.Write(binary2)
    		}
    		gotNumRequest++
    	}))
    	defer ts.Close()
    	url1 := ts.URL
    	url2 := ts.URL + "/next"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/generate-clients.md

    #### `openapi-ts` installieren
    
    Sie können `openapi-ts` in Ihrem Frontend-Code installieren mit:
    
    <div class="termy">
    
    ```console
    $ npm install @hey-api/openapi-ts --save-dev
    
    ---> 100%
    ```
    
    </div>
    
    #### Client-Code generieren
    
    Um den Client-Code zu generieren, können Sie das Kommandozeilentool `openapi-ts` verwenden, das soeben installiert wurde.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildLauncherTest.groovy

            0 * asyncConnection._
            0 * handler._
        }
    
        def "can configure task selector build operation for consumer generated selectors"() {
            def ts = Mock(TaskListingLaunchable)
            _ * ts.name >> 'myTask'
            _ * ts.taskNames >> Sets.newTreeSet([':a:myTask', ':b:myTask'])
            ResultHandlerVersion1<Void> adaptedHandler
            ResultHandler<Void> handler = Mock()
            OutputStream stdout = Stub()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. src/runtime/os3_solaris.go

    }
    
    const (
    	_CLOCK_REALTIME  = 3
    	_CLOCK_MONOTONIC = 4
    )
    
    //go:nosplit
    func nanotime1() int64 {
    	var ts mts
    	sysvicall2(&libc_clock_gettime, _CLOCK_MONOTONIC, uintptr(unsafe.Pointer(&ts)))
    	return ts.tv_sec*1e9 + ts.tv_nsec
    }
    
    //go:nosplit
    func open(path *byte, mode, perm int32) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. cmd/metrics-resource.go

    		}
    		if hm.CPU != nil {
    			labels := map[string]string{}
    			ts := hm.CPU.TimesStat
    			if ts != nil {
    				tot := ts.User + ts.System + ts.Idle + ts.Iowait + ts.Nice + ts.Steal
    				cpuUserVal := math.Round(ts.User/tot*100*100) / 100
    				updateResourceMetrics(cpuSubsystem, cpuUser, cpuUserVal, labels, false)
    				cpuSystemVal := math.Round(ts.System/tot*100*100) / 100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/internal/trace/internal/oldtrace/parser.go

    		case EvGoSysBlock, EvGoInSyscall:
    			lastSysBlock[ev.G] = ev.Ts
    		case EvGoSysExit:
    			ts := Timestamp(ev.Args[2])
    			if ts == 0 {
    				continue
    			}
    			block := lastSysBlock[ev.G]
    			if block == 0 {
    				return Events{}, fmt.Errorf("stray syscall exit")
    			}
    			if ts < block {
    				return Events{}, ErrTimeOrder
    			}
    			ev.Ts = ts
    		}
    	}
    	sort.Stable(&events)
    
    	return events, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/metrics/metrics.go

    	obj, exists := c.cache.Load(key)
    	if !exists {
    		return
    	}
    	ts, ok := obj.(*operationTimestamp)
    	if !ok {
    		return
    	}
    	if err != nil {
    		RecordVolumeOperationErrorMetric(ts.pluginName, ts.operation)
    	} else {
    		timeTaken := time.Since(ts.startTs).Seconds()
    		metricutil.RecordOperationLatencyMetric(ts.pluginName, ts.operation, timeTaken)
    		// end of this operation, remove the timestamp entry from cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    )
    
    func TestSchemaDeclType(t *testing.T) {
    	ts := testSchema()
    	cust := SchemaDeclType(ts, false)
    	if cust.TypeName() != "object" {
    		t.Errorf("incorrect type name, got %v, wanted object", cust.TypeName())
    	}
    	if len(cust.Fields) != 4 {
    		t.Errorf("incorrect number of fields, got %d, wanted 4", len(cust.Fields))
    	}
    	for _, f := range cust.Fields {
    		prop, found := ts.Properties[f.Name]
    		if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. pilot/test/xdstest/extract.go

    	for _, fc := range l.GetFilterChains() {
    		if fc.GetTransportSocket() != nil {
    			sockets = append(sockets, fc.GetTransportSocket())
    		}
    	}
    	if ts := l.GetDefaultFilterChain().GetTransportSocket(); ts != nil {
    		sockets = append(sockets, ts)
    	}
    	for _, s := range sockets {
    		tl := UnmarshalAny[tls.DownstreamTlsContext](t, s.GetTypedConfig())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/net/http/responsecontroller_test.go

    		w.Write([]byte("one"))
    		if err := ctl.Flush(); err != nil {
    			t.Errorf("ctl.Flush() = %v, want nil", err)
    			return
    		}
    		<-continuec
    		w.Write([]byte("two"))
    	}))
    
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatalf("unexpected connection error: %v", err)
    	}
    	defer res.Body.Close()
    
    	buf := make([]byte, 16)
    	n, err := res.Body.Read(buf)
    	close(continuec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top