Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for requestKind (0.14 sec)

  1. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // The SHAKE-256 and -128 functions have a generic security strength of 256 and
    // 128 bits against all attacks, provided that at least 2x bits of their output
    // is used.  Requesting more than 64 or 32 bytes of output, respectively, does
    // not increase the collision-resistance of the SHAKE functions.
    //
    // # The sponge construction
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    	TransportUDS = "uds"
    	// StageConnect indicates that the dial failed at establishing connection to the proxy server.
    	StageConnect = "connect"
    	// StageProxy indicates that the dial failed at requesting the proxy server to proxy.
    	StageProxy = "proxy"
    )
    
    var (
    	// Use buckets ranging from 5 ms to 12.5 seconds.
    	latencyBuckets = []float64{0.005, 0.025, 0.1, 0.5, 2.5, 12.5}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/kubelet/qos/policy.go

    	}
    
    	// Burstable containers are a middle tier, between Guaranteed and Best-Effort. Ideally,
    	// we want to protect Burstable containers that consume less memory than requested.
    	// The formula below is a heuristic. A container requesting for 10% of a system's
    	// memory will have an OOM score adjust of 900. If a process in container Y
    	// uses over 10% of memory, its OOM score will be 1000. The idea is that containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenModuleArtifactResolutionIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "requesting MavenModule for a project component"() {
            MavenHttpModule module = publishModule()
    
            when:
            fixture.requestComponent('MavenModule').requestArtifact('MavenPomArtifact')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules.go

    		return true
    	}
    	// attr.GetNamespace() is set to the name of the namespace for requests of the namespace object itself.
    	switch *r.Rule.Scope {
    	case v1.NamespacedScope:
    		// first make sure that we are not requesting a namespace object (namespace objects are cluster-scoped)
    		return r.Attr.GetResource() != namespaceResource && r.Attr.GetNamespace() != metav1.NamespaceNone
    	case v1.ClusterScope:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. internal/config/identity/tls/config.go

    	EnvIdentityTLSEnabled = "MINIO_IDENTITY_TLS_ENABLE"
    
    	// EnvIdentityTLSSkipVerify is an environment variable that controls whether
    	// MinIO verifies the client certificate present by the client
    	// when requesting temp. credentials.
    	// By default, MinIO always verify the client certificate.
    	//
    	// The client certificate verification should only be skipped
    	// when debugging or testing a setup since it allows arbitrary
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	EncodeVersioner runtime.GroupVersioner
    	// Transformer allows the value to be transformed prior to persisting into etcd.
    	Transformer value.Transformer
    
    	// CompactionInterval is an interval of requesting compaction from apiserver.
    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    	// CountMetricPollPeriod specifies how often should count metric be updated
    	CountMetricPollPeriod time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "requesting IvyModule for a project component"() {
            given:
            IvyHttpModule module = publishModule()
    
            when:
            fixture.requestComponent('IvyModule').requestArtifact('IvyDescriptorArtifact')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    carefully. Because of this, if you're interested in seeing a new feature in
    Guava, the best approach is to create an [issue][] (or comment on an existing
    issue if there is one) requesting the feature and describing specific use cases
    for it.
    
    If the feature has merit, it will go through a thorough process of API design
    and review. Any code should come after this.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cloudresource/cloud_request_manager.go

    		return nil, fmt.Errorf("failed to get instances from cloud provider")
    	}
    	return instances.NodeAddresses(context.TODO(), m.nodeName)
    }
    
    func (m *cloudResourceSyncManager) syncNodeAddresses() {
    	klog.V(5).InfoS("Requesting node addresses from cloud provider for node", "nodeName", m.nodeName)
    
    	addrs, err := m.getNodeAddresses()
    
    	m.nodeAddressesMonitor.L.Lock()
    	defer m.nodeAddressesMonitor.L.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top