Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for FUNC (0.15 sec)

  1. pkg/proxy/iptables/proxier_test.go

    	}
    }
    
    func populateEndpointSlices(proxier *Proxier, allEndpointSlices ...*discovery.EndpointSlice) {
    	for i := range allEndpointSlices {
    		proxier.OnEndpointSliceAdd(allEndpointSlices[i])
    	}
    }
    
    func makeTestEndpointSlice(namespace, name string, sliceNum int, epsFunc func(*discovery.EndpointSlice)) *discovery.EndpointSlice {
    	eps := &discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg errors, func As(error, interface{}) bool
    pkg errors, func Is(error, error) bool
    pkg errors, func Unwrap(error) error
    pkg go/constant, func Make(interface{}) Value
    pkg go/constant, func Val(Value) interface{}
    pkg go/token, func IsExported(string) bool
    pkg go/token, func IsIdentifier(string) bool
    pkg go/token, func IsKeyword(string) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    	v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	common "k8s.io/kube-openapi/pkg/common"
    	spec "k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition {
    	return map[string]common.OpenAPIDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestUpdatePatchAllocatedValues(t *testing.T) {
    	prove := func(proofs ...svcTestProof) []svcTestProof {
    		return proofs
    	}
    	proveClusterIP := func(idx int, ip string) svcTestProof {
    		return func(t *testing.T, storage *wrapperRESTForTests, before, after *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. doc/go_spec.html

    may be invoked with zero or more arguments for that parameter.
    </p>
    
    <pre>
    func()
    func(x int) int
    func(a, _ int, z float32) bool
    func(a, b int, z float32) (bool)
    func(prefix string, values ...int)
    func(a, b int, z float64, opt ...interface{}) (success bool)
    func(int, int, float64) (float64, *[]int)
    func(n int) func(p *T)
    </pre>
    
    <h3 id="Interface_types">Interface types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    }
    
    func (v validationMatch) matches(err *field.Error) bool {
    	return err.Type == v.errorType && err.Field == v.path.String() && strings.Contains(err.Error(), v.containsString)
    }
    
    func (v validationMatch) contains(s string) validationMatch {
    	v.containsString = s
    	return v
    }
    
    func strPtr(s string) *string { return &s }
    
    func TestValidateCustomResourceDefinition(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/constFold_test.go

    // run
    // Code generated by gen/constFoldGen.go. DO NOT EDIT.
    
    package test
    
    import "testing"
    
    func TestConstFolduint64add(t *testing.T) {
    	var x, y, r uint64
    	x = 0
    	y = 0
    	r = x + y
    	if r != 0 {
    		t.Errorf("0 %s 0 = %d, want 0", "+", r)
    	}
    	y = 1
    	r = x + y
    	if r != 1 {
    		t.Errorf("0 %s 1 = %d, want 1", "+", r)
    	}
    	y = 4294967296
    	r = x + y
    	if r != 4294967296 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Insert a call to the reducer in the region of the mhlo op.
        mlir::SymbolRefAttr func = op.getComputation();
        auto func_op = cast<mlir::func::FuncOp>(SymbolTable::lookupSymbolIn(
            op->getParentOfType<mlir::ModuleOp>(), func));
        auto func_ty = func_op.getFunctionType();
        BuildBodyWithCall(rewriter, loc, func, func_ty,
                          &reduce_window_op.getBody());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    	}
    	return 0
    }
    
    // nfcTrie. Total size: 10610 bytes (10.36 KiB). Checksum: 95e8869a9f81e5e6.
    type nfcTrie struct{}
    
    func newNfcTrie(i int) *nfcTrie {
    	return &nfcTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 46:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    		n -= 46
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    	}
    	return 0
    }
    
    // nfcTrie. Total size: 10332 bytes (10.09 KiB). Checksum: 51cc525b297fc970.
    type nfcTrie struct{}
    
    func newNfcTrie(i int) *nfcTrie {
    	return &nfcTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 44:
    		return uint16(nfcValues[n<<6+uint32(b)])
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
Back to top