Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 299 for fecero (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/server_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if e, a := test.expected, actualDefaultCertBytes[0]; !bytes.Equal(e, a) {
    				eCert, _ := cert.ParseCertsPEM(e)
    				aCert, _ := cert.ParseCertsPEM(a)
    				t.Fatalf("expected %v\n, got %v", GetHumanCertDetail(eCert[0]), GetHumanCertDetail(aCert[0]))
    			}
    		})
    	}
    
    }
    
    func createListener(network, addr string) (net.Listener, int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/spec/typeAliases1.23b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package aliasTypes
    
    type _ = int
    type _[P any] = int
    
    // A type alias may have fewer type parameters than its RHS.
    type RHS[P any, Q ~int] struct {
    	p P
    	q Q
    }
    
    type _[P any] = RHS[P, int]
    
    // Or it may have more type parameters than its RHS.
    type _[P any, Q ~int, R comparable] = RHS[P, Q]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/config/types.go

    	ConcurrentServiceEndpointSyncs int32
    
    	// maxEndpointsPerSlice is the maximum number of endpoints that will be
    	// added to an EndpointSlice. More endpoints per slice will result in fewer
    	// and larger endpoint slices, but larger resources.
    	MaxEndpointsPerSlice int32
    
    	// EndpointUpdatesBatchPeriod can be used to batch endpoint updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. test/init1.go

    	// Generate 1,000 MB of garbage, only retaining 1 MB total.
    	for i := 0; i < N; i++ {
    		x = []byte(s)
    	}
    
    	// Verify that the garbage collector ran by seeing if we
    	// allocated fewer than N*MB bytes from the system.
    	runtime.ReadMemStats(memstats)
    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    		println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/ConstructorComparatorTest.groovy

    package org.gradle.internal.instantiation.generator
    
    import spock.lang.Specification
    
    class ConstructorComparatorTest extends Specification {
        def comparator = new ConstructorComparator()
    
        def "constructors with fewer parameters are first"() {
            def lhs = Stub(ClassGenerator.GeneratedConstructor)
            lhs.parameterTypes >> [String]
            def rhs = Stub(ClassGenerator.GeneratedConstructor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. cmd/tier.go

    	}
    
    	cfg := NewTierConfigMgr()
    	switch version := binary.LittleEndian.Uint16(data[2:4]); version {
    	case tierConfigV1, tierConfigVersion:
    		if _, decErr := cfg.UnmarshalMsg(data[4:]); decErr != nil {
    			return nil, decErr
    		}
    	default:
    		return nil, fmt.Errorf("tierConfigInit: unknown version: %d", version)
    	}
    
    	return cfg, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceReadResult.java

        /**
         * The number of <b>content</b> bytes read.
         * <p>
         * This is not guaranteed to be the number of bytes <b>transferred</b>.
         * For example, this resource may be content encoded (e.g. compression, fewer bytes transferred).
         * Or, it might be transfer encoded (e.g. HTTP chunked transfer, more bytes transferred).
         * Or, both.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.List;
    
    public class ChildMapFactory {
        /**
         * If a node has fewer children, we use a linear search for the child.
         * We use this limit since {@link VfsRelativePath#compareToFirstSegment(String, CaseSensitivity)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // leastResourceScorer favors nodes with fewer requested resources.
    // It calculates the percentage of memory, CPU and other resources requested by pods scheduled on the node, and
    // prioritizes based on the minimum of the average of the fraction of requested to capacity.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    	return nn, nil
    }
    
    func (h *mac) Sum(out *[TagSize]byte) {
    	state := h.macState
    	remainder := h.buffer[:h.offset]
    
    	// Use the generic implementation if we have 2 or fewer blocks left
    	// to sum. The vector implementation has a higher startup time.
    	if cpu.S390X.HasVX && len(remainder) > 2*TagSize {
    		updateVX(&state, remainder)
    	} else if len(remainder) > 0 {
    		updateGeneric(&state, remainder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top