Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for Uncommented (0.19 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	res := strings.TrimSpace(dr.s.Text())
    	if !strings.HasPrefix(res, "// ") {
    		dr.t.Fatalf("malformed line %s:%d, no comment: %s", dr.p, dr.ln, res)
    	}
    	return res[3:]
    }
    
    // readObjBlob reads in a series of commented lines until
    // it hits a delimiter, then returns the contents of the comments.
    func (dr *dumpReader) readObjBlob(delim string) (string, error) {
    	var sb strings.Builder
    	foundDelim := false
    	for dr.scan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/runtime/memmove_amd64.s

    	MOVOU	X11, -0x20(BX)
    	MOVOU	X12, -0x10(BX)
    	RET
    
    gobble_big_data_fwd:
    	// There is forward copying for big regions.
    	// It uses non-temporal mov instructions.
    	// Details of this algorithm are commented previously for small sizes.
    	LEAQ	(SI)(BX*1), CX
    	MOVOU	-0x80(SI)(BX*1), X5
    	MOVOU	-0x70(CX), X6
    	MOVOU	-0x60(CX), X7
    	MOVOU	-0x50(CX), X8
    	MOVOU	-0x40(CX), X9
    	MOVOU	-0x30(CX), X10
    	MOVOU	-0x20(CX), X11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. src/reflect/abi.go

    // constants will break every part of the toolchain that
    // uses reflect to call functions (e.g. go test, or anything
    // that uses text/template). The values that are currently
    // commented out there should be the actual values once
    // we're ready to use the register ABI everywhere.
    var (
    	intArgRegs   = abi.IntArgRegs
    	floatArgRegs = abi.FloatArgRegs
    	floatRegSize = uintptr(abi.EffectiveFloatRegSize)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
        # NOTE: If using templates, follow the pattern in the commented example below.
        #podDNSSearchNamespaces:
        #- global
        #- "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. src/go/printer/printer.go

    				switch ch {
    				case blank:
    					// ignore any blanks before a comment
    					p.wsbuf[i] = ignore
    					continue
    				case vtab:
    					// respect existing tabs - important
    					// for proper formatting of commented structs
    					hasSep = true
    					continue
    				case indent:
    					// apply pending indentation
    					continue
    				}
    				j = i
    				break
    			}
    			p.writeWhitespace(j)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
        # NOTE: If using templates, follow the pattern in the commented example below.
        #podDNSSearchNamespaces:
        #- global
        #- "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * `allow` - Automatically sets the `allowInsecureProtocol` property to `true` for the Maven repository URL in the generated Gradle build script.
    * `warn` - Emits a warning about each insecure URL.  Generates commented-out lines to enable each repository, as per the `allow` option.  You will have to opt-in by editing the generated script and uncommenting each repository URL, or else the Gradle build will fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    							break
    						}
    					}
    					if len(archCandidates) > 0 {
    						arch = archCandidates[0].name
    						archDef = archCandidates[0]
    					}
    				}
    			}
    
    			// Ignore comments and commented-out code.
    			if i := strings.Index(line, "//"); i >= 0 {
    				line = line[:i]
    			}
    
    			if m := asmTEXT.FindStringSubmatch(line); m != nil {
    				flushRet()
    				if arch == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            then:
            noIncludes()
            noImports()
            macros.empty
    
            where:
            directive << ["include", "import", "define"]
        }
    
        def "ignores #directive that is commented out"() {
            when:
            sourceFile << """
    /*
        #include "test1"
        #include <system1>
    */
    /* #include "test2" */
    /* #include <system3> */
    
    //    #include "test3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     * Pat Fisher, Mike Judd.
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck/JSR166TestCase.java?revision=1.90
     * (We have made some trivial local modifications (commented out
     * uncompilable code).)
     */
    
    package com.google.common.util.concurrent;
    
    import static java.util.concurrent.TimeUnit.MILLISECONDS;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top