Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for lake (0.09 sec)

  1. pkg/test/framework/components/echo/common/deployment/external.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    const (
    	ExternalSvc      = "external"
    	ExternalHostname = "fake.external.com"
    )
    
    type External struct {
    	// Namespace where external echo app will be deployed
    	Namespace namespace.Instance
    
    	// All external echo instances with no sidecar injected
    	All echo.Instances
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/kube/version_test.go

    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"testing"
    
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    	fakediscovery "k8s.io/client-go/discovery/fake"
    )
    
    func TestIsAtLeastVersion(t *testing.T) {
    	tests := []struct {
    		name           string
    		clusterVersion uint
    		minorVersion   uint
    		want           bool
    	}{
    		{
    			name:           "exact match",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/diagnosticProvider/AbstractCollectDiagnosticsTest.kt

        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            doTestByKtFile(mainFile, testServices)
        }
    
        /**
         * [ktFile] may be a fake file for dangling module tests.
         */
        protected fun doTestByKtFile(ktFile: KtFile, testServices: TestServices) {
            fun TextRange.asLineColumnRange(): String {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/3-iter.md

      an existing slice.
    - [Sorted](/pkg/slices#Sorted) collects values from an iterator into a
      new slice, and then sorts the slice.
    - [SortedFunc](/pkg/slices#SortedFunc) is like `Sorted` but with a
      comparison function.
    - [SortedStableFunc](/pkg/slices#SortedStableFunc) is like `SortFunc`
      but uses a stable sort algorithm.
    - [Chunk](/pkg/slices#Chunk) returns an iterator over consecutive
      sub-slices of up to n elements of a slice.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	return &FakeWatcher{
    		result: make(chan Event),
    	}
    }
    
    func NewFakeWithChanSize(size int, blocking bool) *FakeWatcher {
    	return &FakeWatcher{
    		result: make(chan Event, size),
    	}
    }
    
    // Stop implements Interface.Stop().
    func (f *FakeWatcher) Stop() {
    	f.Lock()
    	defer f.Unlock()
    	if !f.stopped {
    		klog.V(4).Infof("Stopping fake watcher.")
    		close(f.result)
    		f.stopped = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  6. docs/en/docs/tutorial/background-tasks.md

    They tend to require more complex configurations, a message/job queue manager, like RabbitMQ or Redis, but they allow you to run background tasks in multiple processes, and especially, in multiple servers.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/plugin_manager_test.go

    	return &fakePluginHandler{}
    }
    
    // ValidatePlugin is a fake method
    func (f *fakePluginHandler) ValidatePlugin(pluginName string, endpoint string, versions []string) error {
    	f.Lock()
    	defer f.Unlock()
    	f.events = append(f.events, "validate "+pluginName)
    	return nil
    }
    
    // RegisterPlugin is a fake method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/perfcounters_test.go

    	testCases := map[string]struct {
    		counter        string
    		skipCheck      bool
    		expectErr      bool
    		expectedErrMsg string
    	}{
    		"CPU Query": {
    			counter: cpuQuery,
    			// TODO: remove skip once the test flake for CPU Query has been fixed.
    			skipCheck: true,
    		},
    		"Memory Prvate Working Set Query": {
    			counter: memoryPrivWorkingSetQuery,
    		},
    		"Memory Committed Bytes Query": {
    			counter: memoryCommittedBytesQuery,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/websockets.md

    ```console
    $ pip install websockets
    
    ---> 100%
    ```
    
    </div>
    
    ## WebSockets client
    
    ### In production
    
    In your production system, you probably have a frontend created with a modern framework like React, Vue.js or Angular.
    
    And to communicate using WebSockets with your backend you would probably use your frontend's utilities.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

                configurations.all {
                    resolutionStrategy {
                       capabilitiesResolution.withCapability('org.test:cap') {
                          $rule
                          because "we like testB better"
                       }
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:testA:1.0' {
                    expectGetMetadata()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top