Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,548 for _initialized (0.15 sec)

  1. test/fixedbugs/issue27695b.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure return values aren't scanned until they
    // are initialized, when calling functions and methods
    // via reflect.
    
    package main
    
    import (
    	"reflect"
    	"runtime"
    	"unsafe"
    )
    
    var badPtr uintptr
    
    var sink []byte
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 29 20:25:24 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Crypto.java

            }
            provider = customProvider;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Aug 17 17:34:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/podnodeselector/admission.go

    	p.namespaceLister = namespaceInformer.Lister()
    	p.SetReadyFunc(namespaceInformer.Informer().HasSynced)
    }
    
    // ValidateInitialization verifies the object has been properly initialized
    func (p *Plugin) ValidateInitialization() error {
    	if p.namespaceLister == nil {
    		return fmt.Errorf("missing namespaceLister")
    	}
    	if p.client == nil {
    		return fmt.Errorf("missing client")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_var_init_by_const.cc

    // A pass that removes `tf.AssignVariableOp(tf.VarHandleOp, tf.Const)` patterns
    // from the initializer function (type = "restore_op").
    //
    // Note: initializing values (`tf.Const`s) will be removed and this may result
    // in an information loss and uninitialized variable errors. Make sure that this
    // effect is desired (e.g. there is a `tf.RestoreV2Op` restoring the variables
    // instead).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:04:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. gorm.go

    func (c *Config) Apply(config *Config) error {
    	if config != c {
    		*config = *c
    	}
    	return nil
    }
    
    // AfterInitialize initialize plugins after db connected
    func (c *Config) AfterInitialize(db *DB) error {
    	if db != nil {
    		for _, plugin := range c.Plugins {
    			if err := plugin.Initialize(db); err != nil {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // Option gorm option interface
    type Option interface {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          tags: Collection[str],
          signature_def_key: str,
      ) -> Tuple[Mapping[str, core.Tensor], Mapping[str, core.Tensor]]:
        """Creates and saves a model that uses a file-initialized table.
    
        The asset file "vocab_file.txt" is used to initialize a hash table.
    
        Args:
          output_path: Path to the directory to save the created model.
          tags: Set of strings that identifies the saved meta graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

    };
    
    // OpOrArgNameMapper that returns, for operations or values not initialized
    // to a specific name, a name based on the location of the operation or
    // value.
    class OpOrArgLocNameMapper : public OpOrArgNameMapper {
     protected:
      std::string GetName(OpOrVal op_or_val) override;
    };
    
    // OpOrArgNameMapper that returns, for operations or values not initialized
    // to a specific name, a short name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        this.journalFileBackup = directory / JOURNAL_FILE_BACKUP
      }
    
      @Synchronized
      @Throws(IOException::class)
      fun initialize() {
        this.assertThreadHoldsLock()
    
        if (initialized) {
          return // Already initialized.
        }
    
        // If a bkp file exists, use it instead.
        if (fileSystem.exists(journalFileBackup)) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  This function sets appropriate callback functions, initializes the 
     *  test output files, and calls the appropriate functions to list the 
     *  tests and run them.  If an output file name root has not been 
     *  specified using CU_set_output_filename(), a generic root will be 
     *  applied.  It is an error to call this function before the CUnit
     *  test registry has been initialized (check by assertion).
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionModelView.java

                    // if the collection is a read-only property, it must be initialized first (it will never be null)
                    // if the collection is *not* read-only, then we will initialize it only if the collection is the
                    // subject of a rule, that is to say that it can be mutated. This may look strange, if a read-write
                    // collection is null to initialize it to an empty list, but this is how the specs define reaw-write
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top