Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 507 for bland (0.04 sec)

  1. test/fixedbugs/issue5244.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5244: the init order computation uses the wrong
    // order for top-level blank identifier assignments.
    // The example used to panic because it tries calling a
    // nil function instead of assigning to f before.
    
    package main
    
    var f = func() int { return 1 }
    var _ = f() + g()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 20:21:51 UTC 2013
    - 497 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/analyzers_bench_test.go

    	benchmarkAnalyzersArtificialBlankData(400, b)
    }
    
    func BenchmarkAnalyzersArtificialBlankData800(b *testing.B) {
    	benchmarkAnalyzersArtificialBlankData(800, b)
    }
    
    // Benchmark analyzers against an artificial set of blank data.
    // This does not cover all scaling factors, and it's not representative of a realistic snapshot, but it does cover some things.
    func benchmarkAnalyzersArtificialBlankData(count int, b *testing.B) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. test/typeparam/issue50481c.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that type substitution works and export/import works correctly even for a
    // generic type that has multiple blank type params.
    
    package main
    
    import (
    	"./a"
    	"fmt"
    )
    
    func main() {
    	var x a.T[int, a.Myint, string]
    	fmt.Printf("%v\n", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 408 bytes
    - Viewed (0)
  4. test/fixedbugs/bug218.go

    // https://golang.org/issue/238
    
    package main
    
    func main() {
    	bar := make(chan bool);
    	select {
    	case _ = <-bar:
    		return
    	}
    }
    
    /*
    6g bug218.go 
    <epoch>: fatal error: dowidth: unknown type: blank
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 389 bytes
    - Viewed (0)
  5. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/GuidesContributeIncludeProcessorTest.groovy

            JavaExtensionRegistry extensionRegistry = asciidoctor.javaExtensionRegistry()
            extensionRegistry.includeProcessor(GuidesContributeIncludeProcessor.class)
        }
    
        def "defaults repo to gradle/guides and issue to blank url"() {
            given:
            String asciidocContent = """
                |= Doctitle
                |
                |include::contribute[]
                |""".stripMargin()
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue43677.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue #43677: ICE during compilation of dynamic initializers for
    // composite blank variables.
    
    package p
    
    func f() *int
    
    var _ = [2]*int{nil, f()}
    
    var _ = struct{ x, y *int }{nil, f()}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 14 00:14:28 UTC 2021
    - 387 bytes
    - Viewed (0)
  7. src/internal/trace/gc.go

    	// bandDur.
    	bands []mmuBand
    	// bandDur is the duration of each band.
    	bandDur int64
    }
    
    type mmuBand struct {
    	// minUtil is the minimum instantaneous mutator utilization in
    	// this band.
    	minUtil float64
    	// cumUtil is the cumulative total mutator utilization between
    	// time 0 and the left edge of this band.
    	cumUtil totalUtil
    
    	// integrator is the integrator for the left edge of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. test/fixedbugs/issue4585.go

    // license that can be found in the LICENSE file.
    
    // Issue 4585: comparisons and hashes process blank
    // fields and padding in structs.
    
    package main
    
    import "unsafe"
    
    // T is a structure with padding.
    type T struct {
    	A     int16
    	B     int64
    	C     int16
    	D     int64
    	Dummy [64]byte
    }
    
    // U is a structure with a blank field
    type U struct {
    	A, _, B int
    	Dummy   [64]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SID.java

        }
    
    
        /**
         * 
         * @return whether the SID is blank (all sub-authorities zero)
         */
        public boolean isBlank () {
            boolean blank = true;
            for ( int sub : this.sub_authority )
                blank = blank && ( sub == 0 );
            return blank;
        }
    
    
        /**
         * 
         * @return domain SID
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  10. src/go/printer/printer.go

    	// Compute maximum common white prefix of all but the first,
    	// last, and blank lines, and replace blank lines with empty
    	// lines (the first line starts with /* and has no prefix).
    	// In cases where only the first and last lines are not blank,
    	// such as two-line comments, or comments where all inner lines
    	// are blank, consider the last line for the prefix computation
    	// since otherwise the prefix would be empty.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top