Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 658 for COMMENT (0.14 sec)

  1. src/go/printer/nodes.go

    	}
    	p.comments[0] = g
    	p.cindex = 0
    	// don't overwrite any pending comment in the p.comment cache
    	// (there may be a pending comment when a line comment is
    	// immediately followed by a lead comment with no other
    	// tokens between)
    	if p.commentOffset == infinity {
    		p.nextComment() // get comment ready for use
    	}
    }
    
    type exprListMode uint
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. .github/workflows/sigbuild-docker-presubmit.yml

                type=registry,ref=gcr.io/tensorflow-sigs/build:${{ github.event.number }}-${{ matrix.python-version }}
              cache-to: type=inline
          -
            name: Add a comment with the pushed containers
            uses: mshick/add-pr-comment@a65df5f64fc741e91c59b8359a4bc56e57aaf5b1 # v2
            if: contains(github.event.pull_request.labels.*.name, 'build and push to gcr.io for staging')
            with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/text/template/parse/parse_test.go

    	textFormat = "%q"
    	defer func() { textFormat = "%s" }()
    	tests := [...]parseTest{
    		{"comment", "{{/*\n\n\n*/}}", noError, "{{/*\n\n\n*/}}"},
    		{"comment trim left", "x \r\n\t{{- /* hi */}}", noError, `"x"{{/* hi */}}`},
    		{"comment trim right", "{{/* hi */ -}}\n\n\ty", noError, `{{/* hi */}}"y"`},
    		{"comment trim left and right", "x \r\n\t{{- /* */ -}}\n\n\ty", noError, `"x"{{/* */}}"y"`},
    	}
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    }
    
    type T1 struct{}
    type T2 struct{}
    
    type IndirComment struct {
    	T1      T1
    	Comment *string `xml:",comment"`
    	T2      T2
    }
    
    type DirectComment struct {
    	T1      T1
    	Comment string `xml:",comment"`
    	T2      T2
    }
    
    type IfaceComment struct {
    	T1      T1
    	Comment any `xml:",comment"`
    	T2      T2
    }
    
    type IndirChardata struct {
    	T1       T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    == Adding API documentation
    
    The `java-library` plugin has built-in support for Java's API documentation tool via the `javadoc` task.
    
    The code generated by the Build Init plugin already placed a comment on the `${sourceFile.raw}` file.
    Replace `/*` in the comment by `/**` so that it becomes `javadoc` markup:
    
    .src/main/${languageLC.raw}/${sourceFile.raw}
    [source,java]
    ----
    /**
     * This java source file was generated by the Gradle 'init' task.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/net/mail/message_test.go

    				Name:    "Joe Q. Public",
    				Address: "******@****.***",
    			}},
    		},
    		// Comment in display name
    		{
    			`John (middle) Doe <******@****.***e>`,
    			[]*Address{{
    				Name:    "John Doe",
    				Address: "******@****.***e",
    			}},
    		},
    		// Display name is quoted string, so comment is not a comment
    		{
    			`"John (middle) Doe" <******@****.***e>`,
    			[]*Address{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. src/go/doc/comment/print.go

    		} else {
    			out.WriteByte('_')
    		}
    	}
    	return out.String()
    }
    
    type commentPrinter struct {
    	*Printer
    }
    
    // Comment returns the standard Go formatting of the [Doc],
    // without any comment markers.
    func (p *Printer) Comment(d *Doc) []byte {
    	cp := &commentPrinter{Printer: p}
    	var out bytes.Buffer
    	for i, x := range d.Content {
    		if i > 0 && blankBefore(x) {
    			out.WriteString("\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

        }
    
        public String getComment() {
            return comment;
        }
    
        /**
         * A comment used for the eclipse project. By default it will be configured to <b>project.description</b>
         * <p>
         * For example see docs for {@link EclipseProject}
         */
        public void setComment(String comment) {
            this.comment = comment;
        }
    
    
        public Set<String> getReferencedProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. src/html/template/js.go

    		// the error into the template, as part of a comment, we attempt to
    		// prevent the error from either terminating the comment, or the script
    		// block itself.
    		//
    		// In particular we:
    		//   * replace "*/" comment end tokens with "* /", which does not
    		//     terminate the comment
    		//   * replace "</script" with "\x3C/script", and "<!--" with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. cni/pkg/ipset/nldeps_unspecified.go

    }
    
    func (m *realDeps) destroySet(name string) error {
    	return errors.New("not implemented on this platform")
    }
    
    func (m *realDeps) addIP(name string, ip netip.Addr, ipProto uint8, comment string, replace bool) error {
    	return errors.New("not implemented on this platform")
    }
    
    func (m *realDeps) deleteIP(name string, ip netip.Addr, ipProto uint8) error {
    	return errors.New("not implemented on this platform")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top