Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for valfunc (0.19 sec)

  1. src/cmd/internal/obj/pcln.go

    // returned by valfunc parameterized by arg. The invocation of valfunc to update the
    // current value is, for each p,
    //
    //	sym = valfunc(func, p, 0, arg);
    //	record sym.P as value at p->pc;
    //	sym = valfunc(func, p, 1, arg);
    //
    // where func is the function, val is the current value, p is the instruction being
    // considered, and arg can be used to further parameterize valfunc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    	undLowerIgnoreSigma transform.SpanningTransformer = &undLowerIgnoreSigmaCaser{}
    
    	lowerFunc = []mapFunc{
    		nil,       // und
    		nil,       // af
    		aztrLower, // az
    		nil,       // el
    		ltLower,   // lt
    		nil,       // nl
    		aztrLower, // tr
    	}
    
    	titleInfos = []struct {
    		title     mapFunc
    		lower     mapFunc
    		titleSpan spanFunc
    		rewrite   func(*context)
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. tests/common/jwt/jwt_token.go

    	//  "iss": "******@****.***",
    	//  "nested": {
    	//    "key2": "valueC",
    	//    "nested-2": {
    	//      "key2": "valueC"
    	//    }
    	//  },
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --nestedclaim key2 valueC
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	}
    	return cs, nil
    }
    
    // NewEgressSelectorWithMap returns a EgressSelector with the supplied EgressType to DialFunc map.
    func NewEgressSelectorWithMap(m map[EgressType]utilnet.DialFunc) *EgressSelector {
    	if m == nil {
    		m = make(map[EgressType]utilnet.DialFunc)
    	}
    	return &EgressSelector{
    		egressToDialer: m,
    	}
    }
    
    // Lookup gets the dialer function for the network context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    		return string(buf), nil
    	}
    	return targ[t0:], nil
    }
    
    // SkipDir is used as a return value from [WalkFunc] to indicate that
    // the directory named in the call is to be skipped. It is not returned
    // as an error by any function.
    var SkipDir error = fs.SkipDir
    
    // SkipAll is used as a return value from [WalkFunc] to indicate that
    // all remaining files and directories are to be skipped. It is not returned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/testx.go

    			trace := strings.Split(goroutine, "\n")
    			// look for the expected function in the stack
    			for i := 0; i < depth; i++ {
    				if badFunc != "" && strings.Contains(trace[1+2*i], badFunc) {
    					t.Errorf("bad stack: found %s in the stack:\n%s", badFunc, goroutine)
    					return
    				}
    				if strings.Contains(trace[1+2*i], wantFunc) {
    					return
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    func TestEgressSelector(t *testing.T) {
    	testcases := []struct {
    		name     string
    		input    *apiserver.EgressSelectorConfiguration
    		services []struct {
    			egressType     EgressType
    			validateDialer func(dialer utilnet.DialFunc, s *fakeEgressSelection) (bool, error)
    			lookupError    *string
    			dialerError    *string
    		}
    		expectedError *string
    	}{
    		{
    			name: "direct",
    			input: &apiserver.EgressSelectorConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

    Options
         --valueA     descA
    
         --no-valueA     Disables option --valueA.
    
         --valueB     descB
    
         --no-valueB     Disables option --valueB.
    
         --valueC     descC
    
         --no-valueC     Disables option --valueC."""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pcln.go

    		call := fi.InlTree(i)
    		nameOff, ok := nameOffsets[call.Func]
    		if !ok {
    			panic("couldn't find function name offset")
    		}
    
    		inlFunc := ldr.FuncInfo(call.Func)
    		var funcID abi.FuncID
    		startLine := int32(0)
    		if inlFunc.Valid() {
    			funcID = inlFunc.FuncID()
    			startLine = inlFunc.StartLine()
    		} else if !ctxt.linkShared {
    			// Inlined functions are always Go functions, and thus
    			// must have FuncInfo.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    		if evaluator == nil {
    			klog.V(2).Info("No audit policy file provided, no events will be recorded for webhook backend")
    		} else {
    			if c.EgressSelector != nil {
    				var egressDialer utilnet.DialFunc
    				egressDialer, err = c.EgressSelector.Lookup(egressselector.ControlPlane.AsNetworkContext())
    				if err != nil {
    					return err
    				}
    				webhookBackend, err = o.WebhookOptions.newUntruncatedBackend(egressDialer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top