Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,691 for identified (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    	// Use buckets ranging from 5 ms to 2.5 seconds (admission webhooks timeout at 30 seconds by default).
    	webhook := &metricSet{
    		latencies: metrics.NewHistogramVec(
    			&metrics.HistogramOpts{
    				Namespace:      namespace,
    				Subsystem:      subsystem,
    				Name:           "webhook_admission_duration_seconds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. src/go/types/objset.go

    // license that can be found in the LICENSE file.
    
    // This file implements objsets.
    //
    // An objset is similar to a Scope but objset elements
    // are identified by their unique id, instead of their
    // object name.
    
    package types
    
    // An objset is a set of objects identified by their unique id.
    // The zero value for objset is a ready-to-use empty objset.
    type objset map[string]Object // initialized lazily
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

        MODULES(StandardLocation.MODULE_PATH, "--module-path"),
    
        /**
         * The path identified by the Java {@code --upgrade-module-path} option.
         * The Java tools location is {@link StandardLocation#UPGRADE_MODULE_PATH}.
         */
        UPGRADE_MODULES(StandardLocation.UPGRADE_MODULE_PATH, "--upgrade-module-path"),
    
        /**
         * The path identified by the Java {@code --patch-module} option.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/internal/trace/raw/doc.go

    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    These events are identified in their spec by the HasData flag.
    
    The second special case consists of stack events. These events are identified
    by the IsStack flag. These events also have a trailing unsigned integer argument
    describing the number of stack frame descriptors that follow. Each stack frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/objset.go

    // license that can be found in the LICENSE file.
    
    // This file implements objsets.
    //
    // An objset is similar to a Scope but objset elements
    // are identified by their unique id, instead of their
    // object name.
    
    package types2
    
    // An objset is a set of objects identified by their unique id.
    // The zero value for objset is a ready-to-use empty objset.
    type objset map[string]Object // initialized lazily
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 23:30:38 UTC 2020
    - 928 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyPublicationResolver.java

     */
    public interface ProjectDependencyPublicationResolver {
        /**
         * Determines the coordinates of the given type for the root component of the
         * project identified by {@code identityPath}.
         *
         * @throws UnsupportedOperationException if the project cannot be resolved.
         */
        <T> T resolveComponent(Class<T> coordsType, Path identityPath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java

    import static java.util.function.Function.identity;
    import static java.util.stream.Collectors.collectingAndThen;
    import static java.util.stream.Collectors.toMap;
    
    /**
     * Provides information about artifacts (identified by groupId:artifactId string key) and classpath elements exported by
     * Maven core itself and loaded Maven core extensions.
     *
     * @since 3.3.0
     */
    public class CoreExports {
        private final Set<String> artifacts;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/os/33357.md

    The [Stat] function now sets the [ModeSocket] bit for
    files that are Unix sockets on Windows. These files are identified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 178 bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

    package org.gradle.internal.cc.impl
    
    import java.util.Stack
    
    
    /**
     * A tool for checking if a specific problem has already been reported in the current dynamic call in the dynamic calls stack.
     * A problem is identified using a key object.
     * The implementation should be thread-safe and should support tracking problems in multiple threads, each with its own call stack.
     */
    interface DynamicCallProblemReporting {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * A node identifier that uniquely identifies a variant within a component by the variant's name.
     *
     * Note: Generally, variants should be identified by their attributes and capabilities, as the name
     * is more of a human-readable identifier.
     */
    public class ComponentVariantNodeIdentifier implements NodeIdentifier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top