Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,548 for _initialized (0.18 sec)

  1. pkg/volume/metrics_statfs_test.go

    		t.Errorf("Expected empty Metrics from incorrectly initialized MetricsStatFS, actual %v", *actual)
    	}
    	if err == nil {
    		t.Errorf("Expected error when calling GetMetrics on incorrectly initialized MetricsStatFS, actual nil")
    	}
    
    	tmpDir, err := utiltesting.MkTmpdir("metric_statfs_test")
    	if err != nil {
    		t.Fatalf("Can't make a tmp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    
    	metrics = NewMetricsStatFS(tmpDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 23:01:59 UTC 2017
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

        }
    
        public void init() {
            if (initialized) {
                return;
            }
            initialized = true;
            initialize(initialSettings);
            new AnalyzerSettings(client, this, settingsIndexName).init();
        }
    
        private void initialize(final Map<String, Object> initialSettings) {
            boolean doIndexCreate = false;
            boolean doCreate = false;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/testfixtures/internal/NativeServicesTestFixture.java

        static NativeServices nativeServices;
        static boolean initialized;
    
        public static synchronized void initialize() {
            if (!initialized) {
                System.setProperty("org.gradle.native", "true");
                File nativeDir = getNativeServicesDir();
                NativeServices.initializeOnDaemon(nativeDir, NativeServicesMode.fromSystemProperties());
                initialized = true;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/admission/initializer_test.go

    func TestCloudConfigAdmissionPlugin(t *testing.T) {
    	cloudConfig := []byte("cloud-configuration")
    	initializer := NewPluginInitializer(cloudConfig)
    	wantsCloudConfigAdmission := &WantsCloudConfigAdmissionPlugin{}
    	initializer.Initialize(wantsCloudConfigAdmission)
    
    	if wantsCloudConfigAdmission.cloudConfig == nil {
    		t.Errorf("Expected cloud config to be initialized but found nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.h

    #include "tensorflow/core/public/session.h"
    
    namespace mlir {
    namespace tf_saved_model {
    // Marks all variables in 'function' whether they are initialized
    // in 'session' or not by setting an attribute named 'is_initialized'
    // on each variable op with value true/false based on variable is initialized
    // in the session or not.
    // If 'session' is NULL the function is no-op.
    // Returns failure in case fetching variables from session failed, success
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. internal/cachevalue/cache.go

    	ttl time.Duration
    
    	opts Opts
    
    	// Once can be used to initialize values for lazy initialization.
    	// Should be set before calling Get().
    	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]{}
    }
    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. test/fixedbugs/bug482.go

    // license that can be found in the LICENSE file.
    
    // Using the same name for a field in a composite literal and for a
    // global variable that depends on the variable being initialized
    // caused gccgo to erroneously report "variable initializer refers to
    // itself".
    
    package p
    
    type S struct {
    	F int
    }
    
    var V = S{F: 1}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 455 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          }
        }
    
        TFConcreteFunction* initialize = nullptr;
        if (resource_revival_state.initialize != nullptr) {
          initialize = revived->concrete_functions.Find(
              resource_revival_state.initialize->node_id);
          if (initialize == nullptr) {
            return absl::FailedPreconditionError(absl::StrCat(
                "'initialize' function with node id ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. src/runtime/cgo/iscgo.go

    // license that can be found in the LICENSE file.
    
    // The runtime package contains an uninitialized definition
    // for runtime·iscgo. Override it to tell the runtime we're here.
    // There are various function pointers that should be set too,
    // but those depend on dynamic linker magic to get initialized
    // correctly, and sometimes they break. This variable is a
    // backup: it depends only on old C style static linking rules.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 646 bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy

            when:
            // start a build with a IsolationMode.PROCESS worker that will initialize the worker classpath cache and wait until the cache was initialized
            def block = server.expectAndBlock("waiting")
            def build = executer.withTasks("doWork").start()
            block.waitForAllPendingCalls()
    
            // simulate another "build" that tries to initialize the cache as well before recognizing that it has been done already
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top