Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 581 for begins (0.54 sec)

  1. src/cmd/internal/obj/s390x/objz.go

    //
    // p is the last Prog in the function. pPre and pPreempt, if non-nil,
    // are the instructions that branch to the epilogue. This will fill in
    // their branch targets. pCheck is the Prog that begins the stack check.
    func (c *ctxtz) stacksplitPost(p *obj.Prog, pPre, pPreempt, pCheck *obj.Prog, framesize int32) *obj.Prog {
    	// Now we are at the end of the function, but logically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    				// contain arbitrary substrings.
    				break
    			}
    			if field == "version" && i < len(fields)-1 {
    				// Check that the next field is plausibly a version number.
    				// We require only that it begins with an ASCII digit,
    				// since we don't know what version numbering schemes a given
    				// C compiler may use. (Clang and GCC mostly seem to follow the scheme X.Y.Z,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. cmd/utils.go

    func unwrapAll(err error) error {
    	for {
    		werr := errors.Unwrap(err)
    		if werr == nil {
    			return err
    		}
    		err = werr
    	}
    }
    
    // stringsHasPrefixFold tests whether the string s begins with prefix ignoring case.
    func stringsHasPrefixFold(s, prefix string) bool {
    	// Test match with case first.
    	return len(s) >= len(prefix) && (s[0:len(prefix)] == prefix || strings.EqualFold(s[0:len(prefix)], prefix))
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/server.go

    	return fmt.Sprintf("/app-health/%v/readyz", container),
    		fmt.Sprintf("/app-health/%v/livez", container),
    		fmt.Sprintf("/app-health/%v/startupz", container)
    }
    
    // Run opens a the status port and begins accepting probes.
    func (s *Server) Run(ctx context.Context) {
    	log.Infof("Opening status port %d", s.statusPort)
    
    	mux := http.NewServeMux()
    
    	// Add the handler for ready probes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  5. src/cmd/link/internal/ld/pcln.go

    			call := fi.InlTree(i)
    			f(cu, call.File)
    		}
    	}
    }
    
    // generateFilenameTabs creates LUTs needed for filename lookup. Returns a slice
    // of the index at which each CU begins in runtime.cutab.
    //
    // Function objects keep track of the files they reference to print the stack.
    // This function creates a per-CU list of filenames if CU[M] references
    // files[1-N], the following is generated:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		s.nbytes++
    		if !s.parseIndex() {
    			return false
    		}
    		if !s.parseNum() {
    			return false
    		}
    	}
    	return true
    }
    
    // parsePrintfVerb looks the formatting directive that begins the format string
    // and returns a formatState that encodes what the directive wants, without looking
    // at the actual arguments present in the call. The result is nil if there is an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set.go

    		},
    	})
    	rsc.podLister = podInformer.Lister()
    	rsc.podListerSynced = podInformer.Informer().HasSynced
    
    	rsc.syncHandler = rsc.syncReplicaSet
    
    	return rsc
    }
    
    // Run begins watching and syncing.
    func (rsc *ReplicaSetController) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    
    	// Start events processing pipeline.
    	rsc.eventBroadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/strings/strings.go

    	var b Builder
    	b.Grow(n)
    	b.WriteString(elems[0])
    	for _, s := range elems[1:] {
    		b.WriteString(sep)
    		b.WriteString(s)
    	}
    	return b.String()
    }
    
    // HasPrefix reports whether the string s begins with prefix.
    func HasPrefix(s, prefix string) bool {
    	return stringslite.HasPrefix(s, prefix)
    }
    
    // HasSuffix reports whether the string s ends with suffix.
    func HasSuffix(s, suffix string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/runtime/trace.go

    	exitingSyscall atomic.Int32
    
    	// seqGC is the sequence counter for GC begin/end.
    	//
    	// Mutated only during stop-the-world.
    	seqGC uint64
    
    	// minPageHeapAddr is the minimum address of the page heap when tracing started.
    	minPageHeapAddr uint64
    
    	// debugMalloc is the value of debug.malloc before tracing began.
    	debugMalloc bool
    }
    
    // Trace public API.
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. src/fmt/scan.go

    	// for the operation being performed; see the package documentation
    	// for more information.
    	SkipSpace()
    	// Token skips space in the input if skipSpace is true, then returns the
    	// run of Unicode code points c satisfying f(c).  If f is nil,
    	// !unicode.IsSpace(c) is used; that is, the token will hold non-space
    	// characters. Newlines are treated appropriately for the operation being
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top