Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 281 for COMMENT (0.11 sec)

  1. platforms/core-runtime/build-configuration/src/test/groovy/org/gradle/internal/buildconfiguration/UpdateDaemonJvmModifierTest.groovy

            props[DaemonJvmPropertiesDefaults.TOOLCHAIN_IMPLEMENTATION_PROPERTY] == null
        }
    
        def "existing unrecognized properties are not preserved"() {
            daemonJvmPropertiesFile.text = """
                # this comment is not preserved
                com.example.foo=bar
                ${DaemonJvmPropertiesDefaults.TOOLCHAIN_VERSION_PROPERTY}=15
            """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/scope.go

    	pos, end syntax.Pos        // scope extent; may be invalid
    	comment  string            // for debugging only
    	isFunc   bool              // set if this is a function scope (internal use only)
    }
    
    // NewScope returns a new, empty scope contained in the given parent
    // scope, if any. The comment is for debugging only.
    func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/scope.go

    	pos, end token.Pos         // scope extent; may be invalid
    	comment  string            // for debugging only
    	isFunc   bool              // set if this is a function scope (internal use only)
    }
    
    // NewScope returns a new, empty scope contained in the given parent
    // scope, if any. The comment is for debugging only.
    func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check_test.go

    // starts with "//" (line comment) followed by "-" (possibly with spaces
    // between). Otherwise the line is ignored.
    func parseFlags(src []byte, flags *flag.FlagSet) error {
    	// we must have a line comment that starts with a "-"
    	const prefix = "//"
    	if !bytes.HasPrefix(src, []byte(prefix)) {
    		return nil // first line is not a line comment
    	}
    	src = src[len(prefix):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. migrator/migrator.go

    				v2, _ := strconv.ParseBool(field.DefaultValue)
    				alterColumn = v1 != v2
    			default:
    				alterColumn = dv != field.DefaultValue
    			}
    		}
    	}
    
    	// check comment
    	if comment, ok := columnType.Comment(); ok && comment != field.Comment {
    		// not primary key
    		if !field.PrimaryKey {
    			alterColumn = true
    		}
    	}
    
    	if alterColumn {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. src/runtime/debug/example_monitor_test.go

    func ExampleSetCrashOutput_monitor() {
    	appmain()
    
    	// This Example doesn't actually run as a test because its
    	// purpose is to crash, so it has no "Output:" comment
    	// within the function body.
    	//
    	// To observe the monitor in action, replace the entire text
    	// of this comment with "Output:" and run this command:
    	//
    	//    $ go test -run=ExampleSetCrashOutput_monitor runtime/debug
    	//    panic: oops
    	//    ...stack...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. src/go/doc/comment/std.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by 'go generate' DO NOT EDIT.
    //go:generate ./mkstd.sh
    
    package comment
    
    var stdPkgs = []string{
    	"bufio",
    	"bytes",
    	"cmp",
    	"context",
    	"crypto",
    	"embed",
    	"encoding",
    	"errors",
    	"expvar",
    	"flag",
    	"fmt",
    	"hash",
    	"html",
    	"image",
    	"io",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 671 bytes
    - Viewed (0)
  9. src/runtime/asm.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    #ifndef GOARCH_amd64
    TEXT ·sigpanic0(SB),NOSPLIT,$0-0
    	JMP	·sigpanic<ABIInternal>(SB)
    #endif
    
    // See map.go comment on the need for this routine.
    TEXT ·mapinitnoop<ABIInternal>(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 21:49:14 UTC 2024
    - 386 bytes
    - Viewed (0)
  10. src/go/doc/example.go

    		// Account for end-of-line comments.
    		if imp.Comment != nil {
    			prevEnd = imp.Comment.End()
    		}
    	}
    	return groupStarts
    }
    
    // playExampleFile takes a whole file example and synthesizes a new *ast.File
    // such that the example is function main in package main.
    func playExampleFile(file *ast.File) *ast.File {
    	// Strip copyright comment if present.
    	comments := file.Comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top