Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 283 for happen (0.17 sec)

  1. src/runtime/asm_amd64.s

    	MOVQ	g_m(BX), BX
    
    	// Set m->sched.sp = SP, so that if a panic happens
    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    	// restore the g->sched.sp from the stack location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    func read8(sym interface{}, off int64) uint8 {
    	lsym := sym.(*obj.LSym)
    	if off >= int64(len(lsym.P)) || off < 0 {
    		// Invalid index into the global sym.
    		// This can happen in dead code, so we don't want to panic.
    		// Just return any value, it will eventually get ignored.
    		// See issue 29215.
    		return 0
    	}
    	return lsym.P[off]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    *This is a feature of specific tasks*!
    That means implicit conversion will not happen for just any task that has a `FileCollection` or `FileTree` property.
    If you want to know whether implicit conversion happens in a particular situation, you will need to read the relevant documentation, such as the corresponding task's API docs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    						status.State),
    					reason: reasonUnknown,
    				}
    				changes.InitContainersToStart = append(changes.InitContainersToStart, i)
    			} else { // init container
    				if !isInitContainerFailed(status) {
    					klog.V(4).InfoS("This should not happen, init container is in unknown state but not failed", "pod", klog.KObj(pod), "containerStatus", status)
    				}
    
    				if !restartOnFailure {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		arg, templateVal := st.templateParamDecl()
    		if arg == nil {
    			break
    		}
    		templateArgs = append(templateArgs, arg)
    		if template == nil {
    			template = &Template{
    				Name: &Name{Name: "lambda"},
    			}
    			st.templates = append(st.templates, template)
    		}
    		template.Args = append(template.Args, templateVal)
    	}
    
    	var templateArgsConstraint AST
    	if len(st.str) > 0 && st.str[0] == 'Q' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	// (the actual arenas). This is only used on 32-bit.
    	arena linearAlloc
    
    	// allArenas is the arenaIndex of every mapped arena. This can
    	// be used to iterate through the address space.
    	//
    	// Access is protected by mheap_.lock. However, since this is
    	// append-only and old backing arrays are never freed, it is
    	// safe to acquire mheap_.lock, copy the slice header, and
    	// then release mheap_.lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

                                             // We already checked that cond should
                                             // not have variable writes.
                                             assert(false && "Should not happen");
                                           });
      // Recreate the while op.
      OpBuilder builder(while_op);
      // Now use the filtered original operands, which will be replaced by
      // AddLoadsStoresOutsideControlFlowOp().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    
    		if proxier.ipFamily == v1.IPv6Protocol && !isIPv4CIDR {
    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    				// are laid out in dependency order.
    				lib.DupTextSyms = append(lib.DupTextSyms, sym.LoaderSym(gi))
    				continue // symbol in different object
    			}
    			if dupok {
    				lib.DupTextSyms = append(lib.DupTextSyms, sym.LoaderSym(gi))
    				continue
    			}
    
    			lib.Textp = append(lib.Textp, sym.LoaderSym(gi))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    			if pkg.test != nil && !queued[pkg.test] {
    				queue = append(queue, pkg.test)
    				queued[pkg.test] = true
    			}
    
    			if !pathIsRoot[m.Path] {
    				if s := mg.Selected(m.Path); gover.ModCompare(m.Path, s, m.Version) < 0 {
    					roots = append(roots, m)
    					pathIsRoot[m.Path] = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top