Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 172 for unnamed1 (0.17 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        const auto &output_tensor = (*subgraph.tensors())[buffer];
        std::cout << "\tname: '"
                  << (output_tensor->name() ? output_tensor->name()->str()
                                            : "<<unnamed>>")
                  << "' buffer: " << buffer;
        if (loc) std::cout << llvm::formatv(" {0}", loc(id)).str();
        std::cout << '\n';
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

            def addOpensArgs = parameters.effectiveJvmArgs.findAll { it.startsWith("--add-opens") }
            !addOpensArgs.isEmpty()
            addOpensArgs.every { it.matches("--add-opens=.*?/.*?=ALL-UNNAMED") }
    
            and: "The required --add-opens args should not contain duplicates"
            addOpensArgs.toSet().size() == addOpensArgs.size()
        }
    
        def "can configure debug mode"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

                // For java.util.concurrent.CountDownLatch being serialized reflectively by configuration cache
                executer.withArgument('-Dorg.gradle.jvmargs=--add-opens java.base/java.util.concurrent=ALL-UNNAMED --add-opens java.base/java.util.concurrent.locks=ALL-UNNAMED')
            }
    
            configureGarbageCollectionHeapEventsFor(256, 512, 100, garbageCollector.monitoringStrategy.thrashingThreshold + 0.2)
            waitForImmediateDaemonExpiration()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(A, a, b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */)
    	f(A, b /* ERROR "cannot use b (variable of type chan<- int) as namedA value in argument to f" */, a)
    
    	// Unnamed directed channels win over bidirectional channels.
    	b = f(a, b)
    	b = f(b, a)
    
    	// Defined directed channels win over defined bidirectional channels.
    	A = f(A, a)
    	A = f(a, A)
    	B = f(B, b)
    	B = f(b, B)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/ApplyPluginIntegSpec.groovy

                }
                @Override
                Iterable<String> asArguments() {
                    return test.javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)
                        ? ["--add-opens=java.base/java.lang=ALL-UNNAMED"]
                        : []
                }
            }
            tasks.withType(Test).configureEach {
                jvmArgumentProviders.add(new AddOpensArgProvider(it))
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/internal/xcoff/xcoff.go

    	C_STAT    = 3   // Static symbol
    	C_BLOCK   = 100 // Beginning or end of inner block
    	C_FCN     = 101 // Beginning or end of function
    	C_FILE    = 103 // Source file name and compiler information
    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ----
    include::{snippetsPath}/java-library/module/kotlin/src/main/java/module-info.java[]
    ----
    
    While a real module cannot directly depend on the unnamed module (only by adding command line flags), automatic modules can also see the unnamed module.
    Thus, if you cannot avoid to rely on a library without module information, you can wrap that library in an automatic module as part of your project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactCollectionIntegrationTest.groovy

                executer.withArgument('-Dorg.gradle.jvmargs=--add-opens java.base/java.util.concurrent=ALL-UNNAMED')
            }
            fails "verify"
    
            then:
            if (FluidDependenciesResolveInterceptor.isFluid()) {
                failure.assertHasDescription("Could not determine the dependencies of task ':verify'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/eval_util.cc

      }
    
      TF_Status* status = TF_NewStatus();
      auto clean_status = MakeCleanup([status] { TF_DeleteStatus(status); });
    
      // Builds TF operation and sets all the attributes.
      std::string node_name = "unnamed";
      if (auto attr = inst->getAttrOfType<mlir::StringAttr>("name")) {
        node_name = std::string(attr.getValue());
      }
      auto node_def_or = ConvertTFDialectOpToNodeDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 06:02:14 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/go/types/object_test.go

    		{NewTypeName(nopos, pkg, "t0", nil), false}, // no type yet
    		{t1, false}, // type name refers to named type and vice versa
    		{NewTypeName(nopos, nil, "t2", NewInterfaceType(nil, nil)), true}, // type name refers to unnamed type
    		{NewTypeName(nopos, pkg, "t3", n1), true},                         // type name refers to named type with different type name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top