Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,176 for bework (0.2 sec)

  1. maven-core/src/test/resources/projects/transform/before.pom

    <?xml version="1.0" encoding="UTF-8"?>
    
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at
    
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 07:51:37 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  2. android-test-app/src/main/res/xml/network_security_config.xml

    <?xml version="1.0" encoding="utf-8"?>
    <network-security-config>
      <base-config cleartextTrafficPermitted="false">
      </base-config>
    XML
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Dec 23 14:46:51 GMT 2023
    - 159 bytes
    - Viewed (0)
  3. android-test/src/main/res/xml/network_security_config.xml

    <?xml version="1.0" encoding="utf-8"?>
    <network-security-config>
      <base-config cleartextTrafficPermitted="false">
      </base-config>
    XML
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jul 16 22:15:20 GMT 2019
    - 158 bytes
    - Viewed (0)
  4. regression-test/src/main/res/xml/network_security_config.xml

    <?xml version="1.0" encoding="utf-8"?>
    <network-security-config>
      <base-config cleartextTrafficPermitted="false">
      </base-config>
    XML
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Fri Nov 13 07:09:56 GMT 2020
    - 158 bytes
    - Viewed (0)
  5. src/test/resources/before_script.sh

    Shinsuke Sugaya <******@****.***> 1707535177 +0900
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 863 bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/network-attachment-definition.yaml

    Jonh Wendell <******@****.***> 1694535031 -0400
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Sep 12 16:10:31 GMT 2023
    - 217 bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-network.go

    	internodeRecvBytesTotalMD = NewCounterMD(internodeRecvBytesTotal,
    		"Total number of bytes received from other peer nodes")
    )
    
    // loadNetworkInternodeMetrics - reads internode network metrics.
    //
    // This is a `MetricsLoaderFn`.
    func loadNetworkInternodeMetrics(ctx context.Context, m MetricValues, _ *metricsCache) error {
    	connStats := globalConnStats.toServerConnStats()
    	rpcStats := rest.GetRPCStats()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java

        network.addEdge(N1, N1, E11);
        network.addEdge(N1, N1, E11_A);
        assertThat(network.edgesConnecting(N1, N1)).containsExactly(E11, E11_A);
      }
    
      private static class NetworkForTest<N, E> extends AbstractNetwork<N, E> {
        private final Network<N, E> network;
    
        NetworkForTest(Network<N, E> network) {
          this.network = network;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  9. docs/contribute/concurrency.md

    #### Blocking APIs
    
    Blocking APIs are convenient because you get top-to-bottom procedural code without indirection. Network calls work like regular method calls: ask for data and it is returned. If the request fails, you get a stacktrace right where the call was made.
    
    Blocking APIs may be inefficient because you hold a thread idle while waiting on the network. Threads are expensive because they have both a memory overhead and a context-switching overhead.
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java

        network.addEdge(N1, N1, E11);
        network.addEdge(N1, N1, E11_A);
        assertThat(network.edgesConnecting(N1, N1)).containsExactly(E11, E11_A);
      }
    
      private static class NetworkForTest<N, E> extends AbstractNetwork<N, E> {
        private final Network<N, E> network;
    
        NetworkForTest(Network<N, E> network) {
          this.network = network;
        }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.4K bytes
    - Viewed (0)
Back to top