Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Display (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    </tr>
    </tbody>
    </table> </td>
    </tr>
    <tr>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    
    The configuration cache entry was discarded because of the found problem failing the build.
    
    Details can be found in the linked HTML report:
    
    image::configuration-cache/problems-report.png[]
    
    The report displays the set of problems twice.
    First grouped by problem message, then grouped by task.
    The former allows you to quickly see what classes of problems your build is facing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top