Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 285 for isInitialized (0.35 sec)

  1. pkg/controller/resourcequota/resource_quota_monitor.go

    type QuotaMonitor struct {
    	// each monitor list/watches a resource and determines if we should replenish quota
    	monitors    monitors
    	monitorLock sync.RWMutex
    	// informersStarted is closed after all the controllers have been initialized and are running.
    	// After that it is safe to start them here, before that it is not.
    	informersStarted <-chan struct{}
    
    	// stopCh drives shutdown. When a reception from it unblocks, monitors will shut down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	if err := s.initControllers(args); err != nil {
    		return nil, err
    	}
    
    	InitGenerators(s.XDSServer, configGen, args.Namespace, s.clusterID, s.internalDebugMux)
    
    	// Initialize workloadTrustBundle after CA has been initialized
    	if err := s.initWorkloadTrustBundle(args); err != nil {
    		return nil, err
    	}
    
    	// Parse and validate Istiod Address.
    	istiodHost, _, err := e.GetDiscoveryAddress()
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h

        absl::string_view control_output_arrays, llvm::SourceMgr* source_mgr,
        mlir::MLIRContext* context);
    
    // Load Saved model (either v1 or v2) into MLIR.
    // 'saved_model_bundle' will be initialized if V1 model was loaded.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ImportSavedModel(
        const std::string& input_filename, int saved_model_version,
        const std::unordered_set<std::string>& tags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 08:30:24 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

    // Converts a TensorFlow V1 SavedModel stored in the directory with the given
    // `saved_model_dir` into a MLIR module. Creates MLIR entities into the
    // given MLIR `context`.
    // 'saved_model_bundle' if not null, will be initialized with the model bundle.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelSignatureDefsToMlirImport(
        absl::string_view saved_model_dir,
        const std::unordered_set<std::string>& tags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    ****
    **In this section you will:**
    
    - Use Gradle properties
    - Understand incremental builds
    - Explore task outcome labels
    ****
    
    [[part5_begin]]
    == Step 0. Before you Begin
    
    1. You initialized your Java app in <<part1_gradle_init.adoc#part1_begin,part 1>>.
    2. You ran several tasks in <<part2_gradle_tasks#part2_begin,part 2>>.
    3. You learned about dependency management in <<part3_gradle_dep_man#part3_begin,part 3>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. internal/cachevalue/cache.go

    	Once sync.Once
    
    	// Managed values.
    	val          atomic.Pointer[T]
    	lastUpdateMs atomic.Int64
    	updating     sync.Mutex
    }
    
    // New allocates a new cached value instance. Tt must be initialized with
    // `.TnitOnce`.
    func New[T any]() *Cache[T] {
    	return &Cache[T]{}
    }
    
    // NewFromFunc allocates a new cached value instance and initializes it with an
    // update function, making it ready for use.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/runtime/slice.go

    // Existing entries [0, oldLen) are copied over to the new backing store.
    // Added entries [oldLen, newLen) are not initialized by growslice
    // (although for pointer-containing element types, they are zeroed). They
    // must be initialized by the caller.
    // Trailing entries [newLen, newCap) are zeroed.
    //
    // growslice's odd calling convention makes the generated code that calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      return success();
    }
    
    bool VariableIsInitialized(TF::VarHandleOp var_handle_op) {
      auto is_variable_initialized =
          var_handle_op->getAttrOfType<BoolAttr>("_is_initialized");
      // Assume variable is initialized if attribute is not set.
      // There are paths that doesn't mark the variables. All variables
      // that doesn't have the attribute will be promoted.
      return !is_variable_initialized || is_variable_initialized.getValue();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. internal/http/listener.go

    			continue
    		}
    
    		if opts.Trace != nil {
    			opts.Trace(fmt.Sprint("adding listener to ", l.Addr()))
    		}
    
    		listeners = append(listeners, l)
    	}
    
    	if len(listeners) == 0 {
    		// No listeners initialized, no need to continue
    		return
    	}
    
    	listener = &httpListener{
    		listeners: listeners,
    		acceptCh:  make(chan acceptResult, len(listeners)),
    		opts:      opts,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    //
    // A typical example is unidirectional_sequence_lstm have two variable tensor
    // inputs: activation state & cell state. They may have same initial values
    // (typical zero-initialized), but their values will be changed. So we cannot
    // just merge those values.
    //
    // This pass is more like short-term workaround since we don't have a good
    // variable representation right now.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top