Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 532 for Dummy3 (0.29 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginMultiProjectTest.groovy

        def "configures checkstyle extension to read config from root project in a single project build"() {
            given:
            buildFile << javaProjectUsingCheckstyle()
            file('src/main/java/Dummy.java') << javaClassWithNewLineAtEnd()
            file('config/checkstyle/checkstyle.xml') << simpleCheckStyleConfig()
    
            expect:
            succeeds('checkstyleMain')
            checkStyleReportFile(testDirectory).assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:39:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    hg update -r 4
    
    hg branch v3
    unquote ''
    cp stdout dummy
    hg add dummy
    hg commit --user 'Russ Cox <******@****.***>' --date '2018-06-27T12:15:45-04:00' -m 'dummy'
    
    hg update v2.3.4
    hg branch v2.3.4
    unquote ''
    cp stdout dummy
    hg add dummy
    hg commit --user 'Russ Cox <******@****.***>' --date '2018-06-27T12:16:10-04:00' -m 'dummy'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/DummyProxy.java

        Object dummy =
            Proxy.newProxyInstance(
                interfaceClasses.iterator().next().getClassLoader(),
                interfaceClasses.toArray(new Class<?>[interfaceClasses.size()]),
                new DummyHandler(interfaceType));
        @SuppressWarnings("unchecked") // interfaceType is T
        T result = (T) dummy;
        return result;
      }
    
      /** Returns the dummy return value for {@code returnType}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/flag/example_func_test.go

    	fs := flag.NewFlagSet("ExampleBoolFunc", flag.ContinueOnError)
    	fs.SetOutput(os.Stdout)
    
    	fs.BoolFunc("log", "logs a dummy message", func(s string) error {
    		fmt.Println("dummy message:", s)
    		return nil
    	})
    	fs.Parse([]string{"-log"})
    	fs.Parse([]string{"-log=0"})
    
    	// Output:
    	// dummy message: true
    	// dummy message: 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:44:21 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/runtime/testdata/testwinlibsignal/main.c

        HMODULE dummyDll = LoadLibrary("dummy.dll");
        if (!dummyDll) {
            fprintf(stderr, "ERROR: Could not load dummy.dll\n");
            return 1;
        }
    
        // Call the Dummy function so that Go initialization completes, since
        // all cgo entry points call out to _cgo_wait_runtime_init_done.
        if (((int(*)(void))GetProcAddress(dummyDll, "Dummy"))() != 42) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. src/mdo/model.vm

        #set ( $dummy = $imports.add( "java.io.Serializable" ) )
        #set ( $dummy = $imports.add( "java.util.Collections" ) )
        #set ( $dummy = $imports.add( "java.util.HashMap" ) )
        #set ( $dummy = $imports.add( "java.util.Map" ) )
        #set ( $dummy = $imports.add( "org.apache.maven.api.annotations.Experimental" ) )
        #set ( $dummy = $imports.add( "org.apache.maven.api.annotations.Generated" ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnumBuildOptionTest.groovy

        }
    
        interface Dummy {
            void accept(MyEnum value)
        }
    
        static class MyEnumBuildOption extends EnumBuildOption<MyEnum, Dummy> {
    
            MyEnumBuildOption() {
                super("my option", MyEnum, MyEnum.values(), "test")
            }
    
            @Override
            void applyTo(MyEnum value, Dummy settings, Origin origin) {
                settings.accept(value)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

                }
            """
    
            file('src/dummy-input.txt') << "dummy text"
    
            buildFile << """
                task cacheableTask {
                    def inputFile = file("src/dummy-input.txt")
                    def outputDir = file(layout.buildDirectory.dir("dummy-output"))
                    def outputFile = file(layout.buildDirectory.file("dummy-output/result.txt"))
    
                    outputs.cacheIf { true }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    stderr preferlinkext
    env CGO_CFLAGS=-fplugin
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    env CGO_CFLAGS=-fprofile-instr-generate
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    
    # The -fdebug-prefix-map=path is permitted for internal linking.
    env CGO_CFLAGS=-fdebug-prefix-map=/some/sandbox/execroot/workspace=/tmp/new
    go build -x -n -o dummy.exe ./usesInternalCgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/shape_inference_test.cc

        auto enter =
            ops::internal::Enter(scope.WithOpName("while/Enter"), x, "aloop");
        auto dummy = ops::Placeholder(scope.WithOpName("dummy"), DT_RESOURCE);
        auto merge = ops::Merge(scope.WithOpName("while/Merge"),
                                std::initializer_list<Input>{enter, dummy});
        auto false_value = ops::Const<bool>(scope.WithOpName("false"), false);
        auto loop_cond =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top