Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for live1 (0.07 sec)

  1. test/live.go

    	m2s[str()] = p // ERROR "live at call to mapassign_faststr: p$" "live at call to str: p$"
    }
    
    func f17c() {
    	// key and value temporaries
    	if b {
    		m2s[str()] = f17d() // ERROR "live at call to f17d: .autotmp_[0-9]+$" "live at call to mapassign_faststr: .autotmp_[0-9]+$"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. test/live_regabi.go

    	m2s[str()] = p // ERROR "live at call to mapassign_faststr: p$" "live at call to str: p$"
    }
    
    func f17c() {
    	// key and value temporaries
    	if b {
    		m2s[str()] = f17d() // ERROR "live at call to f17d: .autotmp_[0-9]+$" "live at call to mapassign_faststr: .autotmp_[0-9]+$"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/server_test.go

    		},
    		{
    			name:       "tcp-livez",
    			probePath:  "app-health/hello-world/livez",
    			config:     simpleTCPConfig,
    			statusCode: http.StatusOK,
    		},
    		{
    			name:       "tcp-livez-ipv4",
    			probePath:  "app-health/hello-world/livez",
    			config:     simpleTCPConfig,
    			statusCode: http.StatusOK,
    			podIP:      "127.0.0.1",
    		},
    		{
    			name:       "tcp-livez-ipv6",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

            buildFile << """
                def t1 = tasks.register('myTask1', MyTask) {
                    text.set('Black')
                }
                def t2 = tasks.register('myTask2', MyTask) {
                    text.set('Lives')
                }
    
                def t3 = tasks.register('myTask3', MyTask) {
                    text.set('Matter')
                }
    
                tasks.register('combined', MyTask) {
                    text.set(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/range.go

    		//
    		// The "pointer" we're moving across the backing array lives in one
    		// or the other of hp and hu as the loop proceeds.
    		//
    		// hp is live during most of the body of the loop. But it isn't live
    		// at the very top of the loop, when we haven't checked i<n yet, and
    		// it could point off the end of the backing store.
    		// hu is live only at the very top and very bottom of the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/stackalloc.go

    		s.interfere = s.interfere[:n]
    	} else {
    		s.interfere = make([][]ID, n)
    	}
    	live := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(live)
    	for _, b := range f.Blocks {
    		// Propagate liveness backwards to the start of the block.
    		// Two values interfere if one is defined while the other is live.
    		live.clear()
    		live.addAll(s.live[b.ID])
    		for i := len(b.Values) - 1; i >= 0; i-- {
    			v := b.Values[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.DurationVar(&s.LivezGracePeriod, "livez-grace-period", s.LivezGracePeriod, ""+
    		"This option represents the maximum amount of time it should take for apiserver to complete its startup sequence "+
    		"and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume "+
    		"that unfinished post-start hooks will complete successfully and therefore return true.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			encryptionConfigPath: "testdata/encryption-configs/no-kms-provider.yaml",
    			wantHealthzChecks:    []string{"etcd"},
    			wantReadyzChecks:     []string{"etcd", "etcd-readiness"},
    			wantLivezChecks:      []string{"etcd"},
    		},
    		{
    			name:                 "no kms-provider+reload, expect single kms healthz check, no kms livez check",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    			// Check to make sure only input variables are live.
    			for i, n := range lv.vars {
    				if !liveout.Get(int32(i)) {
    					continue
    				}
    				if n.Class == ir.PPARAM {
    					continue // ok
    				}
    				base.FatalfAt(n.Pos(), "bad live variable at entry of %v: %L", lv.fn.Nname, n)
    			}
    
    			// Record live variables.
    			live := &lv.livevars[index]
    			live.Or(*live, liveout)
    		}
    
    		if lv.doClobber {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

    !!! check
        The `prefix`, `tags`, `responses`, and `dependencies` parameters are (as in many other cases) just a feature from **FastAPI** to help you avoid code duplication.
    
    ### Import the dependencies
    
    This code lives in the module `app.routers.items`, the file `app/routers/items.py`.
    
    And we need to get the dependency function from the module `app.dependencies`, the file `app/dependencies.py`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top