Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,496 for Reports (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the expected set of projects is configured, the expected models are queried
         * and the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StoreDetails) Closure closure) {
            def details = new StoreDetails()
            closure.delegate = details
            closure()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.0.golden

    	// 
    	func RunExamples(examples []InternalExample) (ok bool)
    
    	// 
    	func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool)
    
    	// Short reports whether the -test.short flag is set. 
    	func Short() bool
    
    
    TYPES
    	// B is a type passed to Benchmark functions to manage benchmark ...
    	type B struct {
    		N int
    		// contains filtered or unexported fields
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm.go

    func jumpArm(word string) bool {
    	return armJump[word]
    }
    
    // IsARMCMP reports whether the op (as defined by an arm.A* constant) is
    // one of the comparison instructions that require special handling.
    func IsARMCMP(op obj.As) bool {
    	switch op {
    	case arm.ACMN, arm.ACMP, arm.ATEQ, arm.ATST:
    		return true
    	}
    	return false
    }
    
    // IsARMSTREX reports whether the op (as defined by an arm.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/internal/alias/alias.go

    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    // Package alias implements memory aliasing tests.
    package alias
    
    import "unsafe"
    
    // AnyOverlap reports whether x and y share memory at any (not necessarily
    // corresponding) index. The memory beyond the slice length is ignored.
    func AnyOverlap(x, y []byte) bool {
    	return len(x) > 0 && len(y) > 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

        abstract void buildLogicApplication(BuildInputRead read)
    
        abstract String getLocation()
    
        boolean isRestrictedDsl() {
            return false
        }
    
        def "reports undeclared system property read using #propertyRead.groovyExpression prior to task execution from plugin"() {
            buildLogicApplication(propertyRead)
            def configurationCache = newConfigurationCacheFixture()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeterm.go

    	}
    	return y
    }
    
    // includes reports whether t ∈ x.
    func (x *term) includes(t Type) bool {
    	// easy cases
    	switch {
    	case x == nil:
    		return false // t ∈ ∅ == false
    	case x.typ == nil:
    		return true // t ∈ 𝓤 == true
    	}
    	// ∅ ⊂ x ⊂ 𝓤
    
    	u := t
    	if x.tilde {
    		u = under(u)
    	}
    	return Identical(x.typ, u)
    }
    
    // subsetOf reports whether x ⊆ y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/go/types/typeterm.go

    	}
    	return y
    }
    
    // includes reports whether t ∈ x.
    func (x *term) includes(t Type) bool {
    	// easy cases
    	switch {
    	case x == nil:
    		return false // t ∈ ∅ == false
    	case x.typ == nil:
    		return true // t ∈ 𝓤 == true
    	}
    	// ∅ ⊂ x ⊂ 𝓤
    
    	u := t
    	if x.tilde {
    		u = under(u)
    	}
    	return Identical(x.typ, u)
    }
    
    // subsetOf reports whether x ⊆ y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/typeterm.go

    	}
    	return y
    }
    
    // includes reports whether t ∈ x.
    func (x *term) includes(t types.Type) bool {
    	// easy cases
    	switch {
    	case x == nil:
    		return false // t ∈ ∅ == false
    	case x.typ == nil:
    		return true // t ∈ 𝓤 == true
    	}
    	// ∅ ⊂ x ⊂ 𝓤
    
    	u := t
    	if x.tilde {
    		u = under(u)
    	}
    	return types.Identical(x.typ, u)
    }
    
    // subsetOf reports whether x ⊆ y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/SingleRequestWorkerProcessIntegrationTest.groovy

            def worker = builder.build()
            worker.run("abc")
    
            then:
            def e = thrown(IllegalArgumentException)
            e.message == 'Could not convert abc'
        }
    
        def "reports failure to load worker implementation class"() {
            given:
            def cl = compileWithoutClasspath("CustomTestWorker", """
    import ${RequestHandler.name}
    class CustomTestWorker implements RequestHandler<Long, Object> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  10. src/go/doc/exports.go

    // updateIdentList replaces all unexported identifiers with underscore
    // and reports whether at least one exported name exists.
    func updateIdentList(list []*ast.Ident) (hasExported bool) {
    	for i, x := range list {
    		if token.IsExported(x.Name) {
    			hasExported = true
    		} else {
    			list[i] = underscore
    		}
    	}
    	return hasExported
    }
    
    // hasExportedName reports whether list contains any exported names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top