Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for segment (0.18 sec)

  1. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            final String sessionId = "session1";
    
            assertEquals(1, indexingHelper.deleteBySessionId(sessionId));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals("segment", resultMap.get("field"));
            assertEquals(sessionId, resultMap.get("value"));
        }
    
        public void test_deleteByConfigId() {
            final Map<String, String> resultMap = new HashMap<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    index.field.seq_no=_seq_no
    index.field.primary_term=_primary_term
    index.field.lang=lang
    index.field.has_cache=has_cache
    index.field.last_modified=last_modified
    index.field.anchor=anchor
    index.field.segment=segment
    index.field.role=role
    index.field.boost=boost
    index.field.created=created
    index.field.timestamp=timestamp
    index.field.label=label
    index.field.mimetype=mimetype
    index.field.parent_id=parent_id
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  3. RELEASE.md

            `tf.math.rsqrt`, `tf.math.segment_max`, `tf.math.segment_mean`,
            `tf.math.segment_min`, `tf.math.segment_prod`, `tf.math.segment_sum`,
            `tf.math.sin`, `tf.math.sinh`, `tf.math.softplus`, `tf.math.softsign`,
            `tf.math.squared_difference`, `tf.math.tan`,
            `tf.math.unsorted_segment_max`, `tf.math.unsorted_segment_min`,
            `tf.math.unsorted_segment_prod`, `tf.math.unsorted_segment_sum`,
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  4. internal/s3select/select.go

    	return &limitedReadCloser{
    		LimitedReader: io.LimitedReader{R: r, N: n},
    		Closer:        r,
    	}
    }
    
    // ObjectSegmentReaderFn is a function that returns a reader for a contiguous
    // suffix segment of an object starting at the given (non-negative) offset.
    type ObjectSegmentReaderFn func(offset int64) (io.ReadCloser, error)
    
    // ObjectReadSeekCloser implements ReadSeekCloser interface for reading objects.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 21K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      repeated CSINodeDriver drivers = 1;
    }
    
    // CSIStorageCapacity stores the result of one CSI GetCapacity call.
    // For a given StorageClass, this describes the available capacity in a
    // particular topology segment.  This can be used when considering where to
    // instantiate new PersistentVolumes.
    //
    // For example this can express things like:
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -		      || (__builtin_constant_p (s2)			      \
    -			  && strlen (s2) < ((size_t) (n))))		      \
    -		  ? strcmp (s1, s2) : strncmp (s1, s2, n)))
     #endif
     
     
     /* Return the length of the initial segment of S which
        consists entirely of characters not in REJECT.  */
    -#if !defined _HAVE_STRING_ARCH_strcspn || defined _FORCE_INLINES
    -# ifndef _HAVE_STRING_ARCH_strcspn
    -#  if __GNUC_PREREQ (3, 2)
    Others
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                putResultDataBody(dataMap, fessConfig.getIndexFieldDigest(),
                        documentHelper.getDigest(responseData, body, dataMap, fessConfig.getCrawlerDocumentHtmlMaxDigestLengthAsInteger()));
            }
            // segment
            putResultDataBody(dataMap, fessConfig.getIndexFieldSegment(), sessionId);
            // host
            putResultDataBody(dataMap, fessConfig.getIndexFieldHost(), getHost(url));
            // site
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1/generated.proto

      repeated CSINodeDriver drivers = 1;
    }
    
    // CSIStorageCapacity stores the result of one CSI GetCapacity call.
    // For a given StorageClass, this describes the available capacity in a
    // particular topology segment.  This can be used when considering where to
    // instantiate new PersistentVolumes.
    //
    // For example this can express things like:
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. anchor */
        String INDEX_FIELD_ANCHOR = "index.field.anchor";
    
        /** The key of the configuration. e.g. segment */
        String INDEX_FIELD_SEGMENT = "index.field.segment";
    
        /** The key of the configuration. e.g. role */
        String INDEX_FIELD_ROLE = "index.field.role";
    
        /** The key of the configuration. e.g. boost */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  10. src/bufio/bufio_test.go

    	r := NewReader(&StringReader{data: segments})
    	for {
    		r, _, err := r.ReadRune()
    		if err != nil {
    			if err != io.EOF {
    				return
    			}
    			break
    		}
    		got += string(r)
    	}
    	if got != want {
    		t.Errorf("segments=%v got=%s want=%s", segments, got, want)
    	}
    }
    
    var segmentList = [][]string{
    	{},
    	{""},
    	{"日", "本語"},
    	{"\u65e5", "\u672c", "\u8a9e"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
Back to top