Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 310 for _rmdir (0.11 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetDependenciesIntegrationTest.groovy

    apply plugin: 'c'
    
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    library(CSourceSet) {
                        source.srcDir "src/library/c"
                        exportedHeaders.srcDir "src/library/headers"
                    }
                    c.lib library
                }
            }
        }
    }
    """
            when:
            succeeds "mainExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/build.gradle

                            platformWindows(CSourceSet) {
                                source.srcDir "src/main/windows"
                                lib m.sources.c
                            }
                        } else if (targetPlatform.operatingSystem.linux) {
                            platformLinux(CSourceSet) {
                                source.srcDir "src/main/linux"
                                lib m.sources.c
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 971 bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitComponentReportIntegrationTest.groovy

            executable file: build/exe/someExe/someExe
    
    Cunit test suite 'someExeTest'
    ------------------------------
    
    Source sets
        C source 'someExeTest:c'
            srcDir: src/someExeTest/c
        C source 'someExeTest:cunitLauncher'
            srcDir: build/src/someExeTest/cunitLauncher/c
    
    Binaries
        C unit exe 'someExeTest:cUnitExe'
            build using task: :someExeTestCUnitExe
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

    }
    model {
        buildTypes {
            debug
            release
        }
        repositories {
            libs(PrebuiltLibraries) {
                boost {
                    headers.srcDir "3rd-party-lib/boost_1_55_0/boost"
                }
                util {
                    headers.srcDir "3rd-party-lib/util/src/util/headers"
                    binaries.withType(StaticLibraryBinary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetLinkDependenciesIntegrationTest.groovy

            given:
            buildFile << """
    model {
        components {
            main {
                sources {
                    other(CppSourceSet) {
                        source.srcDir "src/other/cpp"
                    }
                }
                binaries.all {
                    lib library: 'lib1', linkage: 'static'
                }
            }
        }
    }
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. hack/verify-vendor.sh

    kube::golang::setup_env
    
    # create a nice clean place to put our new vendor tree
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    
    if [[ -z ${KEEP_TMP:-} ]]; then
        KEEP_TMP=false
    fi
    
    function cleanup {
      # make go module dirs writeable
      chmod -R +w "${_tmpdir}"
      if [ "${KEEP_TMP}" == "true" ]; then
        echo "Leaving ${_tmpdir} for you to examine or copy. Please delete it manually when finished. (rm -rf ${_tmpdir})"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_custom_docs_ui/test_tutorial002.py

        print(static_dir)
        static_dir.mkdir(exist_ok=True)
        from docs_src.custom_docs_ui.tutorial002 import app
    
        with TestClient(app) as client:
            yield client
        static_dir.rmdir()
    
    
    def test_swagger_ui_html(client: TestClient):
        response = client.get("/docs")
        assert response.status_code == 200, response.text
        assert "/static/swagger-ui-bundle.js" in response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrPlugin.java

                        sourceSet.getExtensions().add(AntlrSourceDirectorySet.class, AntlrSourceDirectorySet.NAME, antlrSourceSet);
                        final String srcDir = "src/" + sourceSet.getName() + "/antlr";
                        antlrSourceSet.srcDir(srcDir);
                        sourceSet.getAllSource().source(antlrSourceSet);
    
                        // 2) create an AntlrTask for this sourceSet following the gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
            }
        }
        sourceSets {
            getByName("main").java.srcDir("src/main/kotlin")
            getByName("test").java.srcDir("src/test/kotlin")
            getByName("androidTest").java.srcDir("src/androidTest/kotlin")
        }
        testOptions {
            unitTests.withGroovyBuilder {
                // AGP >= 4.0.0 exposes `returnDefaultValues`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    // is applied to the exact source that was profiled.
    func TestPGODevirtualize(t *testing.T) {
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata", "pgo", "devirtualize")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    	if err := os.Mkdir(filepath.Join(dir, "mult.pkg"), 0755); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top