Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for addTab (0.1 sec)

  1. clause/limit.go

    func (limit Limit) Build(builder Builder) {
    	if limit.Limit != nil && *limit.Limit >= 0 {
    		builder.WriteString("LIMIT ")
    		builder.AddVar(builder, *limit.Limit)
    	}
    	if limit.Offset > 0 {
    		if limit.Limit != nil && *limit.Limit >= 0 {
    			builder.WriteByte(' ')
    		}
    		builder.WriteString("OFFSET ")
    		builder.AddVar(builder, limit.Offset)
    	}
    }
    
    // MergeClause merge order by clauses
    func (limit Limit) MergeClause(clause *Clause) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Feb 06 02:54:40 UTC 2024
    - 942 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java

            return this;
        }
    
        public PopularWordsRequestBuilder setSize(final int size) {
            request.setSize(size);
            return this;
        }
    
        public PopularWordsRequestBuilder addTag(final String tag) {
            request.addTag(tag);
            return this;
        }
    
        public PopularWordsRequestBuilder addRole(final String role) {
            request.addRole(role);
            return this;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java

            return this;
        }
    
        public SuggestRequestBuilder setQuery(final String query) {
            request.setQuery(query);
            return this;
        }
    
        public SuggestRequestBuilder addTag(final String tag) {
            request.addTag(tag);
            return this;
        }
    
        public SuggestRequestBuilder addRole(final String role) {
            request.addRole(role);
            return this;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      ops::Switch switch_b(root.WithOpName("switch_b"), value, cond_b);
    
      Output add_a = ops::Add(root.WithOpName("add_a"), switch_a.output_true,
                              switch_b.output_true);
      Output add_b = ops::Add(root.WithOpName("add_b"), switch_a.output_true,
                              switch_b.output_true);
      Output add = ops::Add(root.WithOpName("add_c"), add_a, add_b);
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    		case *ast.RangeStmt:
    			body = n.Body
    			addVar(n.Key)
    			addVar(n.Value)
    		case *ast.ForStmt:
    			body = n.Body
    			switch post := n.Post.(type) {
    			case *ast.AssignStmt:
    				// e.g. for p = head; p != nil; p = p.next
    				for _, lhs := range post.Lhs {
    					addVar(lhs)
    				}
    			case *ast.IncDecStmt:
    				// e.g. for i := 0; i < n; i++
    				addVar(post.X)
    			}
    		}
    		if vars == nil {
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. statement.go

    }
    
    // Quote returns quoted value
    func (stmt *Statement) Quote(field interface{}) string {
    	var builder strings.Builder
    	stmt.QuoteTo(&builder, field)
    	return builder.String()
    }
    
    // AddVar add var
    func (stmt *Statement) AddVar(writer clause.Writer, vars ...interface{}) {
    	for idx, v := range vars {
    		if idx > 0 {
    			writer.WriteByte(',')
    		}
    
    		switch v := v.(type) {
    		case sql.NamedArg:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/hash/maphash/smhasher_test.go

    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	var b [3]byte
    	for i := 0; i < 256; i++ {
    		b[0] = byte(i)
    		h.addB(b[:1])
    		for j := 0; j < 256; j++ {
    			b[1] = byte(j)
    			h.addB(b[:2])
    			if !testing.Short() {
    				for k := 0; k < 256; k++ {
    					b[2] = byte(k)
    					h.addB(b[:3])
    				}
    			}
    		}
    	}
    	h.check(t)
    }
    
    // Different length strings of all zeros have distinct hashes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/runtime/hash_test.go

    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	var b [3]byte
    	for i := 0; i < 256; i++ {
    		b[0] = byte(i)
    		h.addB(b[:1])
    		for j := 0; j < 256; j++ {
    			b[1] = byte(j)
    			h.addB(b[:2])
    			if !testing.Short() {
    				for k := 0; k < 256; k++ {
    					b[2] = byte(k)
    					h.addB(b[:3])
    				}
    			}
    		}
    	}
    	h.check(t)
    }
    
    // Different length strings of all zeros have distinct hashes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
         * The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                    popularWordsRequestBuilder.setSeed(baseSeed);
                    stream(baseTags).of(stream -> stream.forEach(tag -> popularWordsRequestBuilder.addTag(tag)));
                    stream(baseRoles).of(stream -> stream.forEach(role -> popularWordsRequestBuilder.addRole(role)));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top