Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for COMMENT (0.42 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    	for _, group := range f.Comments {
    		// A //go:build or a //go:debug comment is ignored after the package declaration
    		// (but adjoining it is OK, in contrast to +build comments).
    		if group.Pos() >= f.Package {
    			check.inHeader = false
    		}
    
    		// Check each line of a //-comment.
    		for _, c := range group.List {
    			check.comment(c.Slash, c.Text)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/log/nflog.go

    			if err == nil {
    				src = v4.Src.String()
    				dst = v4.Dst.String()
    			}
    		}
    		prefix := ""
    		if attrs.Prefix != nil {
    			prefix = *attrs.Prefix
    		}
    		comment := IDToCommand[prefix].Comment
    		uid, gid := uint32(0), uint32(0)
    		if attrs.UID != nil {
    			uid = *attrs.UID
    		}
    		if attrs.GID != nil {
    			gid = *attrs.GID
    		}
    		inDev, outDev := "", ""
    		if attrs.InDev != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. JavadocStyleGuide.md

    Basic formatting rules:
    
    - The first line contains the begin-comment delimiter ( `/**`).
    - The first sentence is a summary.
    - Notice the inline tag `{@link URL}`, which converts to an HTML hyperlink pointing to the documentation for the URL class.
    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/kubelet/network/dns/dns_test.go

    		{"\t\n\t", []string{}, []string{}, []string{}, false},
    		{"#comment\n", []string{}, []string{}, []string{}, false},
    		{" #comment\n", []string{}, []string{}, []string{}, false},
    		{"#comment\n#comment", []string{}, []string{}, []string{}, false},
    		{"#comment\nnameserver", []string{}, []string{}, []string{}, true},                           // nameserver empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. 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)
  6. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 198.51.100.0/24 -m comment --comment "ip-masq: RFC 5737 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 203.0.113.0/24 -m comment --comment "ip-masq: RFC 5737 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

    // Ignore test on non-Windows platforms on CI since Playwright has unfulfilled package
    // dependencies on Linux and times out downloading the driver on MacOS.
    //
    // Comment out the @Requires annotation below to run the test locally on non Windows platforms.
    @Requires(UnitTestPreconditions.Windows)
    @Flaky(because = "https://github.com/gradle/gradle-private/issues/3820")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/relnote/links.go

    		Inner: []md.Inline{&md.Code{Text: s}},
    		URL:   fmt.Sprintf("/pkg/%s%s", pkg, sym),
    	}, true
    }
    
    // isLinkAdjacentRune reports whether r can be adjacent to a symbol link.
    // The logic is the same as the go/doc/comment package.
    func isLinkAdjacentRune(r rune) bool {
    	return unicode.IsPunct(r) || r == ' ' || r == '\t' || r == '\n'
    }
    
    // splitRef splits s into a package and possibly a symbol.
    // Examples:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top