Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for att (0.03 sec)

  1. src/regexp/testdata/README

    AT&T POSIX Test Files
    See textregex.c for copyright + license.
    
    testregex.c	http://www2.research.att.com/~gsf/testregex/testregex.c
    basic.dat	http://www2.research.att.com/~gsf/testregex/basic.dat
    nullsubexpr.dat	http://www2.research.att.com/~gsf/testregex/nullsubexpr.dat
    repetition.dat	http://www2.research.att.com/~gsf/testregex/repetition.dat
    
    The test data has been edited to reflect RE2/Go differences:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 27 20:18:25 UTC 2015
    - 957 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationResult.java

            ImmutableList.Builder<Object> requestedAttributesBuilder = new ImmutableList.Builder<>();
            for (Attribute<?> att : requestedAttributes.keySet()) {
                requestedAttributesBuilder.add(ImmutableMap.of("name", att.getName(), "value", requestedAttributes.getAttribute(att).toString()));
            }
            model.put("requestedAttributes", requestedAttributesBuilder.build());
    
            return model;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java

                }
                stream.reset();
    
                int offset = 0;
                while (stream.incrementToken()) {
                    final CharTermAttribute att = stream.getAttribute(CharTermAttribute.class);
                    final String term = att.toString();
                    final int pos = inputStr.indexOf(term, offset);
                    if (pos > 0) {
                        final String tmp = inputStr.substring(offset, pos);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/sv/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/snowball/swedish_stop.txt
    och
    det
    att
    i
    en
    jag
    hon
    som
    han
    på
    den
    med
    var
    sig
    för
    så
    till
    är
    men
    ett
    om
    hade
    de
    av
    icke
    mig
    du
    henne
    då
    sin
    nu
    har
    inte
    hans
    honom
    skulle
    hennes
    där
    min
    man
    ej
    vid
    kunde
    något
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 700 bytes
    - Viewed (0)
  5. src/regexp/testdata/basic.dat

    E	M[ou]'?am+[ae]r .*([AEae]l[- ])?[GKQ]h?[aeu]+([dtz][dhz]?)+af[iy]	Moammar Qudhafi	(0,15)(?,?)(10,12)
    E	a+(b|c)*d+		aabcdd			(0,6)(3,4)
    E	^.+$			vivi			(0,4)
    E	^(.+)$			vivi			(0,4)(0,4)
    E	^([^!.]+).att.com!(.+)$	gryphon.att.com!eby	(0,19)(0,7)(16,19)
    E	^([^!]+!)?([^!]+)$	bas			(0,3)(?,?)(0,3)
    E	^([^!]+!)?([^!]+)$	bar!bas			(0,7)(0,4)(4,7)
    E	^([^!]+!)?([^!]+)$	foo!bas			(0,7)(0,4)(4,7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  6. src/regexp/testdata/repetition.dat

    NOTE	implicit vs. explicit repetitions : 2009-02-02
    
    # Glenn Fowler <gsf@research.att.com>
    # conforming matches (column 4) must match one of the following BREs
    #	NOMATCH
    #	(0,.)\((\(.\),\(.\))(?,?)(\2,\3)\)*
    #	(0,.)\((\(.\),\(.\))(\2,\3)(?,?)\)*
    # i.e., each 3-tuple has two identical elements and one (?,?)
    
    E	((..)|(.))				NULL		NOMATCH
    E	((..)|(.))((..)|(.))			NULL		NOMATCH
    E	((..)|(.))((..)|(.))((..)|(.))		NULL		NOMATCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  7. src/regexp/testdata/testregex.c

    T("\n");
    T("CAVEAT\n");
    T("    If a regex implementation misbehaves with memory then all bets are off.\n");
    T("\n");
    T("CONTRIBUTORS\n");
    T("  Glenn Fowler    gsf@research.att.com        (ksh strmatch, regex extensions)\n");
    T("  David Korn      dgk@research.att.com        (ksh glob matcher)\n");
    T("  Doug McIlroy    ******@****.***       (ast regex/testre in C++)\n");
    T("  Tom Lord        ******@****.***            (rx tests)\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  8. src/regexp/exec_test.go

    			}
    			n += 2
    			i = j + 1
    		}
    	}
    	return out
    }
    
    // TestFowler runs this package's regexp API against the
    // POSIX regular expression tests collected by Glenn Fowler
    // at http://www2.research.att.com/~astopen/testregex/testregex.html.
    func TestFowler(t *testing.T) {
    	files, err := filepath.Glob("testdata/*.dat")
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, file := range files {
    		t.Log(file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    			t.Fatalf(`xmlInput "%s": expected SyntaxError not received`, xmlInput[i])
    		}
    	}
    }
    
    func TestInputLinePos(t *testing.T) {
    	testInput := `<root>
    <?pi
     ?>  <elt
    att
    =
    "val">
    <![CDATA[
    ]]><!--
    
    --></elt>
    </root>`
    	linePos := [][]int{
    		{1, 7},
    		{2, 1},
    		{3, 4},
    		{3, 6},
    		{6, 7},
    		{7, 1},
    		{8, 4},
    		{10, 4},
    		{10, 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-xfig",
    				"application/x-xpinstall",
    				"application/x-xmind",
    				"application/x-xz",
    				"application/x-zoo",
    				"application/x400-bp",
    				"application/xcap-att+xml",
    				"application/xcap-caps+xml",
    				"application/xcap-el+xml",
    				"application/xcap-error+xml",
    				"application/xcap-ns+xml",
    				"application/xcon-conference-info-diff+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top