Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,421 for readings (0.12 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_invalid_kuromoji_token = "{errors.invalid_kuromoji_token}";
    
        /** The key of the message: The number of segmentations {0} does not the match number of readings {1}. */
        public static final String ERRORS_invalid_kuromoji_segmentation = "{errors.invalid_kuromoji_segmentation}";
    
        /** The key of the message: "{1}" in "{0}" is invalid. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/heading.go

    }
    
    func (b *Heading) printMarkdown(buf *bytes.Buffer, s mdState) {
    	// TODO: handle setext headings properly.
    	buf.WriteString(s.prefix)
    	for i := 0; i < b.Level; i++ {
    		buf.WriteByte('#')
    	}
    	buf.WriteByte(' ')
    	// The prefix has already been printed for this line of text.
    	s.prefix = ""
    	b.Text.printMarkdown(buf, s)
    	if b.ID != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. samples/ambient-argo/application/ratings.yaml

      labels:
        account: ratings
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v1
      labels:
        app: ratings
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v1
      template:
        metadata:
          labels:
            app: ratings
            version: v1
        spec:
          serviceAccountName: bookinfo-ratings
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1021 bytes
    - Viewed (0)
  4. src/go/doc/headscan.go

    				fmt.Printf("%s (package %s)\n", path, pkg.Name)
    				for _, h := range list {
    					fmt.Printf("\t%s\n", h)
    				}
    				nheadings += len(list)
    			}
    		}
    		return nil
    	})
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	fmt.Println(nheadings, "headings found")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 21:50:52 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. samples/bookinfo/src/ratings/ratings.js

            res.end(JSON.stringify({status: 'Ratings is healthy'}))
        } else {
            res.writeHead(500, {'Content-type': 'application/json'})
            res.end(JSON.stringify({status: 'Ratings is not healthy'}))
        }
    })
    
    function putLocalReviews (productId, ratings) {
      userAddedRatings[productId] = {
        id: productId,
        ratings: ratings
      }
      return getLocalReviews(productId)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-readiness.yaml

    John Howard <******@****.***> 1565919828 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 556 bytes
    - Viewed (0)
  7. src/internal/trace/raw/textreader.go

    	}
    	spec := r.specs[ev]
    	args, err := readArgs(line, spec.Args)
    	if err != nil {
    		return Event{}, fmt.Errorf("reading args for %s: %v", evStr, err)
    	}
    	if spec.IsStack {
    		len := int(args[1])
    		for i := 0; i < len; i++ {
    			line, err := r.nextLine()
    			if err == io.EOF {
    				return Event{}, fmt.Errorf("unexpected EOF while reading stack: args=%v", args)
    			}
    			if err != nil {
    				return Event{}, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. doc/initial/6-stdlib/99-minor/0-heading.md

    Jonathan Amsterdam <******@****.***> 1705624488 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 60 bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-ratings.yaml

      labels:
        app: ratings
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v1
      template:
        metadata:
          labels:
            app: ratings
            version: v1
        spec:
          containers:
          - name: ratings
            image: docker.io/istio/examples-bookinfo-ratings-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/0-heading.md

    Jonathan Amsterdam <******@****.***> 1705947607 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:44:53 UTC 2024
    - 60 bytes
    - Viewed (0)
Back to top