Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,081 for initialize_ (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

      let constructor = "mlir::tf_test::CreateLiftVariablesTestPass()";
    }
    
    def InitializeVariablesInSessionInitializerPass : Pass<"tf-saved-model-initialize-variables-in-session-init", "ModuleOp"> {
      let summary = "Initialize variables in session initializer function.";
    
      let constructor = "mlir::tf_test::CreateInitializeVariablesInSessionInitializerTestPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ManagedModelCreationRuleExtractor.java

                            NodeInitializer initializer = getNodeInitializer(descriptor, modelSchema, nodeInitializerRegistry);
                            for (Map.Entry<ModelActionRole, ModelAction> actionInRole : initializer.getActions(ModelReference.of(modelPath), descriptor).entries()) {
                                ModelActionRole role = actionInRole.getKey();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

        def "cannot get an instance of NativeServices without initializing first" () {
            // Construct an isolated classloader so we can load a pristine NativeServices class
            // that's guaranteed not to have been initialized before
            URL[] jars = [
                jar(NativeServices),
                jar(ServiceRegistration),
                jar(ServiceRegistry),
                jar(Native),
                jar(LoggerFactory),
                jar(Chmod),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

      if (!op->hasAttrOfType<StringAttr>(kSharedNameAttr)) return "";
      return op->getAttrOfType<StringAttr>(kSharedNameAttr).getValue();
    }
    
    // Checks if the HashTable is initialized. This function assumes that the
    // HashTable is initialized if it appears in the initializer since it can't
    // check the actual value.
    bool IsResourceInitialized(ModuleOp module_op, Operation* hash_table) {
      StringRef shared_name = GetSharedName(hash_table);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/context/SingletonContext.java

            if ( INSTANCE != null ) {
                throw new CIFSException("Singleton context is already initialized");
            }
            Properties p = new Properties();
            try {
                String filename = System.getProperty("jcifs.properties");
                if ( filename != null && filename.length() > 1 ) {
    
                    try ( FileInputStream in = new FileInputStream(filename) ) {
                        p.load(in);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 08:53:08 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

      auto func_builder = OpBuilder::atBlockBegin(func.addEntryBlock());
      func_builder.create<mlir::func::ReturnOp>(func.getLoc());
      // In cases where there is a session initializer op with empty initializer,
      // replace the session initializer with the new one that points to the session
      // initializer func.
      SessionInitializerOp session_init_op = GetSessionInitializerOp(module);
      auto new_session_init_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

      // Only the "tf.AssignVariableOp" patterns inside this initializer function
      // will be searched.
      FuncOp session_init_func_type_restore_op = GetInitializerFunction(
          module_op, /*initializer_type=*/kTfSavedModelInitializerRestoreType);
      if (!session_init_func_type_restore_op) {
        LOG(INFO) << "No session initializer function with type 'restore_op'. No "
                     "variables are saved to checkpoint.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Striped64.java

     * so.
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. plugin/pkg/admission/podnodeselector/admission.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/util/yaml"
    	"k8s.io/apiserver/pkg/admission"
    	genericadmissioninitializer "k8s.io/apiserver/pkg/admission/initializer"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	corev1listers "k8s.io/client-go/listers/core/v1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/Striped64.java

     * so.
     */
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top