Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 313 for COMMENT (0.14 sec)

  1. src/cmd/vet/vet_test.go

    // For each line of the source files which should generate an error,
    // there should be a comment of the form // ERROR "regexp".
    // If outStr has an error for a line which has no such comment,
    // this function will report an error.
    // Likewise if outStr does not have an error for a line which has a comment,
    // or if the error message does not match the <regexp>.
    // The <regexp> syntax is Perl but it's best to stick to egrep.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/encoding/xml/xml_test.go

    	}
    }
    
    func TestCopyTokenComment(t *testing.T) {
    	data := []byte("<!-- some comment -->")
    	var tok1 Token = Comment(data)
    	tok2 := CopyToken(tok1)
    	if !reflect.DeepEqual(tok1, tok2) {
    		t.Error("CopyToken(Comment) != Comment")
    	}
    	data[1] = 'o'
    	if reflect.DeepEqual(tok1, tok2) {
    		t.Error("CopyToken(Comment) uses same buffer.")
    	}
    }
    
    func TestSyntaxErrorLineNum(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

        def 'can write top level comments'() {
            when:
            builder.addTopLevelComment("Some top level comment")
            builder.addTopLevelComment("Another comment\non two lines")
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <!-- Some top level comment -->
    <!-- Another comment
    on two lines -->
    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CookiesTest.kt

        assertThat(cookies.size).isEqualTo(1)
        val cookie = cookies[0]
        assertThat(cookie.name).isEqualTo("a")
        assertThat(cookie.value).isEqualTo("android")
        assertThat(cookie.comment).isNull()
        assertThat(cookie.commentURL).isNull()
        assertThat(cookie.discard).isFalse()
        assertThat(cookie.maxAge).isGreaterThan(100000000000L)
        assertThat(cookie.path).isEqualTo("/path")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pom.xml

        <woodstoxVersion>6.6.2</woodstoxVersion>
        <xmlunitVersion>2.10.0</xmlunitVersion>
      </properties>
    
      <!--bootstrap-start-comment-->
      <dependencyManagement>
        <!--bootstrap-end-comment-->
        <dependencies>
          <!--  Maven Modules -->
          <!--bootstrap-start-comment-->
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-artifact</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            for (int i = 0; i < childNodes.getLength(); i++) {
                Node node = childNodes.item(i);
                if (node instanceof Comment) {
                    String comment = node.getNodeValue();
                    if (comment.contains(MetaDataParser.GRADLE_6_METADATA_MARKER) || comment.contains(MetaDataParser.GRADLE_METADATA_MARKER)) {
                        return true;
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles but does not relink executable with source comment change"() {
            given:
            run "installMainExecutable"
            maybeWait()
    
            when:
            sourceFile.text = sourceFile.text.replaceFirst("// Simple hello world app", "// Comment is changed")
            run "mainExecutable"
    
            then:
            skipped libraryCompileTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

    import java.time.LocalDateTime;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.log.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.log.bsentity.dbmeta.SearchLogDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    public class BsSearchLog extends EsAbstractEntity {
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

        @Override
        public ValueSetLink<K, V> getPredecessorInValueSet() {
          return requireNonNull(predecessorInValueSet); // see the comment on the class fields
        }
    
        @Override
        public ValueSetLink<K, V> getSuccessorInValueSet() {
          return requireNonNull(successorInValueSet); // see the comment on the class fields
        }
    
        @Override
        public void setPredecessorInValueSet(ValueSetLink<K, V> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/LinkedHashMultimap.java

        @Override
        public ValueSetLink<K, V> getPredecessorInValueSet() {
          return requireNonNull(predecessorInValueSet); // see the comment on the class fields
        }
    
        @Override
        public ValueSetLink<K, V> getSuccessorInValueSet() {
          return requireNonNull(successorInValueSet); // see the comment on the class fields
        }
    
        @Override
        public void setPredecessorInValueSet(ValueSetLink<K, V> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top