Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,001 for registered_ (0.13 sec)

  1. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

        op_def = op_def_registry.get(op_name)
        if op_def:
          if len(all_dec_args) > 1:
            # Op has been registered, so it is a user error to specify op def.
            raise ValueError('Op has been registered: ' + op_name)
          else:
            # Op has been registered, then we don't need to generate register code.
            return
    
        # Validates the function inputs match what are in the decorator.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
  2. schema/schema_test.go

    		{Name: "Name", DBName: "name", BindNames: []string{"Name"}, DataType: schema.String},
    		{Name: "Birthday", DBName: "birthday", BindNames: []string{"Birthday"}, DataType: schema.Time},
    		{Name: "RegisteredAt", DBName: "registered_at", BindNames: []string{"RegisteredAt"}, DataType: schema.Time},
    		{Name: "DeletedAt", DBName: "deleted_at", BindNames: []string{"DeletedAt"}, DataType: schema.Time},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	// originatingStack holds the stack that registered postStartHooks. This allows us to show a more helpful message
    	// for duplicate registration.
    	originatingStack string
    
    	// done will be closed when the postHook is finished
    	done chan struct{}
    }
    
    type PostStartHookConfigEntry struct {
    	hook PostStartHookFunc
    	// originatingStack holds the stack that registered postStartHooks. This allows us to show a more helpful message
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    				if forget != nil {
    					t.Errorf("unexpected watch registered: %#v", watchTracker.watchCount)
    				}
    				return
    			}
    
    			if forget == nil {
    				t.Errorf("watch should be registered, got: %v", forget)
    				return
    			}
    			if count := watchTracker.watchCount[*testCase.expected]; count != 1 {
    				t.Errorf("unexpected watch registered: %#v", watchTracker.watchCount)
    			}
    			forget()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /*-------------------------------------------------------------------- 
     * Functions for running registered tests and suites.
     *--------------------------------------------------------------------*/
    CU_EXPORT CU_ErrorCode CU_run_all_tests(void);
    /**< 
     *  Runs all tests in all suites registered in the test registry.
     *  The suites are run in the order registered in the test registry.
     *  For each suite, it is first checked to make sure it is active.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * indeed receives file system events from the operating system.
     * This is to avoid trusting locations where OSs silently not send any events, despite watchers being registered.
     *
     * When the hierarchy is first registered via {@link #registerProbe(File)}, we don't yet create the probe.
     * That only happens when the hierarchy is actually read or written by Gradle, in which case
     * {@link #armWatchProbe(File)} is called.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top