Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 629 for Parker (0.18 sec)

  1. src/main/resources/fess_indices/fess.json

            "english_keywords": {
              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}en/protwords.txt"
            },
            "finnish_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}fi/stopwords.txt"
            },
            "finnish_keywords": {
              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}fi/protwords.txt"
    Json
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  2. src/bufio/scan.go

    		return data[0 : len(data)-1]
    	}
    	return data
    }
    
    // ScanLines is a split function for a [Scanner] that returns each line of
    // text, stripped of any trailing end-of-line marker. The returned line may
    // be empty. The end-of-line marker is one optional carriage return followed
    // by one mandatory newline. In regular expression notation, it is `\r?\n`.
    // The last non-empty line of input will be returned even if it has no
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  3. cmd/signature-v4-parser_test.go

    Harshavardhana <******@****.***> 1708583166 -0800
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 27.4K bytes
    - Viewed (0)
  4. cmd/metacache-set_gen.go

    			}
    		case "FilterPrefix":
    			z.FilterPrefix, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "FilterPrefix")
    				return
    			}
    		case "Marker":
    			z.Marker, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Marker")
    				return
    			}
    		case "Limit":
    			z.Limit, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Limit")
    				return
    			}
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Tue Mar 19 20:23:12 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    		BytesFailed:      ri.BytesFailed,
    	}
    }
    
    func (ri *batchJobInfo) countItem(size int64, dmarker, success bool) {
    	if ri == nil {
    		return
    	}
    	if success {
    		if dmarker {
    			ri.DeleteMarkers++
    		} else {
    			ri.Objects++
    			ri.BytesTransferred += size
    		}
    	} else {
    		if dmarker {
    			ri.DeleteMarkersFailed++
    		} else {
    			ri.ObjectsFailed++
    			ri.BytesFailed += size
    		}
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "type":       "keyword_marker",
            "keywords": ["Hola", "món", "recerca"]
          },
          "catalan_stemmer": {
            "type":       "stemmer",
            "language":   "catalan"
          },
          "czech_stop": {
            "type":       "stop",
            "stopwords":  "_czech_"
          },
          "czech_keywords": {
            "type":       "keyword_marker",
    Json
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  7. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "type":       "keyword_marker",
            "keywords": ["Hola", "món", "recerca"]
          },
          "catalan_stemmer": {
            "type":       "stemmer",
            "language":   "catalan"
          },
          "czech_stop": {
            "type":       "stop",
            "stopwords":  "_czech_"
          },
          "czech_keywords": {
            "type":       "keyword_marker",
    Json
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

                visitor.onText(value);
            }
    
            // end of tag marker
            if (scanner.lookingAt('}')) {
                visitor.onEndJavadocTag(tagName);
                scanner.next();
            }
        }
    
        private void parseStartElement(TokenVisitor visitor) {
            // start element marker
            scanner.next();
            boolean isEnd = false;
            if (scanner.lookingAt('/')) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.1K bytes
    - Viewed (0)
  9. cmd/api-resources_test.go

    			prefix:       "photos/",
    			marker:       "test",
    			delimiter:    SlashSeparator,
    			maxKeys:      100,
    			encodingType: "gzip",
    		},
    		{
    			values: url.Values{
    				"prefix":        []string{"photos/"},
    				"marker":        []string{"test"},
    				"delimiter":     []string{SlashSeparator},
    				"encoding-type": []string{"gzip"},
    			},
    			prefix:       "photos/",
    			marker:       "test",
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 7.1K bytes
    - Viewed (0)
  10. cmd/metacache-set.go

    }
    
    // findFirstPart will find the part with 0 being the first that corresponds to the marker in the options.
    // io.ErrUnexpectedEOF is returned if the place containing the marker hasn't been scanned yet.
    // io.EOF indicates the marker is beyond the end of the stream and does not exist.
    func (o *listPathOptions) findFirstPart(fi FileInfo) (int, error) {
    	search := o.Marker
    	if search == "" {
    		search = o.Prefix
    	}
    	if search == "" {
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 30.4K bytes
    - Viewed (0)
Back to top