Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for stopCh (0.26 sec)

  1. cluster/gce/util.sh

    function kube-down() {
      local -r batch=200
    
      detect-project
      detect-node-names # For INSTANCE_GROUPS and WINDOWS_INSTANCE_GROUPS
    
      echo "Bringing down cluster"
      set +e  # Do not stop on error
    
      if [[ "${KUBE_DELETE_NODES:-}" != "false" ]]; then
        # Get the name of the managed instance group template before we delete the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	// This is a little clumsy but makes the failure repeatable.
    	*CallGC = true
    
    	p := &Outer{Inner: new(Inner)}
    	p.Inner.X = p
    	ValueOf(p).Method(0).Call(nil)
    
    	// Stop garbage collecting during reflect.call.
    	*CallGC = false
    }
    
    func TestCallArgLive(t *testing.T) {
    	type T struct{ X, Y *string } // pointerful aggregate
    
    	F := func(t T) { *t.X = "ok" }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	.swig, .swigcxx
    //		SWIG definition files.
    //	.syso
    //		System object files.
    //
    // Files of each of these types except .syso may contain build
    // constraints, but the go command stops scanning for build constraints
    // at the first item in the file that is not a blank line or //-style
    // line comment. See the go/build package documentation for
    // more details.
    //
    // # The go.mod file
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	pfxEnabled = buildcfg.GOPPC64 >= 10 && buildcfg.GOOS == "linux"
    	cfg := fmt.Sprintf("power%d/%s/%s", buildcfg.GOPPC64, buildcfg.GOARCH, buildcfg.GOOS)
    	if cfg == buildOpCfg {
    		// Already initialized to correct OS/cpu; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    	buildOpCfg = cfg
    
    	// Configure the optab entries which may generate prefix opcodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    			// byte in the function symbol s.
    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, s, p.Pc)
    		}
    	}
    }
    
    func instinit(ctxt *obj.Link) {
    	if ycover[0] != 0 {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    	}
    	return false
    }
    func opset(a, b obj.As) {
    	oprange[a&obj.AMask] = oprange[b&obj.AMask]
    }
    
    func buildop(ctxt *obj.Link) {
    	if oprange[AORW&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	for i := 0; i < C_NCLASS; i++ {
    		for n := 0; n < C_NCLASS; n++ {
    			if cmp(n, i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    Be sure to provide sufficient documentation and example usage in values.yaml. If the chart has a `values.schema.json`, that should be updated as well. ## Step 2. Update the istioctl/Operator values If you are modifying the `gateway` chart, you can stop here. All other charts, however, are exposed by `istioctl` and need to follow the steps below. The charts in the `manifests` directory are used in istioctl to generate an installation manifest. If `values.yaml` is changed, be sure to update corresponding...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top