Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for expectAction (0.18 sec)

  1. pkg/proxy/util/nodeport_addresses_test.go

    	}
    	return nil
    }
    
    func TestGetNodeIPs(t *testing.T) {
    	type expectation struct {
    		matchAll bool
    		ips      sets.Set[string]
    	}
    
    	testCases := []struct {
    		name          string
    		cidrs         []string
    		itfAddrsPairs []InterfaceAddrsPair
    		expected      map[v1.IPFamily]expectation
    	}{
    		{
    			name:  "IPv4 single",
    			cidrs: []string{"10.20.30.0/24"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/controller/util/selectors/bimultimap_test.go

    		}
    	}
    }
    
    type expectation func(*BiMultimap) error
    
    func forwardSelect(key Key, want ...Key) expectation {
    	return func(m *BiMultimap) error {
    		got, _ := m.Select(key)
    		if !unorderedEqual(want, got) {
    			return fmt.Errorf("forward select %v wanted %v. got %v.", key, want, got)
    		}
    		return nil
    	}
    }
    
    func reverseSelect(key Key, want ...Key) expectation {
    	return func(m *BiMultimap) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 01:56:36 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

            }
    
            if (expectGetArtifact) {
                expectGetArtifact.each { ArtifactExpectation expectation ->
                    def artifacts = []
                    if (expectation.spec) {
                        if (expectation.spec instanceof VariantArtifacts) {
                            artifacts.addAll(expectation.spec.toArtifacts(module))
                        } else if (module instanceof MavenModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. platforms/software/maven/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/maven/AbstractMavenPublishIntegTest.groovy

            MavenArtifactResolutionExpectation expectation = new MavenArtifactResolutionExpectation(dependencyNotation, this)
            expectation.dependency = convertDependencyNotation(dependencyNotation)
            expectationSpec.resolveStrategy = Closure.DELEGATE_FIRST
            expectationSpec.delegate = expectation
            expectationSpec()
    
            expectation.validate()
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/testFixtures/groovy/org/gradle/api/publish/ivy/AbstractIvyPublishIntegTest.groovy

            IvyArtifactResolutionExpectation expectation = new IvyArtifactResolutionExpectation(dependencyNotation)
            expectation.dependency = convertDependencyNotation(dependencyNotation)
            expectationSpec.resolveStrategy = Closure.DELEGATE_FIRST
            expectationSpec.delegate = expectation
            expectationSpec()
    
            expectation.validate()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/argposition_test.go

    				Line:   42,
    				Column: 91,
    			},
    		},
    	}
    	for _, decl := range f.Decls {
    		if fdecl, ok := decl.(*ast.FuncDecl); ok {
    			ast.Walk(&Visitor{expectation, fset, t}, fdecl.Body)
    		}
    	}
    	for ident, positions := range expectation {
    		for _, position := range positions {
    			if !position.Visited {
    				t.Errorf("Position %d:%d missed for %s ident", position.Line, position.Column, ident)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/sds/sdsservice_test.go

    		server:  server,
    		store:   st,
    		udsPath: ca2.WorkloadIdentitySocketPath,
    	}
    }
    
    func TestSDS(t *testing.T) {
    	expectCert := Expectation{
    		ResourceName: testResourceName,
    		CertChain:    fakeCertificateChain,
    		Key:          fakePrivateKey,
    	}
    	expectRoot := Expectation{
    		ResourceName: rootResourceName,
    		RootCert:     fakeRootCert,
    	}
    	log.FindScope("ads").SetOutputLevel(log.DebugLevel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResourceHandlerWrapper.java

        private final boolean autoRelease;
        private boolean started;
        private boolean received;
    
        ResourceHandlerWrapper(Lock lock, ResourceExpectation expectation, WaitPrecondition owner, boolean isAutoRelease) {
            this.lock = lock;
            handler = expectation.create(this);
            this.owner = owner;
            this.autoRelease = isAutoRelease;
        }
    
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                        assertRequest(httpStub, request)
                        if (expectation.run) {
                            println("This expectation for the request [${request.method} :${request.pathInfo}] was already handled - skipping")
                            return
                        }
                        if (!baseRequest.isHandled()) {
                            expectation.atomicRun.set(true)
                            action.handle(request, response)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/format.go

    package testtrace
    
    import (
    	"bytes"
    	"fmt"
    	"internal/trace/raw"
    	"internal/txtar"
    	"io"
    )
    
    // ParseFile parses a test file generated by the testgen package.
    func ParseFile(testPath string) (io.Reader, *Expectation, error) {
    	ar, err := txtar.ParseFile(testPath)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to read test file for %s: %v", testPath, err)
    	}
    	if len(ar.Files) != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top