Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 610 for shared (0.41 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_restore_op.mlir

    // CHECK-LOC: @init_func_init_op
    // CHECK-LOC: return
    }
    
    // -----
    
    // Test that `RestoreV2Op` is created even when the `Const` op is shared across
    // `AssignVariableOp`s.
    
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = [@init_func_restore_op_multiple_variables_sharing_const]} : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                    outputDir = project.layout.buildDirectory.dir("shared-output")
                }
                def producerUntracked = tasks.register("producerUntracked", UntrackedProducer) {
                    outputDir = project.layout.buildDirectory.dir("shared-output")
                    mustRunAfter(producerTracked)
                }
                tasks.register("consumer", Consumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arch.go

    	}
    }
    
    func archRISCV64(shared bool) *Arch {
    	register := make(map[string]int16)
    
    	// Standard register names.
    	for i := riscv.REG_X0; i <= riscv.REG_X31; i++ {
    		// Disallow X3 in shared mode, as this will likely be used as the
    		// GP register, which could result in problems in non-Go code,
    		// including signal handlers.
    		if shared && i == riscv.REG_GP {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
    
            lib1Project.pluginManager.apply("cpp-library")
            lib1Project.library.linkage = [Linkage.SHARED, Linkage.STATIC]
    
            project.evaluate()
    
            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
            def targets = generateManifest.package.get().targets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. .teamcity/subprojects.json

        "path": "platforms/jvm/toolchains-jvm",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "toolchains-jvm-shared",
        "path": "platforms/jvm/toolchains-jvm-shared",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "tooling-api",
        "path": "platforms/ide/tooling-api",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            return service.launcherFor(extension.getToolchain());
        }
    
        /**
         * A state shared by the validation process.
         * <p>
         * This separate class is required to ensure the shared state remains shared after deserialization of actions from the configuration cache.
         *
         * @see #configureJarTask(Project, GradlePluginDevelopmentExtension)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	{82, "EREMCHG", "remote address changed"},
    	{83, "ELIBACC", "can not access a needed shared library"},
    	{84, "ELIBBAD", "accessing a corrupted shared library"},
    	{85, "ELIBSCN", ".lib section in a.out corrupted"},
    	{86, "ELIBMAX", "attempting to link in too many shared libraries"},
    	{87, "ELIBEXEC", "cannot exec a shared library directly"},
    	{88, "EILSEQ", "invalid or incomplete multibyte or wide character"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

     * `linkDebug` and `linkRelease` tasks that link the compiled {cpp} object files into an executable for applications or shared library for libraries with shared linkage for the debug and release build types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	t.Logf("%v\n%s", argv, out)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    // TestCompileWithoutShared tests that if we compile code without the
    // -shared option, we can put it into an archive. When we use the go
    // tool with -buildmode=c-archive, it passes -shared to the compiler,
    // so we override that. The go tool doesn't work this way, but Bazel
    // will likely do it in the future. And it ought to work. This test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	// We assume the informer is already started, and starts all types associated
    	// with it.
    	if genericInformer, err := s.informerFactory.ForResource(mapping.Resource); err == nil {
    		informer = genericInformer
    
    		// Start the informer
    		s.informerFactory.Start(instanceContext.Done())
    
    	} else {
    		// Dynamic JSON informer fallback.
    		// Cannot use shared dynamic informer since it would be impossible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top