Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,081 for initialize_ (0.18 sec)

  1. cmd/bucket-metadata-sys.go

    				wait() // wait to proceed to next entry.
    			}
    		}
    		t.Reset(bucketMetadataRefresh)
    	}
    }
    
    // Initialized indicates if bucket metadata sys is initialized atleast once.
    func (sys *BucketMetadataSys) Initialized() bool {
    	sys.RLock()
    	defer sys.RUnlock()
    
    	return sys.initialized
    }
    
    // Loads bucket metadata for all buckets into BucketMetadataSys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Reflection.java

      }
    
      /**
       * Ensures that the given classes are initialized, as described in <a
       * href="http://java.sun.com/docs/books/jls/third_edition/html/execution.html#12.4.2">JLS Section
       * 12.4.2</a>.
       *
       * <p>WARNING: Normally it's a smell if a class needs to be explicitly initialized, because static
       * state hurts system maintainability and testability. In cases when you have no choice while
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Reflection.java

      }
    
      /**
       * Ensures that the given classes are initialized, as described in <a
       * href="http://java.sun.com/docs/books/jls/third_edition/html/execution.html#12.4.2">JLS Section
       * 12.4.2</a>.
       *
       * <p>WARNING: Normally it's a smell if a class needs to be explicitly initialized, because static
       * state hurts system maintainability and testability. In cases when you have no choice while
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    		x += n
    	}
    	return b.clearExtra() | counterStateBits(x)<<stateExtraShift
    }
    
    // New returns a counter with the given name.
    // New can be called in global initializers and will be compiled down to
    // linker-initialized data. That is, calling New to initialize a global
    // has no cost at program startup.
    func New(name string) *Counter {
    	// Note: not calling defaultFile.New in order to keep this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessTest.groovy

            then:
            1 * initAction.requiresInitialization(lock) >> false
    
            then:
            1 * onOpenAction.accept(lock)
            0 * _
        }
    
        def "acquires lock then initializes cache and runs handler action on open"() {
            def initialLock = Mock(FileLock)
            def exclusiveLock = Mock(FileLock)
            def sharedLock = Mock(FileLock)
    
            when:
            cacheAccess.open()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/README.md

    *   Call `tensorflow::port::InitMain` and parse any flags
    *   Initialize config objects (e.g. `PathConfig`, `LangConfig` from flags)
    *   Initialize a new `LangGenerator` from these config objects
    *   Call this generator to create/write `SourceCode` to a file
    
    In class `LangGenerator` in *lang_generator.cc*:
    
    *   Initialize a new `Controller` from the config objects
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K 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. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    	}
    	if !found {
    		return nil, fmt.Errorf("unknown admission plugin: %s", name)
    	}
    
    	pluginInitializer.Initialize(plugin)
    	// ensure that plugins have been properly initialized
    	if err := ValidateInitialization(plugin); err != nil {
    		return nil, fmt.Errorf("failed to initialize admission plugin %q: %v", name, err)
    	}
    
    	return plugin, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/workcmd/init.go

    	"cmd/go/internal/gover"
    	"cmd/go/internal/modload"
    
    	"golang.org/x/mod/modfile"
    )
    
    var cmdInit = &base.Command{
    	UsageLine: "go work init [moddirs]",
    	Short:     "initialize workspace file",
    	Long: `Init initializes and writes a new go.work file in the
    current directory, in effect creating a new workspace at the current
    directory.
    
    go work init optionally accepts paths to the workspace modules as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirEnumEntryInitializerSymbol.kt

        init {
            check(firSymbol.source?.kind == KtFakeSourceElementKind.EnumInitializer) {
                "Expected the `firSymbol` of ${KaFirEnumEntryInitializerSymbol::class.simpleName} to have an enum initializer fake source kind."
            }
        }
    
        /**
         * [KaFirEnumEntryInitializerSymbol] is the required return type instead of [KaEnumEntryInitializerSymbol] to fulfill return type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top