Search Options

Results per page
Sort
Preferred Languages
Advance

Results 551 - 560 of 813 for friend (0.04 sec)

  1. tensorflow/c/c_api.cc

          metadata.is_list = 1;
          metadata.list_size = 0;
          metadata.total_size = -1;
    #define LIST_CASE(field, attr_type, ...)              \
      if (attr->list().field##_size() > 0) {              \
        metadata.type = attr_type;                        \
        metadata.list_size = attr->list().field##_size(); \
        __VA_ARGS__;                                      \
        break;                                            \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue May 13 06:30:43 UTC 2025
    - 102.3K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/query-params.md

    ```
    
    ...🍡 ❎ βœ” πŸ”’ `needy`, πŸ‘† πŸ”œ πŸ‘€ ❌ πŸ’–:
    
    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "query",
                    "needy"
                ],
                "msg": "field required",
                "type": "value_error.missing"
            }
        ]
    }
    ```
    
    `needy` 🚚 πŸ”’, πŸ‘† πŸ”œ πŸ’ͺ βš’ ⚫️ πŸ“›:
    
    ```
    http://127.0.0.1:8000/items/foo-item?needy=sooooneedy
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    ### API Change
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/ast.go

    	case nil:
    
    	// These are ordered and grouped to match ../../go/ast/ast.go
    	case *ast.Field:
    		if len(n.Names) == 0 && context == ctxField {
    			f.walk(&n.Type, ctxEmbedType, visit)
    		} else {
    			f.walk(&n.Type, ctxType, visit)
    		}
    	case *ast.FieldList:
    		for _, field := range n.List {
    			f.walk(field, context, visit)
    		}
    	case *ast.BadExpr:
    	case *ast.Ident:
    	case *ast.Ellipsis:
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Oct 14 15:47:06 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

                addFieldToSource(sourceMap, "x121Address", x121Address);
            }
            return sourceMap;
        }
    
        protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) {
            sourceMap.put(field, value);
        }
    
        // ===================================================================================
        //                                                                      Basic Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            byte[] buffer = new byte[1024];
            int bytesWritten = request.writeBytesWireFormat(buffer, 0);
    
            assertTrue(bytesWritten > 0);
    
            // Verify structure size field
            assertEquals(57, buffer[0]);
            assertEquals(0, buffer[1]);
        }
    
        @Test
        @DisplayName("Test writeBytesWireFormat with long path")
        void testWriteBytesWireFormatLongPath() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/common/help_ko.jsp

    		기본으둜 μ‚¬μš© κ°€λŠ₯ν•œ ν•„λ“œλŠ” url, host, site, title content,
    		content_length, last_modified 및 mimetypeμž…λ‹ˆλ‹€.
    		μ„€μ •μ—μ„œ μ§€μ •ν•˜λŠ” ν•„λ“œλŠ” λ³€κ²½ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    	</dd>
    	<dt>μ •λ ¬</dt>
    	<dd>
    		sort μ—°μ‚°μžλŠ” μ§€μ •λœ ν•„λ“œ μ΄λ¦„μœΌλ‘œ λ¬Έμ„œλ₯Ό μ •λ ¬ν•©λ‹ˆλ‹€.
    		sort μ—°μ‚°μžμ˜ μ‚¬μš© 방법은 sort:&lt;field&gt;.&lt;order&gt;μž…λ‹ˆλ‹€.
    		&lt;order&gt; λŠ” asc λ˜λŠ” desc μ˜€λ¦„μ°¨μˆœ Β· λ‚΄λ¦Όμ°¨μˆœμ„ μ§€μ •ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    		예λ₯Ό λ“€μ–΄, Fessλ₯Ό ν¬ν•¨ν•œ λ¬Έμ„œ 크기의 λ‚΄λ¦Όμ°¨μˆœμœΌλ‘œ μ •λ ¬ν•˜λ €λ©΄ λ‹€μŒκ³Ό 같이 μž…λ ₯ν•©λ‹ˆλ‹€.
    		<pre>Fess sort:content_length.desc</pre>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialVersionUID() {
            // Test that the exception has a serialVersionUID field
            FessUserNotFoundException exception1 = new FessUserNotFoundException("user1");
            FessUserNotFoundException exception2 = new FessUserNotFoundException("user2");
    
            // Both instances should be of the same class
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            assertTrue(result2.startsWith("FessUserTimeZoneProcessProvider:{"));
    
            // But different hash codes
            assertFalse(result1.equals(result2));
        }
    
        // Test static field initialization
        public void test_centralTimeZone_initialization() {
            // Verify that centralTimeZone is properly initialized
            assertNotNull(FessUserTimeZoneProcessProvider.centralTimeZone);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultWagonManager extends org.apache.maven.repository.legacy.DefaultWagonManager
            implements WagonManager {
    
        // NOTE: This must use a different field name than in the super class or IoC has no chance to inject the loggers
        @Inject
        private Logger log;
    
        @Inject
        private LegacySupport legacySupport;
    
        @Inject
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top