Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 736 for shared (0.14 sec)

  1. src/cmd/go/internal/work/gccgo.go

    		}
    
    		realOut = out
    		out = out + ".o"
    
    	case "c-shared":
    		ldflags = append(ldflags, "-shared", "-nostdlib")
    		if cfg.Goos != "windows" {
    			ldflags = append(ldflags, "-Wl,-z,nodelete")
    		}
    		ldflags = append(ldflags, goLibBegin...)
    		ldflags = append(ldflags, "-lgo", "-lgcc_s", "-lgcc", "-lc", "-lgcc")
    
    	case "shared":
    		if cfg.Goos != "aix" {
    			ldflags = append(ldflags, "-zdefs")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker.go

    	// Count is the number of values tested.
    	Count int64
    
    	// CoverageData is set if the value in shared memory expands coverage
    	// and therefore may be interesting to the coordinator.
    	CoverageData []byte
    
    	// Err is the error string caused by the value in shared memory, which is
    	// non-empty if the value in shared memory caused a crash.
    	Err string
    
    	// InternalErr is the error string caused by an internal error in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    				}
    				// Assume that if pkg (runtime/cgo or math)
    				// is already accounted for in a different shared library,
    				// then that shared library also contains runtime,
    				// so that anything we do will depend on that library,
    				// so we don't need to include pkg in our shared library.
    				if force || p.Shlib == "" || filepath.Base(p.Shlib) == pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationCppInteroperabilityIntegrationTest.groovy

            installation("app/build/install/main/debug").exec().out == app.expectedOutput
    
            where:
            linkage << [SHARED, STATIC]
        }
    
        @ToBeFixedForConfigurationCache
        def "can compile and link against a c++ library with both static and shared linkages"() {
            createDirs("app", "cppGreeter")
            settingsFile << "include 'app', 'cppGreeter'"
            def cppGreeter = new CppGreeterFunction()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            project.library.linkage = [Linkage.SHARED, Linkage.STATIC]
            project.evaluate()
    
            then:
            def compileDebug = project.tasks.compileDebugSharedCpp
            compileDebug instanceof CppCompile
            compileDebug.source.files == [src] as Set
            compileDebug.objectFileDir.get().asFile == projectDir.file("build/obj/main/debug/shared")
            compileDebug.debuggable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * 2b. If we use shared lock, and we succeed in step 1., then we just hold the lock. We don't write anything to the information region
             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            then:
            installation("build/install/main").exec().out == app.englishOutput
    
            then:
            file("build/libs/hello/shared/link/new_output/_hello.lib").assertExists()
            file("build/libs/hello/shared/runtime/new_output/_hello.dll").assertExists()
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_monitor.go

    			qm.resourceChanges.Add(event)
    		},
    	}
    	shared, err := qm.informerFactory.ForResource(resource)
    	if err == nil {
    		logger.V(4).Info("QuotaMonitor using a shared informer", "resource", resource.String())
    		shared.Informer().AddEventHandlerWithResyncPeriod(handlers, qm.resyncPeriod())
    		return shared.Informer().GetController(), nil
    	}
    	logger.V(4).Error(err, "QuotaMonitor unable to use a shared informer", "resource", resource.String())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftLibraryPlugin.java

    import static org.gradle.language.nativeplatform.internal.Dimensions.useHostAsDefaultTargetMachine;
    
    /**
     * <p>A plugin that produces a shared library from Swift source.</p>
     *
     * <p>Adds compile, link and install tasks to build the shared library. Defaults to looking for source files in `src/main/swift`.</p>
     *
     * <p>Adds a {@link SwiftComponent} extension to the project to allow configuration of the library.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    In <<declaring_dependencies_between_subprojects#javadependencies_2,this example>>, the `:services:person-service` project depends on both the `:api` and `:shared` projects.
    The `:api` project also depends on the `:shared` project.
    
    Assuming you are working on a single project, the `:api` project, you have been making changes but have not built the entire project since performing a `clean`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top