Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,278 for stars (0.1 sec)

  1. samples/bookinfo/swagger.yaml

        properties:
          stars:
            type: "integer"
            format: "int32"
            minimum: 1
            maximum: 5
            description: "Number of stars"
          color:
            type: "string"
            enum:
              - "red"
              - "black"
            description: "Color in which stars should be displayed"
        required:
        - "stars"
        - "color"
      ProductRatings:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments.golden

    	 * line
    
    	 */
    }
    
    /*
     * line
     * of
     * stars
     */
    
    /* another line
     * of
     * stars */
    
    /*	and another line
     *	of
     *	stars */
    
    /* a line of
     * stars */
    
    /*	and another line of
     *	stars */
    
    /* a line of stars
     */
    
    /*	and another line of
     */
    
    /* a line of stars
     */
    
    /*	and another line of
     */
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  3. src/go/printer/testdata/comments.input

    	 * line
    
    	*/
    }
    
    /*
     * line
     * of
     * stars
     */
    
    /* another line
     * of
     * stars */
    
    /*	and another line
     *	of
     *	stars */
    
    /* a line of
     * stars */
    
    /*	and another line of
     *	stars */
    
    /* a line of stars
    */
    
    /*	and another line of
    */
    
    /* a line of stars
     */
    
    /*	and another line of
     */
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  4. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

        	result += "  \"text\": \"An extremely entertaining play by Shakespeare. The slapstick humour is refreshing!\"";
          if (ratings_enabled) {
            if (starsReviewer1 != -1) {
              result += ", \"rating\": {\"stars\": " + starsReviewer1 + ", \"color\": \"" + star_color + "\"}";
            }
            else {
              result += ", \"rating\": {\"error\": \"Ratings service is currently unavailable\"}";
            }
          }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/templates/productpage.html

              <div class="mx-auto max-w-2xl">
                {% if review.rating: %}
                {% if review.rating.stars: %}
                <div class="flex gap-x-1 text-{{ review.rating.color }}-500">
                  {% for n in range(review.rating.stars) %}
                  <svg id="glyphicon glyphicon-star" class="h-5 w-5 flex-none" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/mime/mediatype.go

    			return "", nil, errors.New("mime: duplicate parameter name")
    		}
    		pmap[key] = value
    		v = rest
    	}
    
    	// Stitch together any continuations or things with stars
    	// (i.e. RFC 2231 things with stars: "foo*0" or "foo*")
    	var buf strings.Builder
    	for key, pieceMap := range continuation {
    		singlePartKey := key + "*"
    		if v, ok := pieceMap[singlePartKey]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/printer/printer.go

    		prefix = commonPrefix(line, line)
    	}
    
    	/*
    	 * Check for vertical "line of stars" and correct prefix accordingly.
    	 */
    	lineOfStars := false
    	if p, _, ok := strings.Cut(prefix, "*"); ok {
    		// remove trailing blank from prefix so stars remain aligned
    		prefix = strings.TrimSuffix(p, " ")
    		lineOfStars = true
    	} else {
    		// No line of stars present.
    		// Determine the white space on the first line after the /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/base.css

        margin-right: 1px;
    }
    
    /* Clever use of RTL to fill in all stars to left of hover position */
    .rating {
        direction: rtl;
    }
    .rating > .star {
        cursor: pointer;
        padding: 3px;
    }
    .rating > .star:hover > svg > g,
    .rating > .star:hover ~ .star > svg > g,
    .rating > .star.selected > svg > g,
    .rating > .star.selected ~ .star > svg > g {
        fill: #999;
    }
    
    /* Footer styles */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. docs/debugging/xl-meta/main.go

    		m.parityData[m.data] = set
    
    		// Combine
    		start := len(b) * idx
    		if start >= len(m.mapped) {
    			continue
    		}
    		fmt.Println("Block data size:", m.size, "Shard size", ssz, "Got Shard:", len(b), "Bitrot ok", "Start", start, "End", start+len(b))
    		copy(m.mapped[start:], b)
    		for j := range b {
    			if j+start >= len(m.filled) {
    				break
    			}
    			m.filled[j+start] = 1
    		}
    	}
    	return &m, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"standing_woman":                       "\U0001f9cd\u200d\u2640\ufe0f",
    	"star":                                 "\u2b50",
    	"star2":                                "\U0001f31f",
    	"star_and_crescent":                    "\u262a\ufe0f",
    	"star_of_david":                        "\u2721\ufe0f",
    	"star_struck":                          "\U0001f929",
    	"stars":                                "\U0001f320",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top