Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,000 for registry1 (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/cc/framework/grad_op_registry.h

      /// the gradient function for 'op' exists in the registry.
      /// Note that 'func' can be null for ops that have registered no-gradient with
      /// the registry.
      /// Returns error status otherwise.
      Status Lookup(const string& op, GradFunc* func) const;
    
      /// Returns a pointer to the global gradient function registry.
      static GradOpRegistry* Global();
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:33:58 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/registryredirector/registryredirector.go

    	// Please refer to registry_redirector_server.yaml for the exact default image.
    	Image string
    }
    
    // New returns a new instance of registry redirector.
    func New(ctx resource.Context, c Config) (i Instance, err error) {
    	return newKube(ctx, c)
    }
    
    // NewOrFail returns a new registry redirector instance or fails test.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 04:46:04 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top