Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for keyFor (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExpectedDeprecationWarning.java

    /**
     * Represents a deprecation warning message that is expected to be emitted by a test.
     * <p>
     * This class exists to support the detection of deprecation warnings that span multiple lines,
     * which may include the keyword "{@code deprecated}" multiple times.
     */
    public abstract class ExpectedDeprecationWarning {
    
        private final int numLines;
    
        public ExpectedDeprecationWarning(int numLines) {
            this.numLines = numLines;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/RoleDbm.java

        //                                                                         ===========
        protected final ColumnInfo _columnName = cci("name", "name", null, null, String.class, "name", null, false, false, false, "keyword", 0,
                0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnName() {
            return _columnName;
        }
    
        protected List<ColumnInfo> ccil() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/GroupDbm.java

                false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnName = cci("name", "name", null, null, String.class, "name", null, false, false, false, "keyword", 0,
                0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnGidNumber() {
            return _columnGidNumber;
        }
    
        public ColumnInfo columnName() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // This attribute will be set for functions created by this pass.
    // Presence of this attribute will mark the function as quantization target.
    inline constexpr StringRef kFusedFunctionAttr = "tf_quant.composite_function";
    // The keyword to detect if this is a `NullAttribute`.
    inline constexpr StringRef kNullAttributeValue = "N/A";
    
    // Prefixes attached to lifted functions.
    constexpr StringRef kQuantizedFuncPrefix = "quantized_";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/runtime/symtabinl.go

    	nameOff   int32 // offset into pclntab for name of called function
    	parentPc  int32 // position of an instruction whose source position is the call site (offset from entry)
    	startLine int32 // line number of start of function (func keyword/TEXT directive)
    }
    
    // An inlineUnwinder iterates over the stack of inlined calls at a PC by
    // decoding the inline table. The last step of iteration is always the frame of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

        SE_EventStatus event_status =
            stream_executor_->get_event_status(device_, event_handle_);
    
        switch (event_status) {
          case SE_EVENT_ERROR:
            return Event::Status::kError;
          case SE_EVENT_PENDING:
            return Event::Status::kPending;
          case SE_EVENT_COMPLETE:
            return Event::Status::kComplete;
          default:
            return Event::Status::kUnknown;
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "a_a", canSkip: true},
    		{unescaped: "a_a_a", canSkip: true},
    		{unescaped: "@", invalidCharFound: true},
    		{unescaped: "👑", invalidCharFound: true},
    		// if escape keyword is detected before invalid character, invalidCharFound
    		{unescaped: "/👑", canSkip: false},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.unescaped, func(t *testing.T) {
    			escapeCheck := skipRegexCheck(tc.unescaped)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/background-tasks.md

    ```
    
    `.add_task()` receives as arguments:
    
    * A task function to be run in the background (`write_notification`).
    * Any sequence of arguments that should be passed to the task function in order (`email`).
    * Any keyword arguments that should be passed to the task function (`message="some notification"`).
    
    ## Dependency Injection
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/memory/store.go

    	"istio.io/istio/pkg/config/schema/collection"
    )
    
    var (
    	errNotFound      = errors.New("item not found")
    	errAlreadyExists = errors.New("item already exists")
    	// TODO: can we make this compatible with kerror.IsConflict without imports the library?
    	errConflict = errors.New("conflicting resource version, try again")
    )
    
    const ResourceVersion string = "ResourceVersion"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. docs/select/README.md

    - AWS S3's [reserved keywords](https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference-keyword-list.html) list is not yet respected.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
Back to top