Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Display (0.14 sec)

  1. src/time/format.go

    	switch loc := t.Location(); loc {
    	case UTC, nil:
    		buf = append(buf, "time.UTC"...)
    	case Local:
    		buf = append(buf, "time.Local"...)
    	default:
    		// there are several options for how we could display this, none of
    		// which are great:
    		//
    		// - use Location(loc.name), which is not technically valid syntax
    		// - use LoadLocation(loc.name), which will cause a syntax error when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	case AF_UNIX:
    		pp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))
    		sa := new(SockaddrUnix)
    		if pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/time/time.go

    func (t Time) Local() Time {
    	t.setLoc(Local)
    	return t
    }
    
    // In returns a copy of t representing the same time instant, but
    // with the copy's location information set to loc for display
    // purposes.
    //
    // In panics if loc is nil.
    func (t Time) In(loc *Location) Time {
    	if loc == nil {
    		panic("time: missing Location in call to Time.In")
    	}
    	t.setLoc(loc)
    	return t
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * </p>
         *
         * @return The name of this project. Never return null.
         */
        String getName();
    
        /**
         * Returns a human-consumable display name for this project.
         */
        String getDisplayName();
    
        /**
         * Returns the description of this project, if any.
         *
         * @return the description. May return null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	case AF_UNIX:
    		pp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))
    		sa := new(SockaddrUnix)
    		if pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	case AF_UNIX:
    		pp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))
    		sa := new(SockaddrUnix)
    		if pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		sa := new(SockaddrUnix)
    		// For z/OS, only replace NUL with @ when the
    		// length is not zero.
    		if pp.Len != 0 && pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Build logic like the above example creates challenges in resolving declared dependencies, as reporting tools will display this dependency as if the user declared the version as "2.0", even though they never did.
    Instead, the build logic can avoid iteration and mutation by declaring a `preferred` version constraint on the dependency's coordinates.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //
    //	<v-offset> ::= <(offset) number> _ <(virtual offset) number>
    //
    // The c parameter, if not 0, is a character we just read which is the
    // start of the <call-offset>.
    //
    // We don't display the offset information anywhere.
    func (st *state) callOffset(c byte) {
    	if c == 0 {
    		if len(st.str) == 0 {
    			st.fail("missing call offset")
    		}
    		c = st.str[0]
    		st.advance(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

        EnumSet<E> result = EnumSet.allOf(type);
        result.removeAll(collection);
        return result;
      }
    
      /**
       * Returns a set backed by the specified map. The resulting set displays the same ordering,
       * concurrency, and performance characteristics as the backing map. In essence, this factory
       * method provides a {@link Set} implementation corresponding to any {@link Map} implementation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top