Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 700 for Reports (0.23 sec)

  1. src/vendor/golang.org/x/net/nettest/nettest.go

    }
    
    // SupportsIPv4 reports whether the platform supports IPv4 networking
    // functionality.
    func SupportsIPv4() bool {
    	stackOnce.Do(probeStack)
    	return ipv4Enabled
    }
    
    // SupportsIPv6 reports whether the platform supports IPv6 networking
    // functionality.
    func SupportsIPv6() bool {
    	stackOnce.Do(probeStack)
    	return ipv6Enabled
    }
    
    // SupportsRawSocket reports whether the current session is available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    func (t *MicroTime) IsZero() bool {
    	if t == nil {
    		return true
    	}
    	return t.Time.IsZero()
    }
    
    // Before reports whether the time instant t is before u.
    func (t *MicroTime) Before(u *MicroTime) bool {
    	if t != nil && u != nil {
    		return t.Time.Before(u.Time)
    	}
    	return false
    }
    
    // Equal reports whether the time instant t is equal to u.
    func (t *MicroTime) Equal(u *MicroTime) bool {
    	if t == nil && u == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeset.go

    }
    
    // IsEmpty reports whether type set s is the empty set.
    func (s *_TypeSet) IsEmpty() bool { return s.terms.isEmpty() }
    
    // IsAll reports whether type set s is the set of all types (corresponding to the empty interface).
    func (s *_TypeSet) IsAll() bool { return s.IsMethodSet() && len(s.methods) == 0 }
    
    // IsMethodSet reports whether the interface t is fully described by its method set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                }
    
                test {
                    useJUnitPlatform()
                }
            }
            """
        }
    
        @TargetGradleVersion(">=8.8")
        def "reports display names of class and method"() {
            file("src/test/java/org/example/SimpleTests.java") << """package org.example;
    
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // isUint64PowerOfTwo reports whether uint64(n) is a power of 2.
    func isUint64PowerOfTwo(in int64) bool {
    	n := uint64(in)
    	return n > 0 && n&(n-1) == 0
    }
    
    // isUint32PowerOfTwo reports whether uint32(n) is a power of 2.
    func isUint32PowerOfTwo(in int64) bool {
    	n := uint64(uint32(in))
    	return n > 0 && n&(n-1) == 0
    }
    
    // is32Bit reports whether n can be represented as a signed 32 bit integer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/go/types/typeset.go

    }
    
    // IsEmpty reports whether type set s is the empty set.
    func (s *_TypeSet) IsEmpty() bool { return s.terms.isEmpty() }
    
    // IsAll reports whether type set s is the set of all types (corresponding to the empty interface).
    func (s *_TypeSet) IsAll() bool { return s.IsMethodSet() && len(s.methods) == 0 }
    
    // IsMethodSet reports whether the interface t is fully described by its method set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/os/path_plan9.go

    // license that can be found in the LICENSE file.
    
    package os
    
    const (
    	PathSeparator     = '/'    // OS-specific path separator
    	PathListSeparator = '\000' // OS-specific path list separator
    )
    
    // IsPathSeparator reports whether c is a directory separator character.
    func IsPathSeparator(c uint8) bool {
    	return PathSeparator == c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 443 bytes
    - Viewed (0)
  8. src/cmp/cmp.go

    // An operator such as == or < will always report false when
    // comparing a NaN value with any other value, NaN or not.
    // See the [Compare] function for a consistent way to compare NaN values.
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // Less reports whether x is less than y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameSpockCrossVersionSpec.groovy

                    testImplementation "org.spockframework:spock-core:2.1-groovy-3.0"
                }
    
                test {
                    useJUnitPlatform()
                }
            }
            """
        }
    
        def "reports display names of class and method"() {
            file("src/test/groovy/org/example/SimpleTests.groovy") << """package org.example
    
    import spock.lang.Specification
    
    class SimpleTests extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    type ObjectFact struct {
    	Object types.Object
    	Fact   Fact
    }
    
    // Reportf is a helper function that reports a Diagnostic using the
    // specified position and formatted error message.
    func (pass *Pass) Reportf(pos token.Pos, format string, args ...interface{}) {
    	msg := fmt.Sprintf(format, args...)
    	pass.Report(Diagnostic{Pos: pos, Message: msg})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top