Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for antcall (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/atmostevery.go

    // duration.
    type AtMostEvery struct {
    	delay    time.Duration
    	lastCall time.Time
    	mutex    sync.Mutex
    }
    
    // NewAtMostEvery creates a new AtMostEvery, that will run the method at
    // most every given duration.
    func NewAtMostEvery(delay time.Duration) *AtMostEvery {
    	return &AtMostEvery{
    		delay: delay,
    	}
    }
    
    // updateLastCall returns true if the lastCall time has been updated,
    // false if it was too early.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/references/ReadWriteAccessCheckerDescriptorsImpl.kt

    import org.jetbrains.kotlin.idea.references.ReadWriteAccessChecker
    import org.jetbrains.kotlin.psi.KtBinaryExpression
    import org.jetbrains.kotlin.psi.KtExpression
    import org.jetbrains.kotlin.resolve.calls.util.getCall
    import org.jetbrains.kotlin.resolve.calls.util.getResolvedCall
    import org.jetbrains.kotlin.resolve.references.ReferenceAccess
    import org.jetbrains.kotlin.types.expressions.OperatorConventions
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/runtime/syscall_windows.go

    // frame. This does not specify how to translate back because
    // the result is always a uintptr. If the C ABI is fastcall,
    // this assumes the four fastcall registers were first spilled
    // to the shadow space.
    type abiDesc struct {
    	parts []abiPart
    
    	srcStackSize uintptr // stdcall/fastcall stack space tracking
    	dstStackSize uintptr // Go stack space used
    	dstSpill     uintptr // Extra stack space for argument spill slots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/net/writev_test.go

    			}
    		case "windows":
    			var wantCalls int
    			wantSum = want.Len()
    			if wantSum > 0 {
    				wantCalls = 1 // windows will always do 1 syscall, unless sending empty buffer
    			}
    			if len(writeLog.log) != wantCalls {
    				t.Errorf("write calls = %v; want %v", len(writeLog.log), wantCalls)
    			}
    		}
    		if gotSum != wantSum {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/interleaved/interleaved.go

    		edit := func(n ir.Node) ir.Node {
    			call, ok := n.(*ir.CallExpr)
    			if !ok { // previously inlined
    				return nil
    			}
    
    			devirtualize.StaticCall(call)
    			if inlCall := inline.TryInlineCall(fn, call, bigCaller, profile); inlCall != nil {
    				return inlCall
    			}
    			return nil
    		}
    
    		fixpoint(fn, match, edit)
    	})
    }
    
    // fixpoint repeatedly edits a function until it stabilizes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/net/rpc/jsonrpc/all_test.go

    	args = &Args{7, 8}
    	mulReply := new(Reply)
    	mulCall := client.Go("Arith.Mul", args, mulReply, nil)
    	addReply := new(Reply)
    	addCall := client.Go("Arith.Add", args, addReply, nil)
    
    	addCall = <-addCall.Done
    	if addCall.Error != nil {
    		t.Errorf("Add: expected no error but got string %q", addCall.Error.Error())
    	}
    	if addReply.C != args.A+args.B {
    		t.Errorf("Add: got %d expected %d", addReply.C, args.A+args.B)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

          auto optimization_pass =
              std::make_unique<NiceMock<MockMlirOptimizationPass>>();
    
          ON_CALL(*optimization_pass, GetPassState(_, _, _, _))
              .WillByDefault(Return(pass_state));
          ON_CALL(*optimization_pass, Run(_, _, _, _, _))
              .WillByDefault(Return(pass_run_result));
          MlirOptimizationPassRegistry::Global().Add(pass_priority++,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. src/os/dir_windows.go

    			break
    		}
    		// We lost the race: try again.
    		d.close()
    	}
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	if d.buf == nil {
    		d.buf = dirBufPool.Get().(*[]byte)
    	}
    
    	wantAll := n <= 0
    	if wantAll {
    		n = -1
    	}
    	for n != 0 {
    		// Refill the buffer if necessary
    		if d.bufp == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    		switch node := node.(type) {
    		case *ast.FuncDecl:
    			return hasBenchmarkOrTestParams(node)
    
    		case *ast.GoStmt:
    			c := goAsyncCall(pass.TypesInfo, node, toDecl)
    			addCall(c)
    
    		case *ast.CallExpr:
    			c := tRunAsyncCall(pass.TypesInfo, node)
    			addCall(c)
    		}
    		return true
    	})
    
    	// Check for t.Forbidden() calls within each region r that is a
    	// callee in some go r() or a t.Run("name", r).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/a.out.go

    	ANop
    	ABlock
    	ALoop
    	AIf
    	AElse
    
    	AEnd // opcode 0x0B
    	ABr
    	ABrIf
    	ABrTable
    	// ACall and AReturn are WebAssembly instructions. obj.ACALL and obj.ARET are higher level instructions
    	// with Go semantics, e.g. they manipulate the Go stack on the linear memory.
    	AReturn
    	ACall
    	ACallIndirect
    
    	ADrop // opcode 0x1A
    	ASelect
    
    	ALocalGet // opcode 0x20
    	ALocalSet
    	ALocalTee
    	AGlobalGet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top