Search Options

Results per page
Sort
Preferred Languages
Advance

Results 951 - 960 of 2,994 for FALSE (0.02 sec)

  1. tests/test_tutorial/test_cookie_param_models/test_tutorial001.py

                                },
                                {
                                    "name": "fatebook_tracker",
                                    "in": "cookie",
                                    "required": False,
                                    "schema": IsDict(
                                        {
                                            "anyOf": [{"type": "string"}, {"type": "null"}],
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. callbacks/helper_test.go

    		t.Fatalf("loaded should be false")
    	}
    
    	if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf(&t1)); !loaded {
    		t.Fatalf("loaded should be true")
    	}
    
    	// t1 already exist but t2 not
    	if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf([]*testM{&t1, &t2, &t3})); loaded {
    		t.Fatalf("loaded should be false")
    	}
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Mar 05 02:22:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

        public String createdTime;
    
        public String versionNo;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
            currentPageNumber = getDefaultCurrentPageNumber();
    
            id = null;
            name = null;
            target = null;
            cronExpression = null;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceRecorder.kt

    import okhttp3.sse.EventSource
    import okhttp3.sse.EventSourceListener
    
    class EventSourceRecorder : EventSourceListener() {
      private val events = LinkedBlockingDeque<Any>()
      private var cancel = false
    
      fun enqueueCancel() {
        cancel = true
      }
    
      override fun onOpen(
        eventSource: EventSource,
        response: Response,
      ) {
        get().log("[ES] onOpen", Platform.INFO, null)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#isResponseAsync()
         */
        @Override
        public boolean isResponseAsync () {
            return false;
        }
    
    
        @Override
        public ServerMessageBlock2Request<?> getNext () {
            return null;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

         * @return <code>true</code> when it is possible to resume the build, <code>false</code> otherwise.
         */
        boolean canResume();
    
        /**
         * Indicate that the build can or cannot be resumed by a second invocation of Maven.
         * @param canResume <code>true</code> when it is possible to resume the build, <code>false</code> otherwise.
         * @see BuildResumptionDataRepository
         * @see #canResume()
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_query_params/test_tutorial006_py310.py

                                "name": "needy",
                                "in": "query",
                            },
                            {
                                "required": False,
                                "schema": {
                                    "title": "Skip",
                                    "type": "integer",
                                    "default": 0,
                                },
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. fastapi/routing.py

        response_model_by_alias: bool = True,
        response_model_exclude_unset: bool = False,
        response_model_exclude_defaults: bool = False,
        response_model_exclude_none: bool = False,
        dependency_overrides_provider: Optional[Any] = None,
        embed_body_fields: bool = False,
    ) -> Callable[[Request], Coroutine[Any, Any, Response]]:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        }
    
        protected void registerSpecifiedProperty(String propertyName) { // basically called by modified property registration
            if (__specifiedProperties != null) { // normally false, true if e.g. setting after selected
                __specifiedProperties.addPropertyName(propertyName);
            }
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/test/java/org/apache/maven/model/building/BuildModelSourceTransformerTest.java

            try {
                if (m1 == m2) {
                    return true;
                }
                if (m1 == null || m2 == null) {
                    return false;
                }
                if (!Objects.equals(m1.getClass(), m2.getClass())) {
                    return false;
                }
                BeanInfo bean = Introspector.getBeanInfo(m1.getClass());
                for (PropertyDescriptor prop : bean.getPropertyDescriptors()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top