Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,746 for registry2 (0.91 sec)

  1. pkg/registry/core/rangeallocation/registry.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package rangeallocation
    
    import (
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // RangeRegistry is a registry that can retrieve or persist a RangeAllocation object.
    type RangeRegistry interface {
    	// Get returns the latest allocation, an empty object if no allocation has been made,
    	// or an error if the allocation could not be retrieved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  2. pkg/util/image/registry.go

    	"github.com/google/go-containerregistry/pkg/v1/remote"
    	"github.com/google/go-containerregistry/pkg/v1/remote/transport"
    )
    
    // Exists returns true if the image in the argument exists in a container registry.
    // The argument must be a complete image name, e.g. "gcr.io/istio-release/pilot:1.20.0".
    // If the image does not exist, it returns false and an optional error message, for debug purposes.
    func Exists(image string) (bool, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 16:28:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/registry_test.go

    func isRegistryEqual(registryX, registryY Registry) bool {
    	for name, pluginFactory := range registryY {
    		if val, ok := registryX[name]; ok {
    			p1, _ := pluginFactory(nil, nil, nil)
    			p2, _ := val(nil, nil, nil)
    			if p1.Name() != p2.Name() {
    				// pluginFactory functions are not the same.
    				return false
    			}
    		} else {
    			// registryY contains an entry that is not present in registryX
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. pkg/quota/v1/install/registry.go

    m.nabokikh <******@****.***> 1658448112 +0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/registry.go

    wojtekt <******@****.***> 1631198015 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 09:42:32 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/testdata/registry-secret.yaml

    zirain <******@****.***> 1666116203 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 143 bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/registry-secret.yaml

    Adil Mohamed M P <******@****.***> 1717448525 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 143 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/mlir_graph_optimization_pass.h

      explicit MlirV1CompatGraphOptimizationPass(
          const MlirV1CompatOptimizationPassRegistry* registry =
              &MlirV1CompatOptimizationPassRegistry::Global())
          : registry_(registry) {}
    
      Status Run(const GraphOptimizationPassOptions& options) override;
    
     private:
      const MlirV1CompatOptimizationPassRegistry* registry_;
    };
    
    // -------------------------------------------------------------------------- //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 22:53:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/gradients/tape/tape_context.cc

    namespace tensorflow {
    namespace gradients {
    TapeContext::TapeContext(AbstractContext* c, Tape* tape,
                             const GradientRegistry& registry)
        : AbstractContext(kTape), parent_ctx_(c), tape_(tape), registry_(registry) {
      // TODO(srbs): Make AbstractContext ref counted.
      // parent_ctx_->Ref();
    }
    void TapeContext::Release() {
      // TODO(srbs): Change to Unref()
      delete this;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 23:12:39 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

                             << ", FallbackEnabled: " << num_passes_fallback_enabled
                             << ", Total: " << registry_->passes().size();
      }
    
      GraphDebugInfo debug_info;
      mlir::DialectRegistry registry;
      RegisterDialects(registry);
      mlir::MLIRContext context(registry);
      GraphImportConfig import_config;
      import_config.graph_as_function = true;
      import_config.control_outputs = *control_ret_node_names;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top