Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 606 for delegated (0.46 sec)

  1. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

        final ListenableFuture<? extends V> delegate;
    
        SetFuture(ListenableFuture<? extends V> delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public void run() {
          if (isCancelled()) {
            return;
          }
    
          if (delegate instanceof AbstractFuture) {
            AbstractFuture<? extends V> other = (AbstractFuture<? extends V>) delegate;
            value = other.value;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

            access.listModuleVersions(dependency, result)
    
            then: 'work is delegated'
            1 * delegate.listModuleVersions(dependency, result)
    
            when: 'exception is thrown in resolution'
            repositoryBlacklister.getDisabledReason(REPOSITORY_ID) >> Optional.of(exception)
            effectiveRetries * delegate.listModuleVersions(dependency, result) >> { throw exception }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                    }
                }
                """
            )
        }
    
        @Test
        fun `polymorphic named domain object container delegated properties`() {
    
            testTaskContainerVia(
                "delegated-properties", before = beforeDelegatedProperties,
                script = """
    
                fun untyped() {
    
                    val foo: Task by tasks.getting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     * `getValue` operator based on the static type of the delegate.
     */
    class ExistingDomainObjectDelegate<T>
    private constructor(
        internal val delegate: T
    ) {
        companion object {
            fun <T> of(delegate: T) =
                ExistingDomainObjectDelegate(delegate)
        }
    }
    
    
    /**
     * Gets the delegate value.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	}
    	w.hijacked = true
    	klog.V(6).Infof("Hijack returning websocket tunneling net.Conn")
    	return w.conn, nil, nil
    }
    
    // Header is delegated to the stored "http.ResponseWriter".
    func (w *tunnelingResponseWriter) Header() http.Header {
    	return w.w.Header()
    }
    
    // Write is delegated to the stored "http.ResponseWriter".
    func (w *tunnelingResponseWriter) Write(p []byte) (int, error) {
    	w.mu.Lock()
    	defer w.mu.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            override fun toString(): String = "CrossProjectModelAccessProjectEvaluationListener($delegate)"
        }
    
        // region delegated members
        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<*>) =
            delegate.apply(closure)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		if err != nil && s.RemoteKubeConfigFileOptional {
    			if err != rest.ErrNotInCluster {
    				klog.Warningf("failed to read in-cluster kubeconfig for delegated authentication: %v", err)
    			}
    			return nil, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get delegated authentication kubeconfig: %v", err)
    	}
    
    	// set high qps/burst limits since this will effectively limit API server responsiveness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// upload config. If the telemetryChildVar variable is still set to "1",
    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    		os.Setenv(telemetryChildVar, "2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

        }
    
        def "mixes in toString() implementation that delegates to delegate object when it has a displayName property"() {
            def state = Stub(ModelElementState)
            def delegate = new Object() {
                String getDisplayName() {
                    return "<delegate>"
                }
            }
    
            expect:
            def proxyClass = generate(SomeType, delegate.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Re-sort execution order such that delegated ops stay together";
      let constructor = "CreatePartitionedTopologicalSortPass()";
        let description = [{
          This transformation reorders operations such that operations that will be
          executed by the Flex delegate will be followed by another Flex delegated
          operator, if possible. The reordering uses the same greedy procedure that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top