Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 259 for dedupes (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1/customresourcedefinition.go

    }
    
    // NewCustomResourceDefinitionInformer constructs a new informer for CustomResourceDefinition type.
    // Always prefer using an informer factory to get a shared informer instead of getting an independent
    // one. This reduces memory footprint and number of connections to the server.
    func NewCustomResourceDefinitionInformer(client clientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1beta1/customresourcedefinition.go

    }
    
    // NewCustomResourceDefinitionInformer constructs a new informer for CustomResourceDefinition type.
    // Always prefer using an informer factory to get a shared informer instead of getting an independent
    // one. This reduces memory footprint and number of connections to the server.
    func NewCustomResourceDefinitionInformer(client clientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/text/template/57646.md

    Templates now support the new "else with" action, which reduces template complexity in some use cases....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 103 bytes
    - Viewed (0)
  4. releasenotes/notes/istiod-sds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
      **Improved** Gateway certificates to be read and distributed from Istiod, rather than in the gateway pods.
      This reduces the permissions required in the gateways, improves performance, and will make certificate reading
      more flexible in the future. This change is fully backwards compatible with the old method, and requires no changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 13 22:09:11 UTC 2020
    - 549 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    	for _, prefix := range prefixSet {
    		if strings.HasPrefix(string(item), prefix) {
    			return true
    		}
    	}
    	return false
    }
    
    // Intersection returns the intersection of both list of resources, deduped and sorted
    func Intersection(a []corev1.ResourceName, b []corev1.ResourceName) []corev1.ResourceName {
    	result := make([]corev1.ResourceName, 0, len(a))
    	for _, item := range a {
    		if Contains(result, item) {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  6. src/cmd/link/testdata/testHashedSyms/p.go

    // This test case contains two static temps (the array literals)
    // with same contents but different sizes. The linker should not
    // report a hash collision. The linker can (and actually does)
    // dedup the two symbols, by keeping the larger symbol. The dedup
    // is not a requirement for correctness and not checked in this test.
    // We do check the emitted symbol contents are correct, though.
    
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 21 21:14:19 UTC 2020
    - 908 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/cr/v1/example.go

    	namespace        string
    }
    
    // NewExampleInformer constructs a new informer for Example type.
    // Always prefer using an informer factory to get a shared informer instead of getting an independent
    // one. This reduces memory footprint and number of connections to the server.
    func NewExampleInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  8. src/go/parser/testdata/slices.go2

    package slices
    
    // Map turns a []T1 to a []T2 using a mapping function.
    func Map[T1, T2 any](s []T1, f func(T1) T2) []T2 {
    	r := make([]T2, len(s))
    	for i, v := range s {
    		r[i] = f(v)
    	}
    	return r
    }
    
    // Reduce reduces a []T1 to a single value using a reduction function.
    func Reduce[T1, T2 any](s []T1, initializer T2, f func(T2, T1) T2) T2 {
    	r := initializer
    	for _, v := range s {
    		r = f(r, v)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 666 bytes
    - Viewed (0)
  9. pkg/probe/dialer_windows.go

    limitations under the License.
    */
    
    package probe
    
    import (
    	"net"
    	"syscall"
    )
    
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/reduceGraph.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.provider.plugins.precompiled.tasks
    
    
    /**
     * Reduces the given [graph] so that it only includes external node references,
     * e.g.:
     * ```
     * reduce({a: [b, c], b: [e1], c: [d], d: [e2]}) => {a: [e1, e2], b: [e1], c: [e2], d: [e2]}
     * ```
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top