Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for actors (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	factory := informers.NewSharedInformerFactory(clientset, 0)
    	controller := utilflowcontrol.New(factory, clientset.FlowcontrolV1(), serverConcurrency)
    
    	factory.Start(stopCh)
    
    	// wait for the informer cache to sync.
    	timeout, cancel := context.WithTimeout(context.TODO(), 5*time.Second)
    	defer cancel()
    	cacheSyncDone := factory.WaitForCacheSync(timeout.Done())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

    /*
     * Copyright 2012 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        @Override
        public <T> T callAndResetResolutionState(Factory<T> factory) {
            warnOnInvalidInternalAPIUsage("callAndResetResolutionState()", ProperMethodUsage.RESOLVABLE);
            try {
                // Prevent the state required for resolution from being discarded if anything in the
                // factory resolves this configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    //go:build linux
    // +build linux
    
    /*
    Copyright 2015 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    			p.reuse(sub)
    		} else {
    			re.Sub = append(re.Sub, sub)
    		}
    	}
    	if op == OpAlternate {
    		re.Sub = p.factor(re.Sub)
    		if len(re.Sub) == 1 {
    			old := re
    			re = re.Sub[0]
    			p.reuse(old)
    		}
    	}
    	return re
    }
    
    // factor factors common prefixes from the alternation list sub.
    // It returns a replacement list that reuses the same storage and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// disproportionately affect small heaps: as heaps get smaller, the pacer's inputs get fuzzier.
    	// Shorter GC cycles and less GC work means noisy external factors like the OS scheduler have a
    	// greater impact.
    
    	memoryLimit := uint64(c.memoryLimit.Load())
    
    	// Compute term 1.
    	nonHeapMemory := mappedReady - heapFree - heapAlloc
    
    	// Compute term 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // HTTP client implementation. See RFC 7230 through 7235.
    //
    // This is the low-level Transport implementation of RoundTripper.
    // The high-level interface is in client.go.
    
    package http
    
    import (
    	"bufio"
    	"compress/gzip"
    	"container/list"
    	"context"
    	"crypto/tls"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    /*
    Copyright 2016 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				// the watch was established otherwise
    				// we would be blocking on cache.Watch(...)
    				// in addition to that, the tests are serial in nature,
    				// meaning that there is no other actor
    				// that could add items to the database,
    				// which could result in receiving new items.
    				// given that waiting 1s seems okay
    				if tt.expectedEvent != nil {
    					t.Errorf("Failed to get an event")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"fmt"
    	"go/constant"
    	"internal/types/errors"
    	"sync"
    )
    
    // Object represents an ir.Node, but without needing to import cmd/compile/internal/ir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top