Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 113 for initAt (0.37 sec)

  1. plugin/pkg/admission/alwayspullimages/admission_test.go

    		ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: namespace},
    		Spec: api.PodSpec{
    			InitContainers: []api.Container{
    				{Name: "init1", Image: "image"},
    				{Name: "init2", Image: "image", ImagePullPolicy: api.PullNever},
    				{Name: "init3", Image: "image", ImagePullPolicy: api.PullIfNotPresent},
    				{Name: "init4", Image: "image", ImagePullPolicy: api.PullAlways},
    			},
    			Containers: []api.Container{
    				{Name: "ctr1", Image: "image"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue66575.out

    initv0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 14 bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    		KeepAlive(ep)
    		return
    	}
    
    	// stack
    	if gp := getg(); gp.m.curg.stack.lo <= uintptr(p) && uintptr(p) < gp.m.curg.stack.hi {
    		found := false
    		var u unwinder
    		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
    			if u.frame.sp <= uintptr(p) && uintptr(p) < u.frame.varp {
    				found = true
    				break
    			}
    		}
    		if found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/init0.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init0
    
    // initialization cycles (we don't know the types)
    const (
    	s0 /* ERROR "initialization cycle: s0 refers to itself" */ = s0
    
    	x0 /* ERROR "initialization cycle for x0" */ = y0
    	y0 = x0
    
    	a0 = b0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/init1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/init2.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init2
    
    // cycles through functions
    
    func f1() int { _ = x1; return 0 }
    var x1 /* ERROR "initialization cycle" */ = f1
    
    func f2() int { _ = x2; return 0 }
    var x2 /* ERROR "initialization cycle" */ = f2()
    
    // cycles through method expressions
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            and:
            executer.gradleUserHomeDir.file('init.d/a.gradle') << 'println "init #a#"'
            executer.gradleUserHomeDir.file('init.d/b.gradle') << 'println "init #b#"'
            executer.gradleUserHomeDir.file('init.d/c.gradle') << 'println "init #c#"'
    
            when:
            run()
    
            then:
            def a = output.indexOf('init #a#')
            def b = output.indexOf('init #b#')
            def c = output.indexOf('init #c#')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops_invalid.mlir

      "tf_saved_model.session_initializer"() { initializers = [@init] } : () -> ()
      func.func private @init() {
        func.return
      }
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // expected-error@+1 {{the initializer function should have only one exported name}}
      "tf_saved_model.session_initializer"() { initializers = [@init] } : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 19 13:38:14 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, err)
    
    	init1 := makeTestContainer("init1", "busybox")
    	init2 := makeTestContainer("init2", "busybox")
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			InitContainers: []v1.Container{init1, init2},
    		},
    	}
    
    	templates := []containerTemplate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/coverage/cover.go

    // an exit hook to emit counter data).
    func addInitHookCall(initfn *ir.Func, cmode coverage.CounterMode) {
    	typecheck.InitCoverage()
    	pos := initfn.Pos()
    	istest := cmode == coverage.CtrModeTestMain
    	initf := typecheck.LookupCoverage("initHook")
    	istestNode := ir.NewBool(base.Pos, istest)
    	args := []ir.Node{istestNode}
    	callx := typecheck.Call(pos, initf, args, false)
    	initfn.Body.Append(callx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top