Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for unnamed (0.2 sec)

  1. src/syscall/syscall_solaris.go

    	}
    	// length is family (uint16), name, NUL.
    	sl := _Socklen(2)
    	if n > 0 {
    		sl += _Socklen(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    func Getsockname(fd int) (sa Sockaddr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/time/zoneinfo.go

    // FixedZone returns a [Location] that always uses
    // the given zone name and offset (seconds east of UTC).
    func FixedZone(name string, offset int) *Location {
    	// Most calls to FixedZone have an unnamed zone with an offset by the hour.
    	// Optimize for that case by returning the same *Location for a given hour.
    	const hoursBeforeUTC = 12
    	const hoursAfterUTC = 14
    	hour := offset / 60 / 60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. test/live.go

    	i9 = y                  // make y escape so the line above has to call convT
    	return x != y
    }
    
    // liveness formerly confused by UNDEF followed by RET,
    // leading to "live at entry to f10: ~r1" (unnamed result).
    
    func f10() string {
    	panic(1)
    }
    
    // liveness formerly confused by select, thinking runtime.selectgo
    // can return to next instruction; it always jumps elsewhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/runtime/mfinal.go

    	case fint.Kind_&abi.KindMask == abi.Pointer:
    		if (fint.Uncommon() == nil || etyp.Uncommon() == nil) && (*ptrtype)(unsafe.Pointer(fint)).Elem == ot.Elem {
    			// ok - not same type, but both pointers,
    			// one or the other is unnamed, and same element type, so assignable.
    			goto okarg
    		}
    	case fint.Kind_&abi.KindMask == abi.Interface:
    		ityp := (*interfacetype)(unsafe.Pointer(fint))
    		if len(ityp.Methods) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/convert.go

    func walkConvInterface(n *ir.ConvExpr, init *ir.Nodes) ir.Node {
    
    	n.X = walkExpr(n.X, init)
    
    	fromType := n.X.Type()
    	toType := n.Type()
    	if !fromType.IsInterface() && !ir.IsBlank(ir.CurFunc.Nname) {
    		// skip unnamed functions (func _())
    		if fromType.HasShape() {
    			// Unified IR uses OCONVIFACE for converting all derived types
    			// to interface type. Avoid assertion failure in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        }
    
        private InputChangesAwareTaskAction wrap(final Action<? super Task> action) {
            return wrap(action, "unnamed action");
        }
    
        private InputChangesAwareTaskAction wrap(final Action<? super Task> action, String actionName) {
            if (action instanceof InputChangesAwareTaskAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    		data, err := os.ReadFile(filepath.Join(p.Dir, file))
    		if err != nil {
    			base.Fatalf("go: %s", err)
    		}
    		h.Write(data)
    	}
    	return fmt.Sprintf("plugin/unnamed-%x", h.Sum(nil))
    }
    
    func (gcToolchain) ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error {
    	cxx := len(root.Package.CXXFiles) > 0 || len(root.Package.SwigCXXFiles) > 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. test/live_regabi.go

    	i9 = y                  // make y escape so the line above has to call convT
    	return x != y
    }
    
    // liveness formerly confused by UNDEF followed by RET,
    // leading to "live at entry to f10: ~r1" (unnamed result).
    
    func f10() string {
    	panic(1)
    }
    
    // liveness formerly confused by select, thinking runtime.selectgo
    // can return to next instruction; it always jumps elsewhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    			if u.nify(x, y, mode, p) {
    				// We have a match, possibly through underlying types.
    				xi := asInterface(x)
    				yi := asInterface(y)
    				xn := asNamed(x) != nil
    				yn := asNamed(y) != nil
    				// If we have two interfaces, what to do depends on
    				// whether they are named and their method sets.
    				if xi != nil && yi != nil {
    					// Both types are interfaces.
    					// If both types are defined types, they must be identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder.go

    	// protocol detection is disabled for gateway and use_downstream_protocol is used under protocol
    	// detection for cluster to select upstream connection protocol when the service port is unnamed.
    	// use_downstream_protocol should be disabled for gateway; while it sort of makes sense there, even
    	// without sniffing, a concern is that clients will do ALPN negotiation, and we always advertise
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top