Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 444 for ts (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

      const Policies& policies() const { return policies_; }
    
      // Add an instance of each of the policy types 'Ts'. Return a reference to
      // `this` for chaining insertions.
      template <typename... Ts>
      ClusteringPolicySet& Add() {
        (void)std::initializer_list<int>{0, (AddImpl<Ts>(), 0)...};
        return *this;
      }
    
      // ClusteringPolicySet is move only type.
      ClusteringPolicySet() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/sys_netbsd_amd64.s

    TEXT runtime·osyield(SB),NOSPLIT,$0
    	MOVL	$SYS_sched_yield, AX
    	SYSCALL
    	RET
    
    TEXT runtime·lwp_park(SB),NOSPLIT,$0
    	MOVL	clockid+0(FP), DI		// arg 1 - clockid
    	MOVL	flags+4(FP), SI			// arg 2 - flags
    	MOVQ	ts+8(FP), DX			// arg 3 - ts
    	MOVL	unpark+16(FP), R10		// arg 4 - unpark
    	MOVQ	hint+24(FP), R8			// arg 5 - hint
    	MOVQ	unparkhint+32(FP), R9		// arg 6 - unparkhint
    	MOVL	$SYS____lwp_park60, AX
    	SYSCALL
    	MOVL	AX, ret+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/interface.go

    	// Objects returned here must be treated as read-only.
    	Get(name string) (T, error)
    }
    
    type Informer[T any] interface {
    	cache.SharedIndexInformer
    	Lister[T]
    }
    
    // Lister[T] helps list Ts.
    // All objects returned here must be treated as read-only.
    type Lister[T any] interface {
    	NamespacedLister[T]
    	Namespaced(namespace string) NamespacedLister[T]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. operator/pkg/helm/helm.go

    func GenerateHubTagOverlay(hub, tag string) (string, error) {
    	hubTagYAMLTemplate := `
    spec:
      hub: {{.Hub}}
      tag: {{.Tag}}
    `
    	ts := struct {
    		Hub string
    		Tag string
    	}{
    		Hub: hub,
    		Tag: tag,
    	}
    	return util.RenderTemplate(hubTagYAMLTemplate, ts)
    }
    
    // DefaultFilenameForProfile returns the profile name of the default profile for the given profile.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/cmd/trace/procgen.go

    		}
    		viewerEv.Name = "proc start"
    		viewerEv.Arg = format.ThreadIDArg{ThreadID: uint64(ev.Thread())}
    		viewerEv.Ts = ctx.elapsed(start)
    		ctx.IncThreadStateCount(ctx.elapsed(start), traceviewer.ThreadStateRunning, 1)
    	}
    	if from.Executing() {
    		start := ev.Time()
    		viewerEv.Name = "proc stop"
    		viewerEv.Ts = ctx.elapsed(start)
    		ctx.IncThreadStateCount(ctx.elapsed(start), traceviewer.ThreadStateRunning, -1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv10-RSA-3DES

    00000100  45 88 7a 36 47 a5 08 0d  92 42 5b c2 81 c0 be 97  |E.z6G....B[.....|
    00000110  79 98 40 fb 4f 6d 14 fd  2b 13 8b c2 a5 2e 67 d8  |y.@.Om..+.....g.|
    00000120  d4 09 9e d6 22 38 b7 4a  0b 74 73 2b c2 34 f1 d1  |...."8.J.ts+.4..|
    00000130  93 e5 96 d9 74 7b f3 58  9f 6c 61 3c c0 b0 41 d4  |....t{.X.la<..A.|
    00000140  d9 2b 2b 24 23 77 5b 1c  3b bd 75 5d ce 20 54 cf  |.++$#w[.;.u]. T.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TopKSelector.java

        T[] castBuffer = (T[]) buffer;
        Arrays.sort(castBuffer, 0, bufferSize, comparator);
        if (bufferSize > k) {
          Arrays.fill(buffer, k, buffer.length, null);
          bufferSize = k;
          threshold = buffer[k - 1];
        }
        // Up to bufferSize, all elements of buffer are real Ts (not null unless T includes null)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
    
    func NsecToTimespec(nsec int64) (ts Timespec) {
    	ts.Sec = nsec / 1e9
    	ts.Nsec = nsec % 1e9
    	return
    }
    
    // TODO(brainman): fix all needed for net
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. src/runtime/sys_netbsd_arm64.s

    TEXT runtime·osyield(SB),NOSPLIT,$0
    	SVC	$SYS_sched_yield
    	RET
    
    TEXT runtime·lwp_park(SB),NOSPLIT,$0
    	MOVW	clockid+0(FP), R0	// arg 1 - clockid
    	MOVW	flags+4(FP), R1		// arg 2 - flags
    	MOVD	ts+8(FP), R2		// arg 3 - ts
    	MOVW	unpark+16(FP), R3	// arg 4 - unpark
    	MOVD	hint+24(FP), R4		// arg 5 - hint
    	MOVD	unparkhint+32(FP), R5	// arg 6 - unparkhint
    	SVC	$SYS____lwp_park60
    	MOVW	R0, ret+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. 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)
Back to top