Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 2,686 for Created (0.2 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        }
    
        /**
         * Set the create contexts for this request
         * @param contexts the create contexts to set
         */
        public void setCreateContexts(CreateContextRequest[] contexts) {
            this.createContexts = contexts;
        }
    
        /**
         * Add a create context to this request
         * @param context the create context to add
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            assertEquals(2, sidArray.sids.length);
            assertNotNull(sidArray.sids[0]);
            assertNotNull(sidArray.sids[1]);
            // Cannot verify decode on non-mock objects - they are created by decode
            // Just verify they were created
            assertNotNull(sidArray.sids[0]);
            assertNotNull(sidArray.sids[1]);
        }
    
        @Test
        void testLsarSidArrayDecodeNullSids() throws NdrException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  3. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ExtensibleEnumProvider.java

         * that should be registered. The returned collection should contain all the enum values
         * that this provider wants to contribute.
         * <p>
         * The values returned by this method should be created using the appropriate factory methods
         * for the specific enum type, such as {@code language()}, {@code projectScope()}, or
         * {@code pathScope()}.
         *
         * @return a non-null collection of enum instances to register
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. docs/ko/docs/advanced/additional-status-codes.md

    예를 들어 항목을 업데이트할 수 있는 *경로 작업*이 있고 성공 시 200 “OK”의 HTTP 상태 코드를 반환한다고 가정해 보겠습니다.
    
    하지만 새로운 항목을 허용하기를 원할 것입니다. 항목이 이전에 존재하지 않았다면 이를 생성하고 HTTP 상태 코드 201 "Created"를 반환합니다.
    
    이를 위해서는 `JSONResponse`를 가져와서 원하는 `status_code`를 설정하여 콘텐츠를 직접 반환합니다:
    
    {* ../../docs_src/additional_status_codes/tutorial001_an_py310.py hl[4,25] *}
    
    /// warning | 경고
    
    위의 예제처럼 `Response`를 직접 반환하면 바로 반환됩니다.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 09 12:22:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        public String maxSize;
    
        /** The boost of the key match. */
        public String boost;
    
        /** The creator of the key match. */
        public String createdBy;
    
        /** The created time of the key match. */
        public String createdTime;
    
        /** The version number of the key match. */
        public String versionNo;
    
        /**
         * Clears the pager fields.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

          <![CDATA[
    <groupId>project.group</groupId>
    <artifactId>project-artifact</artifactId>
    <version>0.0.0.0</version>
    <packaging>type</packaging>
        ]]></configuration>
        <description> This is the Artifact instance created from the essential project
          attributes: groupId, artifactId, version, and packaging (with a default packaging of
          'jar').
        </description>
      </expression>
      <expression>
        <syntax>project.parent</syntax>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tests/create_test.go

    )
    
    func TestCreate(t *testing.T) {
    	u1 := *GetUser("create", Config{})
    
    	if results := DB.Create(&u1); results.Error != nil {
    		t.Fatalf("errors happened when create: %v", results.Error)
    	} else if results.RowsAffected != 1 {
    		t.Fatalf("rows affected expects: %v, got %v", 1, results.RowsAffected)
    	}
    
    	if u1.ID == 0 {
    		t.Errorf("user's primary key should has value after create, got : %v", u1.ID)
    	}
    
    	if u1.CreatedAt.IsZero() {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 09:55:20 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenAliasTest.java

            // However, the primary responsibility of MsrpcSamrOpenAlias's constructor is to call the super constructor
            // and set its own specific fields (ptype, flags).
            // The fact that the object is successfully created implies the super constructor was called.
        }
    
        // Additional tests could be added here if MsrpcSamrOpenAlias had more methods or complex logic.
        // For this specific class, the constructor is the main point of logic.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableCollection.java

     *   <li><b>Null-hostility.</b> This collection will never contain a null element.
     *   <li><b>Deterministic iteration.</b> The iteration order is always well-defined, depending on
     *       how the collection was created. Typically this is insertion order unless an explicit
     *       ordering is otherwise specified (e.g. {@link ImmutableSortedSet#naturalOrder}). See the
     *       appropriate factory method for details. View collections such as {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ForwardingObject.java

     * preserve equality behavior, or override {@code equals} directly.
     *
     * <p>The {@code toString} method is forwarded to the delegate. Although this class does not
     * implement {@link Serializable}, a serializable subclass may be created since this class has a
     * parameter-less constructor.
     *
     * @author Mike Bostock
     * @since 2.0
     */
    @GwtCompatible
    public abstract class ForwardingObject {
    
      /** Constructor for use by subclasses. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top