Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2851 - 2860 of 3,090 for FALSE (0.02 sec)

  1. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

          if (o instanceof MethodIdentifier) {
            MethodIdentifier ident = (MethodIdentifier) o;
            return name.equals(ident.name) && parameterTypes.equals(ident.parameterTypes);
          }
          return false;
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:16:45 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

        @SuppressWarnings("unchecked")
        Class<WillBeUnloadedException> shadowClass =
            (Class<WillBeUnloadedException>)
                Class.forName(WillBeUnloadedException.class.getName(), false, shadowLoader);
        assertNotSame(shadowClass, WillBeUnloadedException.class);
        getChecked(immediateFuture("foo"), shadowClass);
        return new WeakReference<>(shadowLoader);
      }
    
      /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

        private JLineMessageBuilderFactory messageBuilderFactory = new JLineMessageBuilderFactory();
    
        @BeforeAll
        static void setUp() {
            MessageUtils.setColorEnabled(false);
        }
    
        @AfterAll
        static void tearDown() {
            MessageUtils.setColorEnabled(true);
        }
    
        @BeforeEach
        void beforeEach() {
            logger = mock(Logger.class);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. cmd/server-main.go

    	globalProxyEndpoints = GetProxyEndpoints(globalEndpoints)
    	globalInternodeTransport = NewInternodeHTTPTransport(ctxt.MaxIdleConnsPerHost)()
    	globalRemoteTargetTransport = NewRemoteTargetHTTPTransport(false)()
    	globalForwarder = handlers.NewForwarder(&handlers.Forwarder{
    		PassHost:     true,
    		RoundTripper: globalRemoteTargetTransport,
    		Logger: func(err error) {
    			if err != nil && !errors.Is(err, context.Canceled) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 35.2K bytes
    - Viewed (1)
  5. src/main/java/jcifs/ntlmssp/Type2Message.java

            }
        }
    
    
        private static boolean allZeros8 ( byte[] input, int pos ) {
            for ( int i = pos; i < pos + 8; i++ ) {
                if ( input[ i ] != 0 ) {
                    return false;
                }
            }
            return true;
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            for (MavenProject mavenProject : sortedProjects) {
                if (!topProject.getVersion().equals(mavenProject.getVersion())) {
                    result = false;
                    break;
                }
            }
    
            return result;
        }
    
        private void logReactorSummary(MavenSession session) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java

                        : properties.containsKey("env.MAVEN_HOME") ? Paths.get(properties.get("env.MAVEN_HOME")) : null;
    
                DefaultRepositorySystemSession rsession = new DefaultRepositorySystemSession(h -> false);
                rsession.setSystemProperties(properties);
                rsession.setConfigProperties(properties);
    
                ProtoSession session = new ProtoSession(
                        rsession,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NbtAddress.java

                tc.getNameServiceClient().getNbtAllByAddress(this);
            }
        }
    
    
        void checkNodeStatusData ( CIFSContext tc ) throws UnknownHostException {
            if ( this.isDataFromNodeStatus == false ) {
                tc.getNameServiceClient().getNbtAllByAddress(this);
            }
        }
    
    
        @Override
        public boolean isGroupAddress ( CIFSContext tc ) throws UnknownHostException {
            checkData(tc);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/simple-oauth2.md

    Now use the operation `GET` with the path `/users/me`.
    
    You will get your user's data, like:
    
    ```JSON
    {
      "username": "johndoe",
      "email": "******@****.***",
      "full_name": "John Doe",
      "disabled": false,
      "hashed_password": "fakehashedsecret"
    }
    ```
    
    <img src="/img/tutorial/security/image06.png">
    
    If you click the lock icon and logout, and then try the same operation again, you will get an HTTP 401 error of:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/behind-a-proxy.md

    ///
    
    ### Desabilitar servidor automático de `root_path`
    
    Se você não quiser que o **FastAPI** inclua um servidor automático usando o `root_path`, você pode usar o parâmetro `root_path_in_servers=False`:
    
    {* ../../docs_src/behind_a_proxy/tutorial004.py hl[9] *}
    
    e então ele não será incluído no OpenAPI schema.
    
    ## Montando uma sub-aplicação
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 15:28:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top