Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,517 for data_ (0.04 sec)

  1. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

            map.put("data1", "aaa test bbb");
            assertFalse(docBoostMatcher.match(map));
    
            map.put("data1", "hoge");
            assertFalse(docBoostMatcher.match(map));
    
            map.remove("data1");
            assertFalse(docBoostMatcher.match(map));
    
            map.put("data2", "hoge");
            assertFalse(docBoostMatcher.match(map));
    
            docBoostMatcher.setMatchExpression("data1.matches(\".*test.*\")");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.data-00000-of-00001

    Adam Cogdell <******@****.***> 1684357973 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 120 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func Putmsg(fd int, cl []byte, data []byte, flags int) (err error) {
    	var clp, datap *strbuf
    	if len(cl) > 0 {
    		clp = &strbuf{
    			Len: int32(len(cl)),
    			Buf: (*int8)(unsafe.Pointer(&cl[0])),
    		}
    	}
    	if len(data) > 0 {
    		datap = &strbuf{
    			Len: int32(len(data)),
    			Buf: (*int8)(unsafe.Pointer(&data[0])),
    		}
    	}
    	return putmsg(fd, clp, datap, flags)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter_test.go

    					{
    						Object: map[string]interface{}{
    							"apiVersion": "example.com/v1",
    							"kind":       "foo",
    							"other":      "data",
    						},
    					},
    					{
    						Object: map[string]interface{}{
    							"apiVersion": "example.com/v1",
    							"kind":       "foo",
    							"other":      "data2",
    						},
    					},
    				},
    			},
    			ExpectedObject: &unstructured.UnstructuredList{
    				Object: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/crypto/subtle/xor_test.go

    	})
    }
    
    func BenchmarkXORBytes(b *testing.B) {
    	dst := make([]byte, 1<<15)
    	data0 := make([]byte, 1<<15)
    	data1 := make([]byte, 1<<15)
    	sizes := []int64{1 << 3, 1 << 7, 1 << 11, 1 << 15}
    	for _, size := range sizes {
    		b.Run(fmt.Sprintf("%dBytes", size), func(b *testing.B) {
    			s0 := data0[:size]
    			s1 := data1[:size]
    			b.SetBytes(int64(size))
    			for i := 0; i < b.N; i++ {
    				XORBytes(dst, s0, s1)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:51:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/runtime/mfinal.go

    	//	}
    	// The relevant segments are: noptrdata, data, bss, noptrbss.
    	// We cannot assume they are in any order or even contiguous,
    	// due to external linking.
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.noptrdata <= uintptr(p) && uintptr(p) < datap.enoptrdata ||
    			datap.data <= uintptr(p) && uintptr(p) < datap.edata ||
    			datap.bss <= uintptr(p) && uintptr(p) < datap.ebss ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertFalse(compound.isDone());
        future1.set(DATA1);
        assertFalse(compound.isDone());
        future2.set(DATA2);
        assertFalse(compound.isDone());
        listener.expectCall();
        future3.set(DATA3);
        assertTrue(listener.wasCalled());
    
        List<String> results = getDone(compound);
        assertThat(results).containsExactly(DATA1, DATA2, DATA3).inOrder();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertFalse(compound.isDone());
        future1.set(DATA1);
        assertFalse(compound.isDone());
        future2.set(DATA2);
        assertFalse(compound.isDone());
        listener.expectCall();
        future3.set(DATA3);
        assertTrue(listener.wasCalled());
    
        List<String> results = getDone(compound);
        assertThat(results).containsExactly(DATA1, DATA2, DATA3).inOrder();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    			f2 := funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[i+1].funcoff])), datap}
    			f2name := "end"
    			if i+1 < nftab {
    				f2name = funcname(f2)
    			}
    			println("function symbol table not sorted by PC offset:", hex(datap.ftab[i].entryoff), funcname(f1), ">", hex(datap.ftab[i+1].entryoff), f2name, ", plugin:", datap.pluginpath)
    			for j := 0; j <= i; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/runtime/debuglog.go

    //go:nosplit
    func (r *debugLogReader) readUint16LEAt(pos uint64) uint16 {
    	return uint16(r.data.b[pos%uint64(len(r.data.b))]) |
    		uint16(r.data.b[(pos+1)%uint64(len(r.data.b))])<<8
    }
    
    //go:nosplit
    func (r *debugLogReader) readUint64LEAt(pos uint64) uint64 {
    	var b [8]byte
    	for i := range b {
    		b[i] = r.data.b[pos%uint64(len(r.data.b))]
    		pos++
    	}
    	return uint64(b[0]) | uint64(b[1])<<8 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top