Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 308 for binder (0.12 sec)

  1. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

      private val finder = FastFallbackExchangeFinder(routePlanner, taskRunner)
    
      @AfterEach
      fun tearDown() {
        taskFaker.close()
        routePlanner.close()
      }
    
      @Test
      fun takeConnectedConnection() {
        val plan0 = routePlanner.addPlan()
        plan0.connectState = TLS_CONNECTED
    
        taskRunner.newQueue().execute("connect") {
          val result0 = finder.find()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBinder.java

        private final Collection<RuleBinder> binders;
    
        private int inputsBound;
        private final List<ModelBinding> inputBindings;
    
        public RuleBinder(BindingPredicate subjectReference, List<BindingPredicate> inputReferences, ModelAction action, Collection<RuleBinder> binders) {
            this.action = action;
            this.inputReferences = inputReferences;
            this.binders = binders;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderBase.kt

                val fqNameString = packageFqName.asString()
                buildSet {
                    forEachNonKotlinPsiElementFinder(project) { finder ->
                        val psiPackage = finder.findPackage(fqNameString) ?: return@forEachNonKotlinPsiElementFinder
                        for (subPackage in finder.getSubPackages(psiPackage, searchScope)) {
                            val name = subPackage.name?.let(Name::identifierIfValid) ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            def binDir = file('fake-bin')
    
            then:
            def path
            if (OperatingSystem.current().windows) {
                path = ''
            } else {
                // Set up a fake bin directory, containing the things that the script needs, minus any java that might be in /usr/bin
                links.each { linkToBinary(it, binDir) }
                path = binDir.absolutePath
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.current().getExecutableName("java"))
            return jdkHome
        }
    
        private TestFile createJreInstallation(String version) {
            def jdkHome = temporaryFolder.createDir("jdk-$version")
            def jreHome = jdkHome.file("jre").createDir()
            def binDir = jreHome.createDir("bin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. cluster/images/etcd/migrate/options.go

    // for each version in the bundledVersions list.
    func validateBundledVersions(bundledVersions SupportedVersions, binDir string) error {
    	for _, v := range bundledVersions {
    		for _, binaryName := range []string{"etcd", "etcdctl"} {
    			fn := filepath.Join(binDir, fmt.Sprintf("%s-%s", binaryName, v))
    			if _, err := os.Stat(fn); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/builder.go

    type Builder interface {
    	// With adds a new Echo configuration to the Builder. Once built, the instance
    	// pointer will be updated to point at the new Instance.
    	With(i *echo.Instance, cfg echo.Config) Builder
    
    	// WithConfig mimics the behavior of With, but does not allow passing a reference
    	// and returns an echoboot builder rather than a generic echo builder.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/builder.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. docs/de/docs/reference/staticfiles.md

    # Statische Dateien – `StaticFiles`
    
    Sie können die `StaticFiles`-Klasse verwenden, um statische Dateien wie JavaScript, CSS, Bilder, usw. bereitzustellen.
    
    Lesen Sie mehr darüber in der [FastAPI-Dokumentation zu statischen Dateien](../tutorial/static-files.md).
    
    Sie können sie direkt von `fastapi.staticfiles` importieren:
    
    ```python
    from fastapi.staticfiles import StaticFiles
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:58 UTC 2024
    - 426 bytes
    - Viewed (0)
Back to top