Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for expectedly (0.3 sec)

  1. pilot/pkg/config/kube/gateway/controller_test.go

    		},
    	}
    	httpRouteSpec = &k8s.HTTPRouteSpec{
    		CommonRouteSpec: k8s.CommonRouteSpec{ParentRefs: []k8s.ParentReference{{
    			Name: "gwspec",
    		}}},
    		Hostnames: []k8s.Hostname{"test.cluster.local"},
    	}
    
    	expectedgw = &networking.Gateway{
    		Servers: []*networking.Server{
    			{
    				Port: &networking.Port{
    					Number:   9009,
    					Name:     "default",
    					Protocol: "HTTP",
    				},
    				Hosts: []string{"*/*"},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	if list, ok := in.(*unstructured.UnstructuredList); ok {
    		for i := range list.Items {
    			expectedGV := list.Items[i].GroupVersionKind().GroupVersion()
    			if !c.validVersions[expectedGV] {
    				return nil, fmt.Errorf("request to convert CR list failed, list index %d has invalid group/version: %s", i, expectedGV.String())
    			}
    		}
    	}
    	return c.converter.Convert(in, toGVK.GroupVersion())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. cni/pkg/install/kubeconfig_test.go

    		KubeconfigFilename:    "dork.cfg",
    	}
    
    	expectedKC, err := createKubeConfig(cfg)
    	if err != nil {
    		t.Fatalf("expected no error: %+v", err)
    	}
    	os.WriteFile(filepath.Join(cfg.MountedCNINetDir, cfg.KubeconfigFilename), []byte(expectedKC.Full), 0o644)
    
    	err = checkExistingKubeConfigFile(cfg, expectedKC)
    	if err != nil {
    		t.Fatalf("expected no error, matching kubeconfig present, got %+v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/component/DefaultComponentIdentifierFactoryTest.groovy

            def project = Mock(ProjectInternal)
            def expectedId = Stub(ProjectComponentIdentifier)
            def module = new ProjectBackedModule(project)
    
            when:
            def componentIdentifier = componentIdentifierFactory.createComponentIdentifier(module)
    
            then:
            project.owner >> Stub(ProjectState) {
                getComponentIdentifier() >> expectedId
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressDaemonErrorsCrossVersionSpec.groovy

        boolean killed = false
    
        void setup() {
            toolingApi.requireIsolatedDaemons()
        }
    
        def "should received failed event when daemon disappears unexpectedly with TAPI higher 2.4"() {
            given:
            goodCode()
            def sync = server.expectAndBlock('sync')
    
            when:
            def result = []
            withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. releasenotes/notes/47538.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 47423
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 11 13:19:22 UTC 2023
    - 216 bytes
    - Viewed (0)
  7. releasenotes/notes/48780.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 47423
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 216 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/sizeof_test.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"reflect"
    	"testing"
    	"unsafe"
    )
    
    // Assert that the size of important structures do not change unexpectedly.
    
    func TestSizeof(t *testing.T) {
    	const _64bit = unsafe.Sizeof(uintptr(0)) == 8
    
    	var tests = []struct {
    		val    interface{} // type as a value
    		_32bit uintptr     // size on 32bit platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:08:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
                throw new AssertionError("Swift PM unexpectedly succeeded. Output:\n${result.out}")
            }
            return result
        }
    
        private ExecOutput run() {
            assert projectDir != null
            def builder = new ProcessBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

            proc.waitForFinish()
        }
    
        void outputContainsKilledWorkerWarning() {
            if (OperatingSystem.current().windows) {
                outputContains(" exited unexpectedly with exit code 1.")
            } else {
                outputContains(" exited unexpectedly after being killed with signal 9.  This is likely because an external process has killed the worker.")
            }
        }
    
        TestFile pidFile(String rootPath = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top