Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for length_32 (0.34 sec)

  1. src/index/suffixarray/sais2.go

    	numLMS := placeLMS_32(text, sa, freq, bucket)
    	if numLMS <= 1 {
    		// 0 or 1 items are already sorted. Do nothing.
    	} else {
    		induceSubL_32(text, sa, freq, bucket)
    		induceSubS_32(text, sa, freq, bucket)
    		length_32(text, sa, numLMS)
    		maxID := assignID_32(text, sa, numLMS)
    		if maxID < numLMS {
    			map_32(sa, numLMS)
    			recurse_32(sa, tmp, numLMS, maxID)
    			unmap_32(text, sa, numLMS)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/rpc.idl

    	/*
    	 * typedef struct _UNICODE_STRING
    	 *     USHORT Length;
    	 *     USHORT MaximumLength;
    	 *     [size_is(MaximumLength / 2), length_is((Length) / 2) ] USHORT *  Buffer;
    	 * } UNICODE_STRING;
    	 */
    
    	typedef struct {
    		uint16_t length;
    		uint16_t maximum_length;
    		[length_is(length / 2),size_is(maximum_length / 2)] uint16_t *buffer;
    	} unicode_string;
    
    	/* 
    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	/*
    	 * typedef struct _UNICODE_STRING
    	 *     USHORT Length;
    	 *     USHORT MaximumLength;
    	 *     [size_is(MaximumLength / 2), length_is((Length) / 2) ] USHORT *  Buffer;
    	 * } UNICODE_STRING;
    	 */
    
    	typedef struct {
    		uint16_t length;
    		uint16_t maximum_length;
    		[length_is(length / 2),size_is(maximum_length / 2)] uint16_t *buffer;
    	} unicode_string;
    
    	/* 
    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager_test.go

    	allocated2, length2, err := m.allocateOne("two")
    	assert.NoError(t, err)
    	assert.NotEqual(t, allocated, allocated2, "allocated != allocated2")
    	assert.Equal(t, length, length2, "length == length2")
    
    	// verify that re-adding the same pod with the same settings won't fail
    	err = m.record("two", allocated2, length2)
    	assert.NoError(t, err)
    	// but it fails if anyting is different
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/Collections2Test.java

        return suite;
      }
    
      static final Predicate<@Nullable String> NOT_YYY_ZZZ =
          input -> !"yyy".equals(input) && !"zzz".equals(input);
    
      static final Predicate<String> LENGTH_1 = input -> input.length() == 1;
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      private static Test testsForFilter() {
        return CollectionTestSuiteBuilder.using(
                new TestStringCollectionGenerator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/StringUtil.java

                return false;
            }
            final int length1 = target1.length();
            final int length2 = target2.length();
            if (length1 < length2) {
                return false;
            }
            final String s1 = target1.substring(length1 - length2);
            return s1.equalsIgnoreCase(target2);
        }
    
        /**
         * 大文字小文字を無視して特定の文字で始まっているのかどうかを返します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    	numLMS := placeLMS_8_32(text, sa, freq, bucket)
    	if numLMS <= 1 {
    		// 0 or 1 items are already sorted. Do nothing.
    	} else {
    		induceSubL_8_32(text, sa, freq, bucket)
    		induceSubS_8_32(text, sa, freq, bucket)
    		length_8_32(text, sa, numLMS)
    		maxID := assignID_8_32(text, sa, numLMS)
    		if maxID < numLMS {
    			map_32(sa, numLMS)
    			recurse_32(sa, tmp, numLMS, maxID)
    			unmap_8_32(text, sa, numLMS)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/SetsTest.java

                        unfiltered.add("yyy");
                        unfiltered.addAll(ImmutableList.copyOf(elements));
                        unfiltered.add("zzz");
                        return Sets.filter(unfiltered, Collections2Test.LENGTH_1);
                      }
                    })
                .named("Sets.filter, no nulls")
                .withFeatures(
                    CollectionFeature.SUPPORTS_ADD,
                    CollectionFeature.SUPPORTS_REMOVE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

                        unfiltered.add("yyy");
                        unfiltered.addAll(ImmutableList.copyOf(elements));
                        unfiltered.add("zzz");
                        return Sets.filter(unfiltered, Collections2Test.LENGTH_1);
                      }
                    })
                .named("Sets.filter, no nulls")
                .withFeatures(
                    CollectionFeature.SUPPORTS_ADD,
                    CollectionFeature.SUPPORTS_REMOVE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    updateLength(refreshPeriod){this.length_=this.duration_/refreshPeriod;}
    get segment(){return this.segment_;}
    get boundsRange(){return this.segment_.boundsRange;}
    get length(){return this.length_;}
    get duration(){return this.duration_;}
    get event(){return this.frameEvent_.event;}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top