Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 522 for addKind (0.17 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

        }
    
        public void addRole(final String role) {
            this.roles.add(role);
        }
    
        public void addField(final String field) {
            this.fields.add(field);
        }
    
        public void addKind(final String kind) {
            this.kinds.add(kind);
        }
    
        public void setSuggestDetail(final boolean suggestDetail) {
            this.suggestDetail = suggestDetail;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            assertEquals(1, response.getNum());
            assertEquals("全文 検索", response.getWords().get(0));
    
            response = suggester.suggest().addKind("query").execute().getResponse();
            assertEquals(1, response.getNum());
    
            SuggestResponse response2 = suggester.suggest().setSuggestDetail(true).execute().getResponse();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. src/go/token/position_test.go

    		for i, offset := range test.lines {
    			f.AddLine(offset)
    			if f.LineCount() != i+1 {
    				t.Errorf("%s, AddLine: got line count %d; want %d", f.Name(), f.LineCount(), i+1)
    			}
    			// adding the same offset again should be ignored
    			f.AddLine(offset)
    			if f.LineCount() != i+1 {
    				t.Errorf("%s, AddLine: got unchanged line count %d; want %d", f.Name(), f.LineCount(), i+1)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

        }
    
        public static void addLink(MutableModelNode node, String path, Transformer<ModelRegistration, ModelRegistrations.Builder> definition) {
            addLink(node, ModelPath.path(path), definition);
        }
    
        public static void addLink(MutableModelNode node, ModelPath path, Transformer<ModelRegistration, ModelRegistrations.Builder> definition) {
            node.addLink(definition.transform(registration(path)));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/mips64/asm.go

    	// mips64 ELF relocation (endian neutral)
    	//		offset	uint64
    	//		sym		uint32
    	//		ssym	uint8
    	//		type3	uint8
    	//		type2	uint8
    	//		type	uint8
    	//		addend	int64
    
    	addend := r.Xadd
    
    	out.Write64(uint64(sectoff))
    
    	elfsym := ld.ElfSymForReloc(ctxt, r.Xsym)
    	out.Write32(uint32(elfsym))
    	out.Write8(0)
    	out.Write8(0)
    	out.Write8(0)
    	switch r.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

            )
        }
    
    
        @Test
        fun `underlay adding blocks appear before overlay ones`() {
            val underlay = resolvedDocument(
                """
                adding(1) {
                    a = 1
                }
                """.trimIndent()
            )
    
            val overlay = resolvedDocument(
                """
                adding(1) {
                    b = 2
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/symbolbuilder.go

    	return sb.AddUintXX(arch, uint64(v), 4)
    }
    
    func (sb *SymbolBuilder) AddUint64(arch *sys.Arch, v uint64) int64 {
    	return sb.AddUintXX(arch, v, 8)
    }
    
    func (sb *SymbolBuilder) AddUint(arch *sys.Arch, v uint64) int64 {
    	return sb.AddUintXX(arch, v, arch.PtrSize)
    }
    
    func (sb *SymbolBuilder) SetUint8(arch *sys.Arch, r int64, v uint8) int64 {
    	return sb.setUintXX(arch, r, uint64(v), 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. docs/bucket/replication/setup_3site_replication.sh

    ./mc mb sitec/bucket/
    ./mc version enable sitec/bucket/
    ./mc mb -l sitec/olockbucket
    
    echo "adding replication rule for a -> b : ${remote_arn}"
    sleep 1
    ./mc replicate add sitea/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/symtab.go

    		moduledata.AddAddr(ctxt.Arch, sym)
    		moduledata.AddUint(ctxt.Arch, len)
    		moduledata.AddUint(ctxt.Arch, len)
    	}
    
    	sliceSym := func(sym loader.Sym) {
    		slice(sym, uint64(ldr.SymSize(sym)))
    	}
    
    	nilSlice := func() {
    		moduledata.AddUint(ctxt.Arch, 0)
    		moduledata.AddUint(ctxt.Arch, 0)
    		moduledata.AddUint(ctxt.Arch, 0)
    	}
    
    	// The pcHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter.go

    	widths  []int    // list of column widths in runes - re-used during formatting
    }
    
    // addLine adds a new line.
    // flushed is a hint indicating whether the underlying writer was just flushed.
    // If so, the previous line is not likely to be a good indicator of the new line's cells.
    func (b *Writer) addLine(flushed bool) {
    	// Grow slice instead of appending,
    	// as that gives us an opportunity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top