Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 610 for shared (0.11 sec)

  1. settings.gradle.kts

            return id
        }
    }
    
    sealed class ArchitectureElement(
        val name: String,
        val id: ElementId
    ) : Serializable
    
    class Platform(name: String, id: ElementId, val uses: List<ElementId>, val children: List<ArchitectureModule>) : ArchitectureElement(name, id)
    
    class ArchitectureModule(name: String, id: ElementId) : ArchitectureElement(name, id)
    
    sealed class ArchitectureElementBuilder(
        val name: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    	flagMsan          = flag.Bool("msan", false, "enable MSan interface")
    	flagAsan          = flag.Bool("asan", false, "enable ASan interface")
    	flagAslr          = flag.Bool("aslr", true, "enable ASLR for buildmode=c-shared on windows")
    
    	flagFieldTrack = flag.String("k", "", "set field tracking `symbol`")
    	flagLibGCC     = flag.String("libgcc", "", "compiler support lib for internal linking; use \"none\" to disable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		}
    	}
    
    	// When loading a shared library, if a symbol has only one ABI,
    	// and the name is not mangled, we don't know what ABI it is.
    	// So we always mangle ABIInternal function name in shared linkage,
    	// except symbols that are exported to C. Type symbols are always
    	// ABIInternal so they are not mangled.
    	if ctxt.IsShared() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.junit.Rule
    import spock.lang.Ignore
    import spock.lang.Shared
    import spock.lang.Specification
    
    class S3ClientIntegrationTest extends Specification {
    
        public static final String FILE_NAME = "mavenTest.txt"
        final String accessKey = 'gradle-access-key'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

    import spock.lang.Ignore
    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class NormalizingExcludeFactoryTest extends Specification implements ExcludeTestSupport {
    
        def setup() {
            factory = new NormalizingExcludeFactory(factory)
        }
    
        @Shared
        private DefaultIvyArtifactName artifactName = new DefaultIvyArtifactName("a", "b", "c")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/ExternalResourceNameTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.util.Matchers
    import spock.lang.Shared
    import spock.lang.Specification
    
    class ExternalResourceNameTest extends Specification {
        @Shared
        def root = File.listRoots()[0]
        @Shared
        def base = new File(root, "base")
    
        def "can construct a resource name from URI"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

    }
    
    // Replaces every uses of ConstOps in `target_const_ops` to VarHandleOp ->
    // ReadVariableOp patterns. The ConstOps are not erased. Returns the ConstOp ->
    // shared_name mapping. The shared_name is the shared name of the corresponding
    // VarHandleOp.
    llvm::MapVector<TF::ConstOp, std::string> ReplaceConstOpUsesWithVariableReads(
        llvm::ArrayRef<TF::ConstOp> target_const_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                        implementation project(':greeter')
                    }
                }
                project(':greeter') {
                    apply plugin: 'swift-library'
    
                    library.linkage = [Linkage.SHARED, Linkage.STATIC]
                }
    """
            app.library.writeToProject(file("greeter"))
            app.executable.writeToProject(file("app"))
    
            expect:
            succeeds ":app:assemble"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  9. pkg/test/framework/components/echo/common/deployment/echos.go

    					defaultConfigs[i].ServiceWaypointProxy = "shared"
    					defaultConfigs[i].WorkloadWaypointProxy = "shared"
    				}
    			}
    		} else {
    			waypointed := echo.Config{
    				Service:               WaypointSvc,
    				ServiceAccount:        true,
    				Ports:                 ports.All(),
    				ServiceWaypointProxy:  "shared",
    				WorkloadWaypointProxy: "shared",
    				Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    	claimCache   cache.MutationCache
    
    	// podLister is the shared Pod lister used to fetch Pod
    	// objects from the API server. It is shared with other controllers and
    	// therefore the Pod objects in its store should be treated as immutable.
    	podLister v1listers.PodLister
    	podSynced cache.InformerSynced
    
    	// podSchedulingList is the shared PodSchedulingContext lister used to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top