Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Invoke (0.16 sec)

  1. 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)
  2. src/runtime/asm_amd64.s

    	// invoke INT3. The debugger should write the argument
    	// frame for the call at SP, set up argument registers, push
    	// the trapping PC on the stack, set the PC to the function to
    	// call, set RDX to point to the closure (if a closure call),
    	// and resume execution.
    	//
    	// If the function returns, this will set R12 to 1 and invoke
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            complete(
                owner,
                /*
                 * Interruption doesn't propagate through a SetFuture chain (see getFutureValue), so
                 * don't invoke interruptTask.
                 */
                false);
          }
        }
      }
    
      // TODO(lukes): investigate using the @Contended annotation on these fields when jdk8 is
      // available.
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            complete(
                owner,
                /*
                 * Interruption doesn't propagate through a SetFuture chain (see getFutureValue), so
                 * don't invoke interruptTask.
                 */
                false);
          }
        }
      }
    
      // TODO(lukes): investigate using the @Contended annotation on these fields when jdk8 is
      // available.
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                            method.getName(),
                            format(paramType)));
                    }
                    params[i] = paramProvider.get();
                }
            }
            try {
                method.invoke(target, params);
            } catch (Exception e) {
                throw new ServiceLookupException(String.format("Could not configure services using %s.%s().",
                    method.getOwner().getSimpleName(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

    .EXAMPLE
      Suggested usage for dev/test:
        [Net.ServicePointManager]::SecurityProtocol = `
            [Net.SecurityProtocolType]::Tls12
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/k8s-node-setup.psm1 `
            -OutFile C:\k8s-node-setup.psm1
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/configure.ps1 `
            -OutFile C:\configure.ps1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    	return nil
    }
    
    // isSchedulableAfterClaimParametersChange is invoked for add and update claim parameters events reported by
    // an informer. It checks whether that change made a previously unschedulable
    // pod schedulable. It errs on the side of letting a pod scheduling attempt
    // happen. The delete claim event will not invoke it, so newObj will never be nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    			utilruntime.HandleError(fmt.Errorf("tombstone contained object that is not a job %+v", obj))
    			return
    		}
    	}
    	jm.cleanupPodFinalizers(jobObj)
    }
    
    // enqueueSyncJobImmediately tells the Job controller to invoke syncJob
    // immediately.
    // It is only used for Job events (creation, deletion, spec update).
    // obj could be an *batch.Job, or a DeletionFinalStateUnknown marker item.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.kotlin.dsl.GroovyInteroperabilityKt.invoke(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GroovyInteroperability.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  10. src/go/build/build.go

    // Then we reinvoke it for every dependency. But this is still better than not working at all.
    // See golang.org/issue/26504.
    func (ctxt *Context) importGo(p *Package, path, srcDir string, mode ImportMode) error {
    	// To invoke the go command,
    	// we must not being doing special things like AllowBinary or IgnoreVendor,
    	// and all the file system callbacks must be nil (we're meant to use the local file system).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top