Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,001 for registered_ (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/archive/zip/register.go

    		panic("decompressor already registered")
    	}
    }
    
    // RegisterCompressor registers custom compressors for a specified method ID.
    // The common methods [Store] and [Deflate] are built in.
    func RegisterCompressor(method uint16, comp Compressor) {
    	if _, dup := compressors.LoadOrStore(method, comp); dup {
    		panic("compressor already registered")
    	}
    }
    
    func compressor(method uint16) Compressor {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_executor.go

    // still succeed if the plugin is already registered, etc.). However,
    // they depend on the plugin handlers (for each plugin type) to implement this
    // behavior.
    //
    // Once an operation completes successfully, the actualStateOfWorld is updated
    // to indicate the plugin is registered/unregistered.
    //
    // Once the operation is started, since it is executed asynchronously,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top