Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 212 for happen (0.47 sec)

  1. pilot/pkg/networking/core/route/route.go

    		operations := TranslateHeadersOperations(dst.Headers)
    		out.RequestHeadersToAdd = append(out.RequestHeadersToAdd, operations.RequestHeadersToAdd...)
    		out.RequestHeadersToRemove = append(out.RequestHeadersToRemove, operations.RequestHeadersToRemove...)
    		out.ResponseHeadersToAdd = append(out.ResponseHeadersToAdd, operations.ResponseHeadersToAdd...)
    		out.ResponseHeadersToRemove = append(out.ResponseHeadersToRemove, operations.ResponseHeadersToRemove...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top