Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for nullText (0.13 sec)

  1. guava/src/com/google/common/base/Joiner.java

       * nullText} for any provided null elements.
       */
      public Joiner useForNull(String nullText) {
        checkNotNull(nullText);
        return new Joiner(this) {
          @Override
          CharSequence toString(@CheckForNull Object part) {
            return (part == null) ? nullText : Joiner.this.toString(part);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Joiner.java

       * nullText} for any provided null elements.
       */
      public Joiner useForNull(String nullText) {
        checkNotNull(nullText);
        return new Joiner(this) {
          @Override
          CharSequence toString(@CheckForNull Object part) {
            return (part == null) ? nullText : Joiner.this.toString(part);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    [ "lastNotNull" ], "fields": "", "values": false }, "textMode": "auto" }, "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": true, "lineColor": "rgb(31,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    		pass:     pass,
    		filename: filename,
    		file:     file,
    		inHeader: true,
    	}
    }
    
    func (check *checker) nonGoFile(pos token.Pos, fullText string) {
    	// Process each line.
    	text := fullText
    	inStar := false
    	for text != "" {
    		offset := len(fullText) - len(text)
    		var line string
    		line, text, _ = strings.Cut(text, "\n")
    
    		if !inStar && strings.HasPrefix(line, "//") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    	// requirement that the comment be followed by a blank line.
    	var plusBuildCutoff int
    	fullText := text
    	for text != "" {
    		i := strings.Index(text, "\n")
    		if i < 0 {
    			i = len(text)
    		} else {
    			i++
    		}
    		offset := len(fullText) - len(text)
    		line := text[:i]
    		text = text[i:]
    		line = strings.TrimSpace(line)
    		if !strings.HasPrefix(line, "//") && line != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. schema/index.go

    package schema
    
    import (
    	"fmt"
    	"sort"
    	"strconv"
    	"strings"
    )
    
    type Index struct {
    	Name    string
    	Class   string // UNIQUE | FULLTEXT | SPATIAL
    	Type    string // btree, hash, gist, spgist, gin, and brin
    	Where   string
    	Comment string
    	Option  string        // WITH PARSER parser_name
    	Fields  []IndexOption // Note: IndexOption's Field maybe the same
    }
    
    type IndexOption struct {
    	*Field
    	Expression string
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. schema/index_test.go

    			Class:  "UNIQUE",
    			Fields: []schema.IndexOption{{Field: &schema.Field{Name: "Name4", UniqueIndex: "idx_user_indices_name4"}}},
    		},
    		"idx_user_indices_name5": {
    			Name:    "idx_user_indices_name5",
    			Class:   "FULLTEXT",
    			Comment: "hello , world",
    			Where:   "age > 10",
    			Fields:  []schema.IndexOption{{Field: &schema.Field{Name: "Name5"}}},
    		},
    		"profile": {
    			Name:    "profile",
    			Comment: "hello , world",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    			}
    			if !reflect.DeepEqual(b.X, tt.post) {
    				t.Errorf("%s: Unmarshal(%#q):\n\tpre.X:  %#v\n\tgot.X:  %#v\n\twant.X: %#v", tt.Where, blob, tt.pre, b.X, tt.post)
    			}
    		})
    	}
    }
    
    type NullTest struct {
    	Bool      bool
    	Int       int
    	Int8      int8
    	Int16     int16
    	Int32     int32
    	Int64     int64
    	Uint      uint
    	Uint8     uint8
    	Uint16    uint16
    	Uint32    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top