Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for Fn (0.34 sec)

  1. src/net/http/server.go

    // in RFC 7230 section 7 and calls fn for each non-empty element.
    func foreachHeaderElement(v string, fn func(string)) {
    	v = textproto.TrimString(v)
    	if v == "" {
    		return
    	}
    	if !strings.Contains(v, ",") {
    		fn(v)
    		return
    	}
    	for _, f := range strings.Split(v, ",") {
    		if f = textproto.TrimString(f); f != "" {
    			fn(f)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      void enqueue(func::FuncOp fn) {
        LLVM_DEBUG(llvm::dbgs()
                   << "enqueue " << fn.getName() << " ("
                   << (queue_set_.count(fn) ? "already inserted" : "newly inserted")
                   << ")\n");
        if (queue_set_.insert(fn).second) queue_.push(fn);
      }
    
      // Enqueues callers on functions.
      void EnqueueCallers(func::FuncOp fn);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    	if set.Status.Replicas != replicas {
    		t.Errorf("want %v, got %v replicas", replicas, set.Status.Replicas)
    	}
    
    	fn := parallelScaleUpStatefulSetControl
    	if diff < 0 {
    		fn = parallelScaleDownStatefulSetControl
    	}
    	*set.Spec.Replicas = desiredReplicas
    	if err := fn(set, ssc, om, invariants); err != nil {
    		t.Errorf("Failed to scale StatefulSet : %s", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	// Test that variadic arguments are packed into a slice and passed as last arg
    	fn := func(_ int, is ...int) []int { return nil }
    	fv := MakeFunc(TypeOf(fn), func(in []Value) []Value { return in[1:2] })
    	ValueOf(&fn).Elem().Set(fv)
    
    	r := fn(1, 2, 3)
    	if r[0] != 2 || r[1] != 3 {
    		t.Errorf("Call returned [%v, %v]; want 2, 3", r[0], r[1])
    	}
    
    	r = fn(1, []int{2, 3}...)
    	if r[0] != 2 || r[1] != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    func init() {
    	rowsCloseHook = func() func(*Rows, *error) {
    		fn, _ := atomicRowsCloseHook.Load().(func(*Rows, *error))
    		return fn
    	}
    }
    
    func setRowsCloseHook(fn func(*Rows, *error)) {
    	if fn == nil {
    		// Can't change an atomic.Value back to nil, so set it to this
    		// no-op func instead.
    		fn = func(*Rows, *error) {}
    	}
    	atomicRowsCloseHook.Store(fn)
    }
    
    // Test issue 6651
    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. src/cmd/link/internal/ld/data.go

    func writeParallel(wg *sync.WaitGroup, fn writeFn, ctxt *Link, seek, vaddr, length uint64) {
    	if out, err := ctxt.Out.View(seek); err != nil {
    		ctxt.Out.SeekSet(int64(seek))
    		fn(ctxt, ctxt.Out, int64(vaddr), int64(length))
    	} else {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			fn(ctxt, out, int64(vaddr), int64(length))
    		}()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	}
    
    	return nil
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func simulateVolumeInUseUpdate(
    	volumeName v1.UniqueVolumeName,
    	stopCh <-chan struct{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    	tgt, oi, proxy := proxyHeadToRepTarget(ctx, bucket, object, rs, opts, proxyTargets)
    	if !proxy.Proxy {
    		return nil, proxy, nil
    	}
    	fn, _, _, err := NewGetObjectReader(nil, oi, opts, h)
    	if err != nil {
    		return nil, proxy, err
    	}
    	gopts := minio.GetObjectOptions{
    		VersionID:            opts.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	cgoCPPFLAGS = append(cgoCPPFLAGS, "-I", objdir)
    
    	// cgo
    	// TODO: CGO_FLAGS?
    	gofiles := []string{objdir + "_cgo_gotypes.go"}
    	cfiles := []string{"_cgo_export.c"}
    	for _, fn := range cgofiles {
    		f := strings.TrimSuffix(filepath.Base(fn), ".go")
    		gofiles = append(gofiles, objdir+f+".cgo1.go")
    		cfiles = append(cfiles, f+".cgo2.c")
    	}
    
    	// TODO: make cgo not depend on $GOARCH?
    
    	cgoflags := []string{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& clobber(call)
    	=> (Move {types.Types[types.TUINT8]} [int64(sz)] dst src mem)
    
    // De-virtualize late-expanded interface calls into late-expanded static calls.
    (InterLECall [argsize] {auxCall} (Addr {fn} (SB)) ___) => devirtLECall(v, fn.(*obj.LSym))
    
    // Move and Zero optimizations.
    // Move source and destination may overlap.
    
    // Convert Moves into Zeros when the source is known to be zeros.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top