Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for indices (0.16 sec)

  1. pkg/test/framework/components/environment/kube/settings.go

    	KubeConfig []string
    
    	// Indicates that the LoadBalancer services can obtain a public IP. If not, NodePort be used as a workaround
    	// for ingress gateway. KinD will not support LoadBalancer out of the box and requires a workaround such as
    	// MetalLB.
    	LoadBalancerSupported bool
    
    	// Architecture indicates the architecture of the cluster under test
    	Architecture string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/rate_limiters.go

    	return r.interval
    }
    
    // NumRequeues returns back how many failures the item has had
    func (r *FixedItemIntervalRateLimiter) NumRequeues(item string) int {
    	return 1
    }
    
    // Forget indicates that an item is finished being retried.
    func (r *FixedItemIntervalRateLimiter) Forget(item string) {
    }
    
    // NewDefaultHPARateLimiter creates a rate limiter which limits overall (as per the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	Resources []APIResourceDiscovery `json:"resources,omitempty" protobuf:"bytes,2,rep,name=resources"`
    	// freshness marks whether a group version's discovery document is up to date.
    	// "Current" indicates the discovery document was recently
    	// refreshed. "Stale" indicates the discovery document could not
    	// be retrieved and the returned discovery document may be
    	// significantly out of date. Clients that require the latest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/features/features.go

    					requestedVersion, k, minVersion)
    			}
    		}
    	}
    	return nil
    }
    
    // Enabled indicates whether a feature name has been enabled
    func Enabled(featureList map[string]bool, featureName string) bool {
    	if enabled, ok := featureList[featureName]; ok {
    		return enabled
    	}
    	return InitFeatureGates[featureName].Default
    }
    
    // Supports indicates whether a feature name is supported on the given
    // feature set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. api/maven-api-di/src/main/java/org/apache/maven/api/di/MojoExecutionScoped.java

    import java.lang.annotation.Target;
    
    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that the annotated bean has a lifespan limited to a given mojo execution,
     * which means each mojo execution will result in a different instance being injected.
     *
     * @since 4.0.0
     */
    @Scope
    @Documented
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/internal/abi/abi_generic.go

    	// registers on the current platform from the ABI's perspective.
    	//
    	// Since Go only supports 32-bit and 64-bit floating point primitives,
    	// this number should be either 0, 4, or 8. 0 indicates no floating
    	// point registers for the ABI or that floating point values will be
    	// passed via the softfloat ABI.
    	//
    	// For platforms that support larger floating point register widths,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. internal/config/cache/cache.go

    	Endpoint string `json:"endpoint"`
    
    	// BlockSize indicates the maximum object size below which
    	// data is cached and fetched remotely from DRAM.
    	BlockSize int64
    
    	// Is the HTTP client used for communicating with mcache server
    	clnt *http.Client
    }
    
    var configLock sync.RWMutex
    
    // Enabled - indicates if cache is enabled or not
    func (c *Config) Enabled() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildFeatureIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheBuildFeatureIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "build feature indicates requested and active status"() {
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile """
                import org.gradle.api.configuration.BuildFeatures
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/ExternalDependencyDescriptorTest.groovy

            def copy = metadata.withRequested(target)
    
            then:
            copy != metadata
            copy.selector == target
        }
    
        def "returns a module component selector if descriptor indicates a default dependency"() {
            given:
            def metadata = create(requested)
    
            when:
            ComponentSelector componentSelector = metadata.getSelector()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/3-iter.md

    The new [iter] package provides the basic definitions for working with
    user-defined iterators.
    
    The [slices] package adds several functions that work with iterators:
    - [All](/pkg/slices#All) returns an iterator over slice indexes and values.
    - [Values](/pkg/slices#Values) returns an iterator over slice elements.
    - [Backward](/pkg/slices#Backward) returns an iterator that loops over
      a slice backward.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top