Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Invokes (0.15 sec)

  1. src/cmd/go/internal/modget/get.go

    // build list.
    //
    // loadPackages invokes the findPackage function for each package loaded from a
    // module outside the main module. If the module or version that supplies that
    // package needs to be changed due to a query, findPackage may return false
    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    	switch op {
    	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Equal(2, int(allocatableScalarResources[v1.ResourceName(resourceName2)]))
    }
    
    func TestDevicePreStartContainer(t *testing.T) {
    	// Ensures that if device manager is indicated to invoke `PreStartContainer` RPC
    	// by device plugin, then device manager invokes PreStartContainer at endpoint interface.
    	// Also verifies that final allocation of mounts, envs etc is same as expected.
    	res1 := TestResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    	switch op {
    	case syntax.Eql, syntax.Neq, syntax.Lss, syntax.Leq, syntax.Gtr, syntax.Geq:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    //
    // If no version is selected, Selected returns version "none".
    func (mg *ModuleGraph) Selected(path string) (version string) {
    	return mg.g.Selected(path)
    }
    
    // WalkBreadthFirst invokes f once, in breadth-first order, for each module
    // version other than "none" that appears in the graph, regardless of whether
    // that version is selected.
    func (mg *ModuleGraph) WalkBreadthFirst(f func(m module.Version)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/time/time_test.go

    	}
    }
    
    // Issue 25686: hard crash on concurrent timer access.
    // Issue 37400: panic with "racy use of timers"
    // This test deliberately invokes a race condition.
    // We are testing that we don't crash with "fatal error: panic holding locks",
    // and that we also don't panic.
    func TestConcurrentTimerReset(t *testing.T) {
    	const goroutines = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredAtomicOr32Variant", argLength: 3, reg: gpxchg, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true},
    
    		// LoweredWB invokes runtime.gcWriteBarrier. arg0=mem, auxint=# of buffer entries needed
    		// It saves all GP registers if necessary,
    		// but clobbers R30 (LR) because it's a call.
    		// R16 and R17 may be clobbered by linker trampoline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

           ]>,
           SingleBlockImplicitTerminator<"YieldOp">,
           TF_GeneratorOpSideEffect,
          ]> {
      let summary = "Regional version of GeneratorDataset";
    
      let description = [{
    Creates a dataset that invokes its 'next' region to generate elements. Conceptually,
    within MLIR, we treat this op as if it fills a buffer with all the results right away,
    and those results are then passed (through the variant tensor result) to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. src/sync/atomic/atomic_test.go

    	}
    	n := int(1e6)
    	if testing.Short() {
    		n = int(1e4)
    	}
    	const procs = 8
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(procs))
    	// Disable the GC because hammerStoreLoadPointer invokes
    	// write barriers on values that aren't real pointers.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	// Ensure any in-progress GC is finished.
    	runtime.GC()
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // For implicit invoke, we resolve the calleeExpression of the CallExpression to the call that creates the receiver of this
                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
                    //   f() // calleeExpression `f` resolves to the local variable access, while `f()` resolves to the implicit `invoke` call.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top