Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for COMMENT (0.2 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

             */
            void writeCodeTo(PrettyPrinter printer);
        }
    
        private static abstract class AbstractStatement implements Statement {
    
            final String comment;
    
            AbstractStatement(@Nullable String comment) {
                this.comment = comment;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    				proxier.logger.Error(err, "Failed to ensure chain exists", "table", jump.table, "chain", jump.dstChain)
    				return
    			}
    			args := jump.extraArgs
    			if jump.comment != "" {
    				args = append(args, "-m", "comment", "--comment", jump.comment)
    			}
    			args = append(args, "-j", string(jump.dstChain))
    			if _, err := proxier.iptables.EnsureRule(utiliptables.Prepend, jump.table, jump.srcChain, args...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	var list []*ast.Comment
    	endline = p.file.Line(p.pos)
    	for p.tok == token.COMMENT && p.file.Line(p.pos) <= endline+n {
    		var comment *ast.Comment
    		comment, endline = p.consumeComment()
    		list = append(list, comment)
    	}
    
    	// add comment group to the comments list
    	comments = &ast.CommentGroup{List: list}
    	p.comments = append(p.comments, comments)
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    	var list []*ast.Comment
    	endline = p.file.Line(p.pos)
    	for p.tok == token.COMMENT && endline+1 >= p.file.Line(p.pos) {
    		var comment *ast.Comment
    		comment, endline = p.consumeComment()
    		list = append(list, comment)
    	}
    
    	// add comment group to the comments list
    	comments = &ast.CommentGroup{list}
    	p.comments = append(p.comments, comments)
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/go/build/build.go

    		comment, _, ok = bytes.Cut(data[2:], starSlash)
    		if !ok {
    			// malformed comment
    			return "", 0
    		}
    		if bytes.Contains(comment, newline) {
    			return "", 0
    		}
    	}
    	comment = bytes.TrimSpace(comment)
    
    	// split comment into `import`, `"pkg"`
    	word, arg := parseWord(comment)
    	if string(word) != "import" {
    		return "", 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    queue_dir      (path)      staging dir for undelivered messages e.g. '/home/events'
    queue_limit    (number)    maximum limit for undelivered messages, defaults to '100000'
    comment        (sentence)  optionally add a comment to this setting
    ```
    
    Or environment variables
    
    ```
    KEY:
    notify_amqp[:name]  publish bucket notifications to AMQP endpoints
    
    ARGS:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    		Comment: ptr.To("vmap to drop or reject packets to services with no endpoints"),
    	})
    	tx.Add(&knftables.Map{
    		Name:    noEndpointNodePortsMap,
    		Type:    "inet_proto . inet_service : verdict",
    		Comment: ptr.To("vmap to drop or reject packets to service nodeports with no endpoints"),
    	})
    
    	tx.Add(&knftables.Chain{
    		Name:    rejectChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    		"-A", string(kubeForwardChain),
    		"-m", "comment", "--comment", `"kubernetes forwarding conntrack rule"`,
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    	// Add rule to accept traffic towards health check node port
    	proxier.filterRules.Write(
    		"-A", string(kubeNodePortChain),
    		"-m", "comment", "--comment", proxier.ipsetList[kubeHealthCheckNodePortSet].getComment(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top