Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 735 for IsSame (1.38 sec)

  1. src/runtime/rand.go

    // randomness must always use rand.
    //
    // cheaprand should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cheaprand
    //go:nosplit
    func cheaprand() uint32 {
    	mp := getg().m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/encoding/xml/xml.go

    		}
    		return CharData(data), nil
    	}
    
    	if b, ok = d.mustgetc(); !ok {
    		return nil, d.err
    	}
    	switch b {
    	case '/':
    		// </: End element
    		var name Name
    		if name, ok = d.nsname(); !ok {
    			if d.err == nil {
    				d.err = d.syntaxError("expected element name after </")
    			}
    			return nil, d.err
    		}
    		d.space()
    		if b, ok = d.mustgetc(); !ok {
    			return nil, d.err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. src/math/unsafe.go

    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/num
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    // Note that this comment is not part of the doc comment.
    //
    //go:linkname Float32bits
    
    // Float32bits returns the IEEE 754 binary representation of f,
    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_generic.go

    }
    
    // runtime.cmpstring calls are emitted by the compiler.
    //
    // runtime.cmpstring should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/zhaochuninhefei/gmgo
    //   - github.com/bytedance/gopkg
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/symtabinl.go

    // fall back to the outermost frame.
    //
    // newInlineUnwinder should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname newInlineUnwinder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/net/dnsconfig.go

    )
    
    // defaultNS is the default name servers to use in the absence of DNS configuration.
    //
    // defaultNS should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/pojntfx/hydrapp/hydrapp
    //   - github.com/mtibben/androiddnsfix
    //   - github.com/metacubex/mihomo
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

            String javaVendorVersion = systemProperties.get("java.vm.version");
            String osName = systemProperties.get("os.name");
            String osVersion = systemProperties.get("os.version");
            String osArch = systemProperties.get("os.arch");
            return String.format("%s/%s (%s;%s;%s) (%s;%s;%s)", appName, appVersion, osName, osVersion, osArch, javaVendor, javaVersion, javaVendorVersion);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/crypto/x509/root.go

    package x509
    
    import (
    	"internal/godebug"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // systemRoots should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/breml/rootcerts
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname systemRoots
    var (
    	once           sync.Once
    	systemRootsMu  sync.RWMutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/runtime/slice.go

    		asanread(from, copymem)
    	}
    
    	memmove(to, from, copymem)
    
    	return to
    }
    
    // makeslice should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makeslice
    func makeslice(et *_type, len, cap int) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice.go

    			k = kind.GRPCRoute
    		case kind.UDPRoute.String():
    			k = kind.UDPRoute
    		default:
    			// shouldn't happen
    			continue
    		}
    		name, ns, ok := strings.Cut(nsname, ".")
    		if !ok {
    			log.Errorf("invalid InternalParentName name: %s", nsname)
    			continue
    		}
    		out = append(out, ConfigKey{
    			Kind:      k,
    			Name:      name,
    			Namespace: ns,
    		})
    	}
    	return out
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top