Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 789 for isInitialized (0.49 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go

    	wantAuthorizerAdmission := &WantAuthorizerAdmission{}
    	target.Initialize(wantAuthorizerAdmission)
    	if wantAuthorizerAdmission.auth == nil {
    		t.Errorf("expected authorizer to be initialized but found nil")
    	}
    }
    
    // TestWantsExternalKubeClientSet ensures that the clientset is injected
    // when the WantsExternalKubeClientSet interface is implemented by a plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/sync/cond.go

    	// 1. The first comparison is the fast-path. If c has been initialized and not copied, this will return immediately. Otherwise, c is either not initialized, or has been copied.
    	// 2. Ensure c is initialized. If the CAS succeeds, we're done. If it fails, c was either initialized concurrently and we simply lost the race, or c has been copied.
    	// 3. Do step 1 again. Now that c is definitely initialized, if this fails, c was copied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue17588.go

    // because in case of Func.Nname.Type == nil, Decldepth
    // is not initialized in typecheckfunc(). This test
    // produces that case.
    
    package p
    
    type F func(b T) // ERROR "T .*is not a type|expected type"
    
    func T(fn F) {
    	func() {
    		fn(nil) // If Decldepth is not initialized properly, typecheckclosure() Fatals here.
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 18:45:59 UTC 2021
    - 569 bytes
    - Viewed (0)
  4. pkg/volume/metrics_block_linux_test.go

    	actual, err = metrics.GetMetrics()
    	if !volumetest.MetricsEqualIgnoreTimestamp(actual, expected) {
    		t.Errorf("Expected empty Metrics from incorrectly initialized MetricsBlock, actual %v", *actual)
    	}
    	if err == nil {
    		t.Errorf("Expected error when calling GetMetrics on incorrectly initialized MetricsBlock, actual nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_traceback.c

            // This function is called directly from the signal handler.
            // The arguments are passed in registers, so whether msan
            // considers cgoCallers to be initialized depends on whether
            // it considers the appropriate register to be initialized.
            // That can cause false reports in rare cases.
            // Explicitly unpoison the memory to avoid that.
            // See issue #47543 for more details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 20:11:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java

    public class KatakanaConverter implements ReadingConverter {
    
        protected final Transliterator transliterator = Transliterator.getInstance("Hiragana-Katakana");
    
        protected volatile boolean initialized = false;
    
        protected TokenizerFactory tokenizerFactory = null;
    
        public KatakanaConverter() {
            // nothing
        }
    
        public KatakanaConverter(final TokenizerFactory tokenizerFactory) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataDetails.java

         * </ul>
         *
         * Note: files (artifacts) are not initialized automatically and always need to be added through {@link VariantMetadata#withFiles(Action)}.
         *
         * @param name a name for the variant
         * @param base name of the variant (pom or Gradle module metadata) or configuration (ivy.xml metadata) from which the new variant will be initialized
         * @param action the action to populate the variant
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_macros_internal.h

    #ifndef TENSORFLOW_C_C_API_MACROS_INTERNAL_H_
    #define TENSORFLOW_C_C_API_MACROS_INTERNAL_H_
    
    #ifdef __cplusplus
    #include "tensorflow/core/platform/status.h"
    
    // Macro to verify that the field `struct_size` of STRUCT_OBJ is initialized.
    // `struct_size` is used for struct member compatibility check between core TF
    // and plug-ins with the same C API minor version. More info here:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 13 17:40:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Suppliers.java

          // A 2-field variant of Double Checked Locking.
          if (!initialized) {
            synchronized (this) {
              if (!initialized) {
                T t = delegate.get();
                value = t;
                initialized = true;
                return t;
              }
            }
          }
          // This is safe because we checked `initialized`.
          return uncheckedCastNullableTToT(value);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.cc

      // global_min will be updated by std::min(global_min, input_value) so
      // it is initialized with the value numeric_limits<float>::max().
      min_max_statistics_.set_global_min(std::numeric_limits<float>::max());
    
      // global_max will be updated by std::max(global_max, input_value) so it
      // is initialized with the value numeric_limits<float>::lowest().
      min_max_statistics_.set_global_max(std::numeric_limits<float>::lowest());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top