Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for middot (0.12 sec)

  1. src/mdo/reader-stax.vm

            entities.put("sup3", "\u00b3");
            entities.put("acute", "\u00b4");
            entities.put("micro", "\u00b5");
            entities.put("para", "\u00b6");
            entities.put("middot", "\u00b7");
            entities.put("cedil", "\u00b8");
            entities.put("sup1", "\u00b9");
            entities.put("ordm", "\u00ba");
            entities.put("raquo", "\u00bb");
            entities.put("frac14", "\u00bc");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"℧":                             "\u2127",
    	"µ":                           "\u00b5",
    	"∣":                             "\u2223",
    	"*":                          "\u002a",
    	"⫰":                          "\u2af0",
    	"·":                          "\u00b7",
    	"−":                           "\u2212",
    	"⊟":                          "\u229f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. src/mdo/reader.vm

            entities.put("sup3", "\u00b3");
            entities.put("acute", "\u00b4");
            entities.put("micro", "\u00b5");
            entities.put("para", "\u00b6");
            entities.put("middot", "\u00b7");
            entities.put("cedil", "\u00b8");
            entities.put("sup1", "\u00b9");
            entities.put("ordm", "\u00ba");
            entities.put("raquo", "\u00bb");
            entities.put("frac14", "\u00bc");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    	"macr":     "\u00AF",
    	"deg":      "\u00B0",
    	"plusmn":   "\u00B1",
    	"sup2":     "\u00B2",
    	"sup3":     "\u00B3",
    	"acute":    "\u00B4",
    	"micro":    "\u00B5",
    	"para":     "\u00B6",
    	"middot":   "\u00B7",
    	"cedil":    "\u00B8",
    	"sup1":     "\u00B9",
    	"ordm":     "\u00BA",
    	"raquo":    "\u00BB",
    	"frac14":   "\u00BC",
    	"frac12":   "\u00BD",
    	"frac34":   "\u00BE",
    	"iquest":   "\u00BF",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. src/testing/iotest/reader.go

    			return fmt.Errorf("Seek(%d, 0) from EOF = %d, %v, want %d, nil", middle/2, off, err, middle/2)
    		}
    		data, err = io.ReadAll(r)
    		if err != nil {
    			return fmt.Errorf("ReadAll from offset %d: %v", middle/2, err)
    		}
    		if !bytes.Equal(data, content[middle/2:]) {
    			return fmt.Errorf("ReadAll from offset %d = %q\n\twant %q", middle/2, data, content[middle/2:])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/testing/panic_test.go

    		want: `
    ran inner cleanup 1
    ran middle cleanup 1
    ran outer cleanup
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
    `,
    	}, {
    		desc:  "subtest panics with middle cleanup panic",
    		flags: []string{"-test_panic_test=TestPanicHelper/1", "-test_panic_cleanup", "-test_panic_cleanup_panic=middle"},
    		want: `
    ran inner cleanup 1
    ran middle cleanup 1
    ran outer cleanup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/SortedLists.java

        while (lower <= upper) {
          int middle = (lower + upper) >>> 1;
          int c = comparator.compare(key, list.get(middle));
          if (c < 0) {
            upper = middle - 1;
          } else if (c > 0) {
            lower = middle + 1;
          } else {
            return lower
                + presentBehavior.resultIndex(
                    comparator, key, list.subList(lower, upper + 1), middle - lower);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/SortedLists.java

        while (lower <= upper) {
          int middle = (lower + upper) >>> 1;
          int c = comparator.compare(key, list.get(middle));
          if (c < 0) {
            upper = middle - 1;
          } else if (c > 0) {
            lower = middle + 1;
          } else {
            return lower
                + presentBehavior.resultIndex(
                    comparator, key, list.subList(lower, upper + 1), middle - lower);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributePrecedenceSchemaAttributeMatcherTest.groovy

        def explanationBuilder = Stub(AttributeMatchingExplanationBuilder)
    
        def highest = Attribute.of("highest", String)
        def middle = Attribute.of("middle", String)
        def lowest = Attribute.of("lowest", String)
        // This has no precedence
        def additional = Attribute.of("usage", String)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/match/match_test.go

    				//   15001:
    				//     middle (dest ip):
    				//       fallback:
    				//         inner (src ip):
    				//           fallback: chain
    				inner := NewSourceIP()
    				inner.OnNoMatch = ToChain("chain")
    
    				middle := NewDestinationIP()
    				middle.OnNoMatch = ToMatcher(inner.Matcher)
    
    				root := NewDestinationPort()
    				root.Map["15001"] = ToMatcher(middle.Matcher)
    				return root
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top