Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for svctest (0.12 sec)

  1. pilot/pkg/networking/core/cluster.go

    		} else {
    			if subset == "" {
    				sets.InsertOrNew(serviceClusters, string(svcHost), cluster)
    			} else {
    				sets.InsertOrNew(subsetClusters, string(svcHost), cluster)
    			}
    			if servicePortClusters[string(svcHost)] == nil {
    				servicePortClusters[string(svcHost)] = make(map[int]string)
    			}
    			servicePortClusters[string(svcHost)][port] = cluster
    		}
    	}
    
    	for key := range updates.ConfigsUpdated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/cluster.go

    	// Use StableName instead of Name when creating subtests.
    	Name() string
    
    	// StableName gives a deterministic name for the cluster. Use this for test/subtest names to
    	// allow test grid to compare runs, even when the underlying cluster names are dynamic.
    	// Use Name for validation/interaction with the actual cluster.
    	StableName() string
    
    	// NetworkName the cluster is on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pkg/test/framework/test.go

    	}
    
    	if t.s.skipped {
    		t.goTest.Skip("Skipped because parent Suite was skipped.")
    		return
    	}
    
    	if t.parent != nil {
    		// Create a new subtest under the parent's test.
    		parentGoTest := t.parent.goTest
    		parentCtx := t.parent.ctx
    		parentGoTest.Run(t.name, func(goTest *testing.T) {
    			t.goTest = goTest
    			t.doRun(parentCtx.newChildContext(t), fn, parallel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    				addressesToReport = internalIP
    			} else {
    				for _, hostport := range internal {
    					svchost, _, _ := net.SplitHostPort(hostport)
    					if !slices.Contains(pending, svchost) && !slices.Contains(addressesToReport, svchost) {
    						addressesToReport = append(addressesToReport, svchost)
    					}
    				}
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    //	-list regexp
    //	    List tests, benchmarks, fuzz tests, or examples matching the regular
    //	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    //	    Allow parallel execution of test functions that call t.Parallel, and
    //	    fuzz targets that call t.Parallel when running the seed corpus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top