Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 997 for registerKey (0.12 sec)

  1. pkg/kubelet/cm/dra/plugin/plugin.go

    	handler.controller = startNodeResourcesController(context.TODO(), kubeClient, getNode)
    
    	return handler
    }
    
    // RegisterPlugin is called when a plugin can be registered.
    func (h *RegistrationHandler) RegisterPlugin(pluginName string, endpoint string, versions []string, pluginClientTimeout *time.Duration) error {
    	klog.InfoS("Register new DRA plugin", "name", pluginName, "endpoint", endpoint)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/printers/tablegenerator.go

    func (h *HumanReadableGenerator) With(fns ...func(PrintHandler)) *HumanReadableGenerator {
    	for _, fn := range fns {
    		fn(h)
    	}
    	return h
    }
    
    // GenerateTable returns a table for the provided object, using the printer registered for that type. It returns
    // a table that includes all of the information requested by options, but will not remove rows or columns. The
    // caller is responsible for applying rules related to filtering rows or columns.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/clusterstore.go

    		for cid, c := range clusters {
    			outCluster := *c
    			out[secret][cid] = &outCluster
    		}
    	}
    	return out
    }
    
    // GetExistingClustersFor return existing clusters registered for the given secret
    func (c *ClusterStore) GetExistingClustersFor(secretKey string) []*Cluster {
    	c.RLock()
    	defer c.RUnlock()
    	out := make([]*Cluster, 0, len(c.remoteClusters[secretKey]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 15:01:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTargetTest.groovy

            1 * softwareTypeRegistry.register(SoftwareTypePlugin.class, null)
    
            and:
            1 * delegate.applyImperative(null, plugin)
        }
    
        def "throws exception when plugins are registered that do not expose software types"() {
            when:
            pluginTarget.applyImperative(null, plugin)
    
            then: // setup property metadata
            2 * inspectionScheme.getMetadataStore() >> metadataStore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pilot/pkg/autoregistration/controller.go

    	// queue contains workloadEntry that need to be unregistered
    	queue controllers.Queue
    	// cleanupLimit rate limit's auto registered WorkloadEntry cleanup calls to k8s
    	cleanupLimit *rate.Limiter
    	// cleanupQueue delays the cleanup of auto registered WorkloadEntries to allow for grace period
    	cleanupQueue queue.Delayed
    
    	adsConnections        *adsConnections
    	lateRegistrationQueue controllers.Queue
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        return "Decompose TF ops with the registered composition library.";
      }
    
      void runOnOperation() override;
    
     private:
      // Apply canonicalization, mainly constant folding, on the function.
      void ApplyCanonicalization();
    
      // Rewrite unregistered TF ops to TFR func call ops. Return failure if all the
      // ops are registered or the compose function doesn't exist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pkg/scheduler/scheduler_test.go

    				},
    				{Resource: framework.Node, ActionType: framework.UpdateNodeTaint}: {
    					{PluginName: fakeNode, QueueingHintFn: defaultQueueingHintFn}, // When Node/Add is registered, Node/UpdateNodeTaint is automatically registered.
    				},
    			},
    		},
    		{
    			name:                "node and pod plugin (featuregate is disabled)",
    			plugins:             []framework.Plugin{&fakeNodePlugin{}, &fakePodPlugin{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/OperationResultPostProcessorFactory.java

    import java.util.List;
    
    @ServiceScope(Scope.Global.class)
    public interface OperationResultPostProcessorFactory {
        /**
         * Creates the post processors relevant for the given subscriptions. The processors are also registered as listeners.
         */
        List<OperationResultPostProcessor> createProcessors(BuildEventSubscriptions subscriptions, BuildEventConsumer consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. docs/security/security_providers.md

    | [Bouncy Castle]  | ✅      |              | [Bouncy Castle] | [Tracking bug.][bug5698]                                     |
    | [Conscrypt]      | ✅      | ✅           | [BoringSSL]     | Activated if Conscrypt is first registered provider.         |
    | [OpenJSSE]       |         | ✅           | [OpenJDK]       | OpenJDK backport.                                            |
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/extending-openapi.md

    As part of the application object creation, a *path operation* for `/openapi.json` (or for whatever you set your `openapi_url`) is registered.
    
    It just returns a JSON response with the result of the application's `.openapi()` method.
    
    By default, what the method `.openapi()` does is check the property `.openapi_schema` to see if it has contents and return them.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top