Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseRules (0.09 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    throws MalformedURLException {
                state = State.DEP_ARTIFACT;
                parseRule(tag, attributes);
            }
    
            private void addIncludeRule(String tag, Attributes attributes)
                    throws MalformedURLException {
                state = State.ARTIFACT_INCLUDE;
                parseRule(tag, attributes);
            }
    
            private void addExcludeRule(String tag, Attributes attributes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    	} else if buf.String() != "hello" {
    		t.Errorf(`Expected "hello"; got %q`, buf.String())
    	}
    }
    
    // This is a test for issue 3272.
    func TestEmptyTemplateHTML(t *testing.T) {
    	page := Must(New("page").ParseFiles(os.DevNull))
    	if err := page.ExecuteTemplate(os.Stdout, "page", "nothing"); err == nil {
    		t.Fatal("expected error")
    	}
    }
    
    type Issue7379 int
    
    func (Issue7379) SomeMethod(x int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top