Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for hook1 (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		if i, o := string(inBytes), string(outBytes); i != o {
    			t.Fatalf("output != input:\n  want: %s\n   got: %s", i, o)
    		}
    	}
    }
    
    func TestStoreCreateHooks(t *testing.T) {
    	// To track which hooks were called in what order.  Not all hooks can
    	// mutate the object.
    	var milestones []string
    
    	setAnn := func(obj runtime.Object, key string) {
    		pod := obj.(*example.Pod)
    		if pod.Annotations == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    func newValidatingWebhookConfiguration(hooks []admissionregistration.ValidatingWebhook, defaultAdmissionReviewVersions bool) *admissionregistration.ValidatingWebhookConfiguration {
    	// If the test case did not specify an AdmissionReviewVersions, default it so the test passes as
    	// this field will be defaulted in production code.
    	for i := range hooks {
    		if defaultAdmissionReviewVersions && len(hooks[i].AdmissionReviewVersions) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy filter-prerouting { type filter hook prerouting priority -110 ; }
    		add chain ip kube-proxy filter-forward { type filter hook forward priority -110 ; }
    		add chain ip kube-proxy filter-input { type filter hook input priority -110 ; }
    		add chain ip kube-proxy filter-output { type filter hook output priority -110 ; }
    		add chain ip kube-proxy filter-output-post-dnat { type filter hook output priority -90 ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		panic("internal error")
    	}
    	packedState := uint64(time.Now().Unix()<<8) | uint64(state)
    	c.curState.Store(packedState)
    	if !runHook {
    		return
    	}
    	if hook := srv.ConnState; hook != nil {
    		hook(nc, state)
    	}
    }
    
    func (c *conn) getState() (state ConnState, unixSec int64) {
    	packedState := c.curState.Load()
    	return ConnState(packedState & 0xff), int64(packedState >> 8)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    func TestTransportConcurrency(t *testing.T) {
    	run(t, testTransportConcurrency, testNotParallel, []testMode{http1Mode})
    }
    func testTransportConcurrency(t *testing.T, mode testMode) {
    	// Not parallel: uses global test hooks.
    	maxProcs, numReqs := 16, 500
    	if testing.Short() {
    		maxProcs, numReqs = 4, 50
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(maxProcs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    	defer closeDB(t, db)
    	exec(t, db, "CREATE|t1|name=string,age=int32,dead=bool")
    
    	simulateBadConn := func(name string, hook *func() bool, op func() error) {
    		broken, retried := false, false
    		numOpen := db.numOpen
    
    		// simulate a broken connection on the first try
    		*hook = func() bool {
    			if !broken {
    				broken = true
    				return true
    			}
    			retried = true
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "preStop": {
              "$ref": "#/definitions/io.k8s.api.core.v1.Handler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    		createdAt:  nowFunc(),
    		returnedAt: nowFunc(),
    		ci:         ci,
    		inUse:      true,
    	}
    	db.addDepLocked(dc, dc)
    	db.mu.Unlock()
    	return dc, nil
    }
    
    // putConnHook is a hook for testing.
    var putConnHook func(*DB, *driverConn)
    
    // noteUnusedDriverStatement notes that ds is no longer used and should
    // be closed whenever possible (when c is next not in use), unless c is
    // already closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"honey_pot":                            "\U0001f36f",
    	"honeybee":                             "\U0001f41d",
    	"hong_kong":                            "\U0001f1ed\U0001f1f0",
    	"hook":                                 "\U0001fa9d",
    	"horse":                                "\U0001f434",
    	"horse_racing":                         "\U0001f3c7",
    	"hospital":                             "\U0001f3e5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    struct TensorFlowLiteInlinerInterface : public DialectInlinerInterface {
      using DialectInlinerInterface::DialectInlinerInterface;
    
      //===--------------------------------------------------------------------===//
      // Analysis Hooks
      //===--------------------------------------------------------------------===//
    
      // Allow all call operations to be inlined.
      bool isLegalToInline(Operation* call, Operation* callable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top