Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 997 for registerKey (0.14 sec)

  1. cmd/kubelet/app/options/globalflags_linux.go

    	// e2e node tests rely on this
    	register(global, local, "housekeeping_interval")
    
    	// These flags were implicit from cadvisor, and are mistakes that should be registered deprecated:
    	const deprecated = "This is a cadvisor flag that was mistakenly registered with the Kubelet. Due to legacy concerns, it will follow the standard CLI deprecation timeline before being removed."
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 20:15:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/help.go

    func Help(progname string, analyzers []*analysis.Analyzer, args []string) {
    	// No args: show summary of all analyzers.
    	if len(args) == 0 {
    		fmt.Println(strings.Replace(help, "PROGNAME", progname, -1))
    		fmt.Println("Registered analyzers:")
    		fmt.Println()
    		sort.Slice(analyzers, func(i, j int) bool {
    			return analyzers[i].Name < analyzers[j].Name
    		})
    		for _, a := range analyzers {
    			title := strings.Split(a.Doc, "\n\n")[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 01:33:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.cc

      addTypes<AsyncHandleType>();
      addInterfaces<MlrtInlinerInterface>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.cpp.inc"
          >();
    }
    
    // Parse a type registered to this dialect.
    mlir::Type MlrtDialect::parseType(mlir::DialectAsmParser &parser) const {
      llvm::StringRef keyword;
      if (parser.parseKeyword(&keyword)) return mlir::Type();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

         * @return a {@link Registration} object representing the registered action.
         */
        <P extends FlowParameters> Registration<P> always(
            Class<? extends FlowAction<P>> action,
            Action<? super FlowActionSpec<P>> configure
        );
    
        /**
         * Represents a registered {@link FlowAction dataflow action}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. releasenotes/notes/43951.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 43950
    
    releaseNotes:
    - |
      **Fixed** WorkloadEntry resources never being cleaned up if multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 17 19:42:40 UTC 2023
    - 245 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

         * The tracker itself notifies all the registered listeners.
         *
         * @param entryPoint the key to identify the dynamic call
         */
        void enterDynamicCall(Object entryPoint);
    
        /**
         * Notifies the tracker that the dynamic call ended.
         * The tracker itself notifies all the registered listeners.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/apis/admission/types.go

    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    	// with `kind: {group:"apps", version:"v1", kind:"Deployment"}` (matching the rule the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  8. src/net/http/servemux121.go

    func (mux *serveMux121) findHandler(r *Request) (h Handler, pattern string) {
    
    	// CONNECT requests are not canonicalized.
    	if r.Method == "CONNECT" {
    		// If r.URL.Path is /tree and its handler is not registered,
    		// the /tree -> /tree/ redirect applies to CONNECT requests
    		// but the path canonicalization does not.
    		if u, ok := mux.redirectToPathSlash(r.URL.Host, r.URL.Path, r.URL); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/admission_test.go

    			expectedResult:             false,
    		},
    
    		// scenario 8: RecommendedPluginOrder not equal to registered
    		{
    			setRecommendedPluginsOrder: []string{"pluginA", "pluginB", "pluginC"},
    			expectedResult:             false,
    		},
    
    		// scenario 9: RecommendedPluginOrder equal to registered
    		{
    			setRecommendedPluginsOrder: []string{"pluginA", "pluginB", "pluginC", "pluginD"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/DefaultBuildCacheConfiguration.java

                    LOGGER.debug("Found {} registered for {}", buildCacheServiceFactoryType, registeredConfigurationType);
                    return Cast.uncheckedNonnullCast(buildCacheServiceFactoryType);
                }
            }
            // Couldn't find a registration for the given type
            throw new GradleException("Build cache type '" + configurationType.getName() + "' has not been registered.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 20 12:32:48 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top