Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 182 for mcall (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    There is no way to provide values by argument name.
    
    To call a Kotlin function that has default arguments from Groovy, always pass values for all the function parameters.
    
    ==== Calling Groovy from Kotlin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    // notice:
    //
    // 1. Every 'if' statement has a matching 'else' (exception: simple error
    //    checks for a client API call)
    // 2. Things that may seem obvious are commented explicitly
    //
    // We call this style 'space shuttle style'. Space shuttle style is meant to
    // ensure that every branch and condition is considered and accounted for -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    }
    
    // Populates desiredStateOfWorld cache with one volume/pod.
    // Enables controllerAttachDetachEnabled.
    // Calls Run()
    // Verifies one mount call is made and no unmount calls.
    // Deletes volume/pod from desired state of world.
    // Verifies one unmount call is made.
    // Verifies there are no attach/detach calls made.
    func Test_Run_Positive_VolumeUnmountControllerAttachEnabled(t *testing.T) {
    	// Arrange
    	node := &v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      llvm::SetVector<Value> inputs;
      for (Operation* op : ops) {
        for (Value operand : op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!ops.contains(defining_op)) inputs.insert(operand);
        }
      }
      // Find the output edges to form the set of resutls of the new function call.
      llvm::SetVector<OpResult> results;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	SuccessAndFailOnSetupVolumeName = "success-and-failed-setup-device-name"
    
    	// TimeoutOnMountDeviceVolumeName will cause MountDevice call to timeout but Setup will finish.
    	TimeoutOnMountDeviceVolumeName = "timeout-mount-device-volume"
    	// TimeoutAndFailOnMountDeviceVolumeName will cause first MountDevice call to timeout but second call will fail
    	TimeoutAndFailOnMountDeviceVolumeName = "timeout-and-fail-mount-device-name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "CALLtail", argLength: -1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true, tailCall: true},                                 // tail call static function aux.(*obj.LSym).  last arg=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. fastapi/param_functions.py

        dependency: Annotated[
            Optional[Callable[..., Any]],
            Doc(
                """
                A "dependable" callable (like a function).
    
                Don't call it directly, FastAPI will call it for you, just pass the object
                directly.
                """
            ),
        ] = None,
        *,
        use_cache: Annotated[
            bool,
            Doc(
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    //
    // When we call from Go to C we call _cgo_tsan_acquire.
    // When the C function returns we call _cgo_tsan_release.
    // Similarly, when C calls back into Go we call _cgo_tsan_release
    // and then call _cgo_tsan_acquire when we return to C.
    // These calls tell TSAN that there is a serialization point at the C call.
    //
    // This is necessary because TSAN, which is a C/C++ tool, can not see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    			setter := NodeAddress(nodeIPs,
    				nodeIPValidator,
    				hostname,
    				testCase.hostnameOverride,
    				testCase.cloudProviderType == cloudProviderExternal,
    				cloud,
    				nodeAddressesFunc)
    
    			// call setter on existing node
    			err := setter(ctx, existingNode)
    			if err != nil && !testCase.shouldError {
    				t.Fatalf("unexpected error: %v", err)
    			} else if err != nil && testCase.shouldError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/html/template/escape_test.go

    		},
    		{
    			// It is ambiguous whether 1.5 should be 1\.5 or 1.5.
    			// Either `var x = 1/- 1.5 /i.test(x)`
    			// where `i.test(x)` is a method call of reference i,
    			// or `/-1\.5/i.test(x)` which is a method call on a
    			// case insensitive regular expression.
    			`<script>{{if false}}var x = 1{{end}}/-{{"1.5"}}/i.test(x)</script>`,
    			`'/' could start a division or regexp: "/-"`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top