Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for allAddrs (0.12 sec)

  1. pkg/api/v1/endpoints/util.go

    func mapAddressesByPort(subset *v1.EndpointSubset, port v1.EndpointPort, allAddrs map[addressKey]*v1.EndpointAddress, portToAddrReadyMap map[v1.EndpointPort]addressSet) {
    	for k := range subset.Addresses {
    		mapAddressByPort(&subset.Addresses[k], port, true, allAddrs, portToAddrReadyMap)
    	}
    	for k := range subset.NotReadyAddresses {
    		mapAddressByPort(&subset.NotReadyAddresses[k], port, false, allAddrs, portToAddrReadyMap)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 8K bytes
    - Viewed (0)
  2. src/internal/goroot/gc.go

    func (gd *gccgoDirs) init() {
    	gccgo := os.Getenv("GCCGO")
    	if gccgo == "" {
    		gccgo = "gccgo"
    	}
    	bin, err := exec.LookPath(gccgo)
    	if err != nil {
    		return
    	}
    
    	allDirs, err := exec.Command(bin, "-print-search-dirs").Output()
    	if err != nil {
    		return
    	}
    	versionB, err := exec.Command(bin, "-dumpversion").Output()
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    			// On NACK, do not apply resource changes
    			continue
    		}
    
    		remove, add := c.tree[parentKey].Children.Diff(ctx.sub)
    		for _, key := range add {
    			if _, f := allAdds[key.TypeURL]; !f {
    				allAdds[key.TypeURL] = set.New[string]()
    			}
    			allAdds[key.TypeURL].Insert(key.Name)
    			c.relate(parentKey, key)
    		}
    		for _, key := range remove {
    			if _, f := allRemoves[key.TypeURL]; !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            then:
            result.execution.get().outcome == EXECUTED_NON_INCREMENTALLY
            !result.reusedOutputOriginMetadata.present
    
            def allDirs = ["outDir1", "outDir2"].collect { file(it) }
            def allFiles = ["parent1/outFile", "parent2/outFile"].collect { file(it) }
            allDirs.each {
                assert it.isDirectory()
            }
            allFiles.each {
                assert it.parentFile.isDirectory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top