Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for original (0.17 sec)

  1. src/cmd/compile/internal/ssa/trim.go

    		}
    		// If the original block contained u = φ(u0, u1, ..., un) and
    		// the current phi is
    		//    v = φ(v0, v1, ..., u, ..., vk)
    		// then the merged phi is
    		//    v = φ(v0, v1, ..., u0, ..., vk, u1, ..., un)
    		v.SetArg(i, u.Args[0])
    		v.AddArgs(u.Args[1:]...)
    	} else {
    		// If the original block contained u = φ(u0, u1, ..., un) and
    		// the current phi is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. src/math/acosh.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // The original C code, the long comment, and the constants
    // below are from FreeBSD's /usr/src/lib/msun/src/e_acosh.c
    // and came with this notice. The go code is a simplified
    // version of the original C.
    //
    // ====================================================
    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/lex.go

    // The underlying scanner elides all spaces except newline, so the input looks like a stream of
    // Tokens; original spacing is lost but we don't need it.
    type TokenReader interface {
    	// Next returns the next token.
    	Next() ScanToken
    	// The following methods all refer to the most recent token returned by Next.
    	// Text returns the original string representation of the token.
    	Text() string
    	// File reports the source file name of the token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/container/ring/ring.go

    // becomes s and returns the original value for r.Next().
    // r must not be empty.
    //
    // If r and s point to the same ring, linking
    // them removes the elements between r and s from the ring.
    // The removed elements form a subring and the result is a
    // reference to that subring (if no elements were removed,
    // the result is still the original value for r.Next(),
    // and not nil).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. src/net/http/responsecontroller.go

    type ResponseController struct {
    	rw ResponseWriter
    }
    
    // NewResponseController creates a [ResponseController] for a request.
    //
    // The ResponseWriter should be the original value passed to the [Handler.ServeHTTP] method,
    // or have an Unwrap method returning the original ResponseWriter.
    //
    // If the ResponseWriter implements any of the following methods, the ResponseController
    // will call them as appropriate:
    //
    //	Flush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/math/log.go

    // license that can be found in the LICENSE file.
    
    package math
    
    /*
    	Floating-point logarithm.
    */
    
    // The original C code, the long comment, and the constants
    // below are from FreeBSD's /usr/src/lib/msun/src/e_log.c
    // and came with this notice. The go code is a simpler
    // version of the original C.
    //
    // ====================================================
    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue57522.go

    // Copyright 2023 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.
    
    package p
    
    // A simplified version of the code in the original report.
    type S[T any] struct{}
    var V = S[any]{}
    func (fs *S[T]) M(V.M /* ERROR "V.M is not a type" */) {}
    
    // Other minimal reproducers.
    type S1[T any] V1.M /* ERROR "V1.M is not a type" */
    type V1 = S1[any]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 11 22:29:34 UTC 2023
    - 728 bytes
    - Viewed (0)
  8. src/math/atanh.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // The original C code, the long comment, and the constants
    // below are from FreeBSD's /usr/src/lib/msun/src/e_atanh.c
    // and came with this notice. The go code is a simplified
    // version of the original C.
    //
    // ====================================================
    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/internal/genflags/vetflag.go

    	for _, flag := range analysisFlags {
    		if rEnable.MatchString(flag.Usage) {
    			analyzerSet[flag.Name] = true
    		}
    	}
    
    	rDeprecated := regexp.MustCompile("^deprecated alias for -(?P<analyzer>(.+))$")
    	// Returns the original value matched by rDeprecated on input value.
    	// If there is no match, "" is returned.
    	originalValue := func(value string) string {
    		match := rDeprecated.FindStringSubmatch(value)
    		if len(match) < 2 {
    			return ""
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/path.go

    			p = append(p, '%', hex[c>>4], hex[c&0xF])
    		} else {
    			p = append(p, c)
    		}
    	}
    
    	return string(p)
    }
    
    // PrefixToPath is the inverse of PathToPrefix, replacing escape sequences with
    // the original character.
    func PrefixToPath(s string) (string, error) {
    	percent := strings.IndexByte(s, '%')
    	if percent == -1 {
    		return s, nil
    	}
    
    	p := make([]byte, 0, len(s))
    	for i := 0; i < len(s); {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 13:56:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top