Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 681 for aslash (0.11 sec)

  1. src/net/http/routing_tree_test.go

    	})
    
    	// A pattern ending in {$} should only match URLS with a trailing slash.
    	pat1 := "/a/b/{$}"
    	test(buildTree(pat1), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", pat1, nil},
    		{"GET", "", "/a/b/c", "", nil},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a single wildcard should not match a trailing slash URL.
    	pat2 := "/a/b/{w}"
    	test(buildTree(pat2), []testCase{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceLocator.java

         * the root URL <code>smb://</code> is also <code>smb://</code>. If this
         * <tt>SmbFile</tt> refers to a workgroup, server, share, or directory,
         * the name will include a trailing slash '/' so that composing new
         * <tt>SmbFile</tt>s will maintain the trailing slash requirement.
         *
         * @return The last component of the URL associated with this SMB
         *         resource or <code>smb://</code> if the resource is <code>smb://</code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/comparator.go

    func (m *nonstrictResolver) Resolve(typeURL string) (legacyproto.Message, error) {
    	// See https://github.com/golang/protobuf/issues/747#issuecomment-437463120
    	mname := typeURL
    	if slash := strings.LastIndex(typeURL, "/"); slash >= 0 {
    		mname = mname[slash+1:]
    	}
    	mt, err := protoregistry.GlobalTypes.FindMessageByName(protoreflect.FullName(mname))
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

                    Optional<PluginImplementation<?>> value = entry.getValue();
                    if (value.isPresent()) {
                        PluginImplementation<?> found = value.get();
                        if (found.asClass().equals(lookup.asClass())) {
                            PluginId foundId = entry.getKey().id;
                            if (foundId != null) {
                                builder.add(foundId);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  5. src/crypto/x509/root_unix.go

    	for _, f := range files {
    		if !isSameDirSymlink(f, dir) {
    			uniq = append(uniq, f)
    		}
    	}
    	return uniq, nil
    }
    
    // isSameDirSymlink reports whether fi in dir is a symlink with a
    // target not containing a slash.
    func isSameDirSymlink(f fs.DirEntry, dir string) bool {
    	if f.Type()&fs.ModeSymlink == 0 {
    		return false
    	}
    	target, err := os.Readlink(filepath.Join(dir, f.Name()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/go/printer/printer_test.go

    		t.Error("expected offset 1") // error in test
    	}
    
    	testComment(t, f, len(src), &ast.Comment{Slash: pos, Text: "//-style comment"})
    	testComment(t, f, len(src), &ast.Comment{Slash: pos, Text: "/*-style comment */"})
    	testComment(t, f, len(src), &ast.Comment{Slash: pos, Text: "/*-style \n comment */"})
    	testComment(t, f, len(src), &ast.Comment{Slash: pos, Text: "/*-style comment \n\n\n */"})
    }
    
    type visitor chan *ast.Ident
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java

      // Test all creation paths very lazily: by assuming asList() works
    
      public void testOf0() {
        assertThat(ImmutableLongArray.of().asList()).isEmpty();
      }
    
      public void testOf1() {
        assertThat(ImmutableLongArray.of(0).asList()).containsExactly(0L);
      }
    
      public void testOf2() {
        assertThat(ImmutableLongArray.of(0, 1).asList()).containsExactly(0L, 1L).inOrder();
      }
    
      public void testOf3() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

            executionResult.setTopologicallySortedProjects(asList(projectA, projectB));
    
            Optional<BuildResumptionData> result = analyzer.determineBuildResumptionData(executionResult);
    
            assertThat(result.isPresent(), is(true));
            assertThat(result.get().getRemainingProjects(), is(asList("test:B")));
        }
    
        @Test
        void resumeFromIsIgnoredWhenFirstProjectFails() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/DoubleArrayAsListTest.java

                ListTestSuiteBuilder.using(new DoublesAsListTailSubListGenerator())
                    .named("Doubles.asList, tail subList"),
                ListTestSuiteBuilder.using(new DoublesAsListMiddleSubListGenerator())
                    .named("Doubles.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Double> builder : builders) {
          suite.addTest(
              builder
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/html/entity.go

    		"OpenCurlyDoubleQuote;":            '\U0000201C',
    		"OpenCurlyQuote;":                  '\U00002018',
    		"Or;":                              '\U00002A54',
    		"Oscr;":                            '\U0001D4AA',
    		"Oslash;":                          '\U000000D8',
    		"Otilde;":                          '\U000000D5',
    		"Otimes;":                          '\U00002A37',
    		"Ouml;":                            '\U000000D6',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
Back to top