Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sharedLib (0.28 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerPluginTest.groovy

                }
            }
    
            then:
            SharedLibraryBinarySpec sharedLib = realizeBinaries().testSharedLibrary
            sharedLib.tasks.withType(Assemble)*.name == ["assembleTestSharedLibraryTestAnotherOne", "assembleTestSharedLibraryTestAsm"]
            sharedLib.tasks.withType(Assemble).each { compile ->
                compile.toolChain == sharedLib.toolChain
                compile.assemblerArgs == ["ARG1", "ARG2", "SHARED1", "SHARED2"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                .withScheme('App')
                .succeeds()
    
            then:
            exe("app/build/exe/main/debug/App").assertExists()
            sharedLib("hello/build/lib/main/debug/Hello").assertExists()
            sharedLib("log/build/lib/main/debug/Log").assertExists()
    
            when:
            xcodebuild
                .withWorkspace(rootXcodeWorkspace)
                .withScheme('App')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can build C++ library from Xcode"() {
            useXcodebuildTool()
            def lib = new CppLib()
            def debugBinary = sharedLib("build/lib/main/debug/App")
            def releaseBinary = sharedLib("build/lib/main/release/App")
    
            given:
            buildFile << """
    apply plugin: 'cpp-library'
    """
    
            lib.writeToProject(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

        def "can build Swift library from xcode"() {
            useXcodebuildTool()
            def lib = new SwiftLib()
            def debugBinary = sharedLib("build/lib/main/debug/App")
            def releaseBinary = sharedLib("build/lib/main/release/App")
    
            given:
            buildFile << """
                apply plugin: 'swift-library'
            """
    
            lib.writeToProject(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

        }
    
        protected TestFile exe(String str) {
            file(OperatingSystem.current().getExecutableName(str))
        }
    
        protected TestFile sharedLib(String str) {
            file(OperatingSystem.current().getSharedLibraryName(str))
        }
    
        protected TestFile staticLib(String str) {
            file(OperatingSystem.current().getStaticLibraryName(str))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-dvi",
    				"application/x-elc",
    				"application/x-elf",
    				"message/x-emlx",
    				"application/x-killustrator",
    				"application/x-object",
    				"application/x-executable",
    				"application/x-sharedlib",
    				"application/x-coredump",
    				"application/x-dosexec",
    				"application/x-emf",
    				"application/x-filemaker",
    				"application/x-font-bdf",
    				"application/x-font-dos",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

            <match value="0x0200" type="string" offset="16"/>
            <match value="0x0002" type="string" offset="16"/>
          </match>
        </magic>
      </mime-type>
      <mime-type type="application/x-sharedlib">
        <sub-class-of type="application/x-elf"/>
        <magic priority="50">
          <match value="\177ELF" type="string" offset="0">
            <match value="0x0300" type="string" offset="16"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	if controllerName := managedByExternalController(sharedJob); controllerName != nil {
    		logger.V(2).Info("Skip syncing the job as it is managed by an external controller", "key", key, "uid", sharedJob.UID, "controllerName", controllerName)
    		return nil
    	}
    
    	// make a copy so we don't mutate the shared cache
    	job := *sharedJob.DeepCopy()
    
    	// if job was finished previously, we don't want to redo the termination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    =opt_type||'';this.nameUpdated_=false;};CodeMap.CodeEntry.prototype={__proto__:Object.prototype,get name(){return this.name_;},set name(value){this.name_=value;},toString(){this.name_+': '+this.size.toString(16);}};CodeMap.CodeEntry.TYPE={SHARED_LIB:'SHARED_LIB',CPP:'CPP'};CodeMap.DynamicFuncCodeEntry=function(size,type,func,state){CodeMap.CodeEntry.call(this,size,'',type);this.func=func;this.state=state;};CodeMap.DynamicFuncCodeEntry.STATE_PREFIX=['','~','*'];CodeMap.DynamicFuncCodeEntry.protot...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top