Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,335 for FUNC (0.04 sec)

  1. src/archive/tar/format.go

    func (h *headerV7) name() []byte     { return h[000:][:100] }
    func (h *headerV7) mode() []byte     { return h[100:][:8] }
    func (h *headerV7) uid() []byte      { return h[108:][:8] }
    func (h *headerV7) gid() []byte      { return h[116:][:8] }
    func (h *headerV7) size() []byte     { return h[124:][:12] }
    func (h *headerV7) modTime() []byte  { return h[136:][:12] }
    func (h *headerV7) chksum() []byte   { return h[148:][:8] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/embedding_sequencing.mlir

    module {
      func.func @main() {
        %cst_main = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %0 = "tf.While"(%cst_main) {body = @while_body, cond = @while_cond, is_stateless = false} : (tensor<i32>) -> (tensor<i32>)
        return
      }
      func.func private @while_body(%arg0: tensor<i32>) -> (tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 21:27:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    // Chained for convenience.
    // TODO: fix one day?
    func (i *IdentifierNode) SetTree(t *Tree) *IdentifierNode {
    	i.tr = t
    	return i
    }
    
    func (i *IdentifierNode) String() string {
    	return i.Ident
    }
    
    func (i *IdentifierNode) writeTo(sb *strings.Builder) {
    	sb.WriteString(i.String())
    }
    
    func (i *IdentifierNode) tree() *Tree {
    	return i.tr
    }
    
    func (i *IdentifierNode) Copy() Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object.go

    		func() { o.object.SetGenerateName(name) },
    	)
    }
    func (o *cachingObject) GetUID() types.UID {
    	o.lock.RLock()
    	defer o.lock.RUnlock()
    	return o.object.GetUID()
    }
    func (o *cachingObject) SetUID(uid types.UID) {
    	o.conditionalSet(
    		func() bool { return o.object.GetUID() == uid },
    		func() { o.object.SetUID(uid) },
    	)
    }
    func (o *cachingObject) GetResourceVersion() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    }
    
    func TestNonSlidingUntil(t *testing.T) {
    	ch := make(chan struct{})
    	close(ch)
    	NonSlidingUntil(func() {
    		t.Fatal("should not have been invoked")
    	}, 0, ch)
    
    	ch = make(chan struct{})
    	called := make(chan struct{})
    	go func() {
    		NonSlidingUntil(func() {
    			called <- struct{}{}
    		}, 0, ch)
    		close(called)
    	}()
    	<-called
    	close(ch)
    	<-called
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    func TestGuaranteedUpdate(t *testing.T) {
    	// TODO(#109831): Enable use of this test and run it.
    }
    
    func TestGuaranteedUpdateWithTTL(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestGuaranteedUpdateWithTTL(ctx, t, cacher)
    }
    
    func TestGuaranteedUpdateChecksStoredData(t *testing.T) {
    	// TODO(#109831): Enable use of this test and run it.
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func goPanicSlice3B(x int, y int)
    func goPanicSlice3BU(x uint, y int)
    func goPanicSlice3C(x int, y int)
    func goPanicSlice3CU(x uint, y int)
    func goPanicSliceConvert(x int, y int)
    
    func printbool(bool)
    func printfloat(float64)
    func printint(int64)
    func printhex(uint64)
    func printuint(uint64)
    func printcomplex(complex128)
    func printstring(string)
    func printpointer(any)
    func printuintptr(uintptr)
    func printiface(any)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-collective.mlir

      func.return %0 : tensor<f32>
    }
    
    // -----
    
    // CHECK: module attributes
    // CHECK-SAME{LITERAL}: tf2xla.collective_info.group_key = 0
    // CHECK-SAME{LITERAL}: tf2xla.collective_info.group_size = 2
    // CHECK-LABEL: func @all_reduce_cross_replica_and_partition
    func.func @all_reduce_cross_replica_and_partition(%input: tensor<f32>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args.mlir

      %7 = "tf.Pack"(%2, %6) : (tensor<f32>, tensor<f32>) -> tensor<2xf32>
      func.return %7 : tensor<2xf32>
    }
    
    // -----
    
    // A resource is passed into tf.If
    func.func @cond_false(%arg0: tensor<!tf_type.resource<tensor<f32>>>, %arg1: tensor<f32>) -> tensor<f32> {
      func.return %arg1 : tensor<f32>
    }
    
    func.func @cond_true(%arg0: tensor<!tf_type.resource<tensor<f32>>>, %arg1: tensor<f32>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. src/go/printer/testdata/comments.golden

    func _() {
    	/*	freestanding comment
    		aligned line
    	*/
    }
    
    func _() {
    	/*	freestanding comment
    		aligned line */
    }
    
    func _() {
    	/*
    	   freestanding comment
    	   aligned line
    	*/
    }
    
    func _() {
    	/*
    	   freestanding comment
    	   aligned line
    	*/
    }
    
    func _() {
    	/*
    	   freestanding comment
    	   aligned line */
    }
    
    func _() {
    	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
Back to top