Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for 1000Mi (0.09 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepositoryTest.groovy

            createIndexedCache(_) >> outputFiles
        }
        def cacheDecorator = Mock(CacheDecorator)
        def inMemoryCacheDecoratorFactory = Stub(DefaultInMemoryCacheDecoratorFactory) {
            decorator(100000, true) >> cacheDecorator
        }
        def repository = new DefaultOutputFilesRepository(cacheAccess, inMemoryCacheDecoratorFactory)
        def fileSystemAccess = TestFiles.fileSystemAccess()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run_test.go

    			},
    		},
    		{
    			"ipnets",
    			func(cfg *config.Config) {
    				cfg.OutboundIPRangesInclude = "10.0.0.0/8"
    			},
    		},
    		{
    			"ipnets-with-kube-virt-interfaces",
    			func(cfg *config.Config) {
    				cfg.KubeVirtInterfaces = "eth1,eth2"
    				cfg.OutboundIPRangesInclude = "10.0.0.0/8"
    			},
    		},
    		{
    			"inbound-ports-include",
    			func(cfg *config.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/threadpprof.go

    /*
    #include <stdint.h>
    #include <time.h>
    #include <pthread.h>
    
    int threadSalt1;
    int threadSalt2;
    
    static pthread_t tid;
    
    void cpuHogThread() {
    	int foo = threadSalt1;
    	int i;
    
    	for (i = 0; i < 100000; i++) {
    		if (foo > 0) {
    			foo *= foo;
    		} else {
    			foo *= foo + 1;
    		}
    	}
    	threadSalt2 = foo;
    }
    
    void cpuHogThread2() {
    }
    
    struct cgoTracebackArg {
    	uintptr_t  context;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 22:59:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    	for _, test := range []struct {
    		a  int64Amount
    		b  int64
    		c  int64Amount
    		ok bool
    	}{
    		{int64Amount{value: 100, scale: 1}, 1000, int64Amount{value: 100000, scale: 1}, true},
    		{int64Amount{value: 100, scale: -1}, 1000, int64Amount{value: 100000, scale: -1}, true},
    		{int64Amount{value: 1, scale: 100}, 10, int64Amount{value: 1, scale: 100}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepository.java

            return IndexedCacheParameters.of("outputFiles", String.class, OutputKind.class)
                .withCacheDecorator(inMemoryCacheDecoratorFactory.decorator(100000, true));
        }
    
        @Override
        public void close() throws IOException {
            cacheAccess.close();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/registry/core/node/strategy_test.go

    			compareNode: makeNode([]string{"2000::/10"}, false, false),
    		},
    		{
    			name:        "single family ipv4",
    			node:        makeNode([]string{"10.0.0.0/8"}, false, false),
    			compareNode: makeNode([]string{"10.0.0.0/8"}, false, false),
    		},
    		{
    			name:        "dualstack 4-6",
    			node:        makeNode([]string{"10.0.0.0/8", "2000::/10"}, false, false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/server/server_test.go

    	scenarios := map[string]scenario{
    		"valid": {
    			wrapFunc:      func(args *Options) {},
    			expectedError: "",
    		},
    		"invalid port": {
    			wrapFunc:      func(args *Options) { args.Port = 100000 },
    			expectedError: "port number 100000 must be in the range 1..65535",
    		},
    	}
    
    	for name, scenario := range scenarios {
    		t.Run(name, func(tt *testing.T) {
    			runTestCode(name, tt, scenario)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/runtime/lfstack_test.go

    		t.Fatalf("stack is not empty")
    	}
    	if *stack != 0 {
    		t.Fatalf("stack is not empty")
    	}
    }
    
    func TestLFStackStress(t *testing.T) {
    	const K = 100
    	P := 4 * GOMAXPROCS(-1)
    	N := 100000
    	if testing.Short() {
    		N /= 10
    	}
    	// Create 2 stacks.
    	stacks := [2]*uint64{new(uint64), new(uint64)}
    	// Push K elements randomly onto the stacks.
    	sum := 0
    	for i := 0; i < K; i++ {
    		sum += i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 23:12:04 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. cmd/mrf.go

    package cmd
    
    import (
    	"context"
    	"time"
    
    	"github.com/google/uuid"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    const (
    	mrfOpsQueueSize = 100000
    )
    
    // partialOperation is a successful upload/delete of an object
    // but not written in all disks (having quorum)
    type partialOperation struct {
    	bucket              string
    	object              string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/sds/server.go

    import (
    	"net"
    	"time"
    
    	"go.uber.org/atomic"
    	"google.golang.org/grpc"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/uds"
    )
    
    const (
    	maxStreams    = 100000
    	maxRetryTimes = 5
    )
    
    // Server is the gPRC server that exposes SDS through UDS.
    type Server struct {
    	workloadSds *sdsservice
    
    	grpcWorkloadListener net.Listener
    
    	grpcWorkloadServer *grpc.Server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top