Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 426 for COMMENT (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/cover/cover_test.go

    		t.Error("'go:linkname' compiler directive not found")
    	}
    
    	// Other comments should be preserved too.
    	c := ".*// This comment didn't appear in generated go code.*"
    	if got, err := regexp.MatchString(c, string(file)); err != nil || !got {
    		t.Errorf("non compiler directive comment %q not found", c)
    	}
    }
    
    // TestDirectives checks that compiler directives are preserved and positioned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. 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)
  6. src/text/template/parse/lex.go

    }
    
    // lexComment scans a comment. The left comment marker is known to be present.
    func lexComment(l *lexer) stateFn {
    	l.pos += Pos(len(leftComment))
    	x := strings.Index(l.input[l.pos:], rightComment)
    	if x < 0 {
    		return l.errorf("unclosed comment")
    	}
    	l.pos += Pos(x + len(rightComment))
    	delim, trimSpace := l.atRightDelim()
    	if !delim {
    		return l.errorf("comment ends before closing delimiter")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K 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. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    onFrame?window.requestAnimationFrame(c.highlightAll):window.setTimeout(c.highlightAll,16))),_self.Prism}();'undefined'!=typeof module&&module.exports&&(module.exports=Prism),'undefined'!=typeof global&&(global.Prism=Prism);Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},'class-name':{pattern:/((?:\b(?:class|interface|extends|i...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top