Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 510 for Reports (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                task all(dependsOn: [":a", ":d", ":e", ":f", ":g", ":h", ":i"])
            """
    
            expect:
            succeeds ":a", ":d", ":e", ":f", ":g", ":h", ":i", ":all"
        }
    
        def "reports failure in task constructor when task created"() {
            settingsFile << """
                include "child"
            """
            file("child/build.gradle") << """
                class Broken extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

    import java.nio.file.Files
    import java.util.function.Supplier
    
    class UndeclaredBuildInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def testDir = testDirectoryProvider.testDirectory
    
        def "reports build logic reading a system property set #mechanism.description via the Java API"() {
            buildFile << """
                // not declared
                System.getProperty("CI")
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	var ret []types.Object
    	// Search through the imports to see if any of them define name.
    	// It's hard to tell in general which package is being tested, so
    	// for the purposes of the analysis, allow the object to appear
    	// in any of the imports. This guarantees there are no false positives
    	// because the example needs to use the object so it must be defined
    	// in the package or one if its imports. On the other hand, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519.go

    type PublicKey []byte
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(pub, xx) == 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                    }
                }
            }
            result.assertTasksExecuted(":dep:jar_2.0", ":checkDeps")
        }
    
        @ToBeFixedForConfigurationCache
        def "reports on and recovers from missing version for static selector"() {
            given:
            buildFile << """
                dependencies { compile 'test:test:2.0' }
            """
            repo.commit("v1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/language.go

    // as one would suspect from the IANA registry for BCP 47. In a Unicode context Zyyy marks
    // common characters (like 1, 2, 3, '.', etc.) and is therefore more like multiple scripts.
    // See https://www.unicode.org/reports/tr24/#Values for more details. Zzzz is also used for
    // unknown value in CLDR.  (Zzzz, Exact) is returned if Zzzz was explicitly specified.
    // Note that an inferred script is never guaranteed to be the correct one. Latin is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cfg/cfg.go

    				}
    			}
    		}
    	}
    	return def
    }
    
    // isSameDir reports whether dir1 and dir2 are the same directory.
    func isSameDir(dir1, dir2 string) bool {
    	if dir1 == dir2 {
    		return true
    	}
    	info1, err1 := os.Stat(dir1)
    	info2, err2 := os.Stat(dir2)
    	return err1 == nil && err2 == nil && os.SameFile(info1, info2)
    }
    
    // isGOROOT reports whether path looks like a GOROOT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/slices/slices.go

    	for i := range s {
    		if f(s[i]) {
    			return i
    		}
    	}
    	return -1
    }
    
    // Contains reports whether v is present in s.
    func Contains[S ~[]E, E comparable](s S, v E) bool {
    	return Index(s, v) >= 0
    }
    
    // ContainsFunc reports whether at least one
    // element e of s satisfies f(e).
    func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {
    	return IndexFunc(s, f) >= 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/strconv/quote.go

    	return !found
    }
    
    // IsGraphic reports whether the rune is defined as a Graphic by Unicode. Such
    // characters include letters, marks, numbers, punctuation, symbols, and
    // spaces, from categories L, M, N, P, S, and Zs.
    func IsGraphic(r rune) bool {
    	if IsPrint(r) {
    		return true
    	}
    	return isInGraphicList(r)
    }
    
    // isInGraphicList reports whether the rune is in the isGraphic list. This separation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/os/exec.go

    func (p *ProcessState) SystemTime() time.Duration {
    	return p.systemTime()
    }
    
    // Exited reports whether the program has exited.
    // On Unix systems this reports true if the program exited due to calling exit,
    // but false if the program terminated due to a signal.
    func (p *ProcessState) Exited() bool {
    	return p.exited()
    }
    
    // Success reports whether the program exited successfully,
    // such as with exit status 0 on Unix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top