Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,062 for delegated (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_context.go

    func WatchInitialized(ctx context.Context) {
    	if signal, ok := initializationSignalFrom(ctx); ok {
    		signal.Signal()
    	}
    }
    
    // RequestDelegated informs the priority and fairness dispatcher that
    // a given request has been delegated to an aggregated API
    // server. No-op when priority and fairness is disabled.
    func RequestDelegated(ctx context.Context) {
    	// The watch initialization signal doesn't traverse request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 14 14:39:15 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/config.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package imagepolicy contains an admission controller that configures a webhook to which policy
    // decisions are delegated.
    package imagepolicy
    
    import (
    	"fmt"
    	"time"
    
    	"k8s.io/klog/v2"
    )
    
    const (
    	defaultRetryBackoff = time.Duration(500) * time.Millisecond
    	minRetryBackoff     = time.Duration(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/AppendableWriter.java

    import java.io.Writer;
    import javax.annotation.CheckForNull;
    
    /**
     * Writer that places all output on an {@link Appendable} target. If the target is {@link Flushable}
     * or {@link Closeable}, flush()es and close()s will also be delegated to the target.
     *
     * @author Alan Green
     * @author Sebastian Kanthak
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    class AppendableWriter extends Writer {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java

    import java.nio.charset.Charset;
    import java.util.Arrays;
    
    /**
     * Skeleton implementation of {@link HashFunction}, appropriate for non-streaming algorithms. All
     * the hash computation done using {@linkplain #newHasher()} are delegated to the {@linkplain
     * #hashBytes(byte[], int, int)} method.
     *
     * @author Dimitris Andreou
     */
    @Immutable
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Using Kotlin delegated properties
    ====
    include::sample[dir="snippets/kotlinDsl/containers-delegated-properties/kotlin",files="build.gradle.kts[tags=delegated-properties]"]
    ====
    <1> Uses the reference to the `myTask1` task rather than a task path
    
    
    [NOTE]
    ====
    The above rely on configuration avoidance APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

    /**
     * Selects a {@link ScriptPluginFactory} suitable for handling a given build script based
     * on its file name. Build script file names ending in ".gradle" are supported by the
     * {@link DefaultScriptPluginFactory}. Other files are delegated to the first available
     * matching implementation of the {@link ScriptingLanguage} SPI. If no provider
     * implementations matches for a given file name, handling falls back to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java

    import java.nio.charset.Charset;
    import java.util.Arrays;
    
    /**
     * Skeleton implementation of {@link HashFunction}, appropriate for non-streaming algorithms. All
     * the hash computation done using {@linkplain #newHasher()} are delegated to the {@linkplain
     * #hashBytes(byte[], int, int)} method.
     *
     * @author Dimitris Andreou
     */
    @Immutable
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

     *     <li>abstract methods that are present in the public type are bridged to the public implementation (see {@link BridgeMethodBinding})</li>
     *     <li>abstract methods that are present in the delegate type are delegated to an instance of the delegate type (see {@link DelegateMethodBinding})</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. 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)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertySetterSymbol.kt

        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
            if (fir is FirSyntheticPropertyAccessor) {
                fir.delegate.symbol.callableId
            } else null
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top