Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for perfunc (3.88 sec)

  1. src/cmd/go/internal/work/exec.go

    			outGo = append(outGo, dynOutGo)
    		}
    		if dynOutObj != "" {
    			outObj = append(outObj, dynOutObj)
    		}
    
    	case "gccgo":
    		defunC := objdir + "_cgo_defun.c"
    		defunObj := objdir + "_cgo_defun.o"
    		if err := BuildToolchain.cc(b, a, defunObj, defunC); err != nil {
    			return nil, nil, err
    		}
    		outObj = append(outObj, defunObj)
    
    	default:
    		noCompiler()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    }
    
    func makeTestEndpointSlice(namespace, name string, sliceNum int, epsFunc func(*discovery.EndpointSlice)) *discovery.EndpointSlice {
    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      fmt.Sprintf("%s-%d", name, sliceNum),
    			Namespace: namespace,
    			Labels:    map[string]string{discovery.LabelServiceName: name},
    		},
    	}
    	epsFunc(eps)
    	return eps
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.29.md

    - If a watch with the `progressNotify` option set is to be created, and the registry hasn't provided a `newFunc`, return an error. ([#120212](https://github.com/kubernetes/kubernetes/pull/120212), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top