Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,843 for lake (0.06 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    		config := testCase.config
    		resourceQuota := testCase.quota
    		kubeClient := fake.NewSimpleClientset(resourceQuota)
    		if testCase.anotherQuota != nil {
    			kubeClient = fake.NewSimpleClientset(resourceQuota, testCase.anotherQuota)
    		}
    		indexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{"namespace": cache.MetaNamespaceIndexFunc})
    		stopCh := make(chan struct{})
    		defer close(stopCh)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/net/http/httptest/server.go

    func (s *Server) CloseClientConnections() {
    	s.mu.Lock()
    	nconn := len(s.conns)
    	ch := make(chan struct{}, nconn)
    	for c := range s.conns {
    		go s.closeConnChan(c, ch)
    	}
    	s.mu.Unlock()
    
    	// Wait for outstanding closes to finish.
    	//
    	// Out of paranoia for making a late change in Go 1.6, we
    	// bound how long this can wait, since golang.org/issue/14291
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller_test.go

    					return true, nil, apierrors.NewConflict(action.GetResource().GroupResource(), "fake name", errors.New("fake conflict"))
    				})
    			}
    			setupMetrics()
    			informerFactory := informers.NewSharedInformerFactory(fakeKubeClient, controller.NoResyncPeriodFunc())
    			podInformer := informerFactory.Core().V1().Pods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/package.go

    import (
    	"fmt"
    )
    
    // A Package describes a Go package.
    type Package struct {
    	path      string
    	name      string
    	scope     *Scope
    	imports   []*Package
    	complete  bool
    	fake      bool   // scope lookup errors are silently dropped if package is fake (internal use only)
    	cgo       bool   // uses of this package will be rewritten into uses of declarations from _cgo_gotypes.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/image-auto.yaml

          - v1beta1
        clientConfig:
          service:
            name: fake
            namespace: istio-system
        name: namespace.sidecar-injector.istio.io
        namespaceSelector:
          matchLabels:
            istio-injection: enabled
      - admissionReviewVersions:
          - v1beta1
        clientConfig:
          service:
            name: fake
            namespace: istio-system
        name: object.sidecar-injector.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_cr_client.go

    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	v1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1"
    	rest "k8s.io/client-go/rest"
    	testing "k8s.io/client-go/testing"
    )
    
    type FakeCrV1 struct {
    	*testing.Fake
    }
    
    func (c *FakeCrV1) Examples(namespace string) v1.ExampleInterface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. samples/bookinfo/src/build-services.sh

      BOOKINFO_TAG="${BOOKINFO_TAG},latest"
    fi
    
    # Pass input args to the command. This allows using --push, --load, etc
    env TAGS="${BOOKINFO_TAG}" HUB="${BOOKINFO_HUB}" \
      docker buildx bake -f samples/bookinfo/src/docker-bake.hcl "$@"
    
    if [[ "${BOOKINFO_UPDATE}" == "true" ]]; then
    # Update image references in the yaml files
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate_test.go

    	"testing"
    
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	auditv1 "k8s.io/apiserver/pkg/apis/audit/v1"
    	"k8s.io/apiserver/plugin/pkg/audit/fake"
    	// Importing just for the schema definitions.
    	_ "k8s.io/apiserver/plugin/pkg/audit/webhook"
    )
    
    var (
    	defaultConfig = Config{
    		MaxBatchSize: 4 * 1024 * 1024,
    		MaxEventSize: 100 * 1024,
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  9. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/discovery"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/client-go/metadata"
    	metadatafake "k8s.io/client-go/metadata/fake"
    	restclient "k8s.io/client-go/rest"
    	core "k8s.io/client-go/testing"
    	"k8s.io/klog/v2/ktesting"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    func TestFinalized(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Stopwatch.java

     *
     * log.info("time: " + stopwatch); // formatted string like "12.3 ms"
     * }</pre>
     *
     * <p>The state-changing methods are not idempotent; it is an error to start or stop a stopwatch
     * that is already in the desired state.
     *
     * <p>When testing code that uses this class, use {@link #createUnstarted(Ticker)} or {@link
     * #createStarted(Ticker)} to supply a fake or mock ticker. This allows you to simulate any valid
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top