Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 377 for fakefs (0.73 sec)

  1. src/cmd/go/testdata/script/help.txt

    go help
    stdout 'Go is a tool'
    stdout 'bug.*start a bug report'
    
    # go help bug shows usage for bug
    go help bug
    stdout 'usage: go bug'
    stdout 'bug report'
    
    # go bug help is an error (bug takes no arguments)
    ! go bug help
    stderr 'bug takes no arguments'
    
    # go help mod shows mod subcommands
    go help mod
    stdout 'go mod <command>'
    stdout tidy
    
    # go help mod tidy explains tidy
    go help mod tidy
    stdout 'usage: go mod tidy'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vendor_test_issue14613.txt

    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor_test.go --
    package main
    
    import (
    	"testing"
    
    	"github.com/clsung/fake"
    )
    
    func TestVendor(t *testing.T) {
    	ret := fake.DoNothing()
    	expected := "Ok"
    	if expected != ret {
    		t.Errorf("fake returned %q, expected %q", ret, expected)
    	}
    }
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor/mylibtesttest/myapp/myapp_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/PublishArtifactLocalArtifactMetadataCodec.kt

     * the metadata object provides access to the backing PublishArtifact. This makes the better change too large to undertake at this point,
     * so for now just use some custom serialization that also makes assumptions and improve the Eclipse tooling model builder later.
     */
    object PublishArtifactLocalArtifactMetadataCodec : Codec<PublishArtifactLocalArtifactMetadata> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

    It must be one of:
        - A managed type (annotated with @Managed)
        - A managed collection. A valid managed collection takes the form of ModelSet<T> or ModelMap<T> where 'T' is:
            - A managed type (annotated with @Managed)
        - A scalar collection. A valid scalar collection takes the form of List<T> or Set<T> where 'T' is one of (String, Boolean, Character, Byte, Short, Integer, Float, Long, Double, BigInteger, BigDecimal, File)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    ## Level 1: System Context diagram
    
    A developer uses the Gradle Kotlin DSL either via Gradle directly or in an IDE that uses the Kotlin DSL support via Gradle.
    The Kotlin DSL is embedded into the Gradle Build Tool and, just like the IDE, makes use of the Kotlin toolchain.
    Both the Kotlin DSL and the Kotlin toolchain leverage the Gradle Build Cache.
    
    image::images/C4_1_Context.svg[]
    
    ## Level 2: Container diagram
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    			})
    			a.Deps = append(a.Deps, pgoAction)
    		}
    
    		if p.Standard {
    			switch p.ImportPath {
    			case "builtin", "unsafe":
    				// Fake packages - nothing to build.
    				a.Mode = "built-in package"
    				a.Actor = nil
    				return a
    			}
    
    			// gccgo standard library is "fake" too.
    			if cfg.BuildToolchainName == "gccgo" {
    				// the target name is needed for cgo.
    				a.Mode = "gccgo stdlib"
    				a.Target = p.Target
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingUtils.java

         * case makes tracking of non-entries and entries with anything but strings redundant because only
         * the build script can sneak in such {@code Entry} and change the result of e.g. {@code contains}
         * call. The external world cannot influence the result, so it makes no sense to record such access
         * as an input to the configuration cache.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/FormattingValidationProblemCollector.java

            }
        }
    
        @Override
        public void add(Method method, String role, String problem) {
            MethodDescription description = MethodDescription.name(method.getName())
                    .takes(method.getGenericParameterTypes());
            StringBuilder message = new StringBuilder("Method ");
            if (method.getDeclaringClass().equals(source.getConcreteClass())) {
                message.append(description);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
        }
        integTestImplementation(project(":language-groovy")) {
            because("ClassBytesRepositoryTest makes use of Groovydoc task.")
        }
        integTestImplementation(project(":internal-testing"))
        integTestImplementation(libs.mockitoKotlin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    # this test, we instead simulate it by injecting a fake "clang"
    # binary that runs the real one as a subprocess.
    
    [!cgo] skip
    [short] skip 'builds and links a fake clang binary'
    [!cc:clang] skip 'test is specific to clang version parsing'
    
    # Save the location of the real clang command for our fake one to use.
    go run ./which clang
    cp stdout $WORK/.realclang
    
    # Build a fake clang and ensure that it is the one in $PATH.
    mkdir $WORK/bin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top