Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,064 for addUses (0.18 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonInfo.java

        private final Address address;
        private final DaemonContext context;
        private final byte[] token;
        private final Clock clock;
    
        private State state;
        private long lastBusy;
    
        public DaemonInfo(Address address, DaemonContext context, byte[] token, State state) {
            this(address, context, token, state, Time.clock());
        }
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryContent.java

            }
    
            private Map<Address, DaemonInfo> readInfosMap(Decoder decoder, List<Address> addresses) throws Exception {
                Map<Address, DaemonInfo> infosMap = new LinkedHashMap<Address, DaemonInfo>(addresses.size());
                DaemonInfo.Serializer daemonInfoSerializer = new DaemonInfo.Serializer(addresses);
                for (Address address : addresses) {
                    infosMap.put(address, daemonInfoSerializer.read(decoder));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. tools/packaging/common/envoy_bootstrap.json

                "address": "{{ .localhost }}",
                {{ else }}
                "address": "{{ .wildcard }}",
                {{ end }}
                "port_value": {{ .envoy_prometheus_port }}
              }
            },
            {{- if .dual_stack }}
            "additionalAddresses": [
              {
                "address": {
                  "socket_address": {
                    "protocol": "TCP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

      //
      if (b != address.size) {
        if (compress == -1) return null // Address didn't have compression or enough groups.
        address.copyInto(address, address.size - (b - compress), compress, b)
        address.fill(0.toByte(), compress, compress + (address.size - b))
      }
    
      return address
    }
    
    /** Decodes an IPv4 address suffix of an IPv6 address, like 1111::5555:6666:192.168.0.1. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/SocketInetAddressTest.groovy

        def "has useful display name"() {
            def address = new SocketInetAddress(localhost, 234)
    
            expect:
            address.displayName == "localhost/${localhost.hostAddress}:234"
            address.toString() == "localhost/${localhost.hostAddress}:234"
        }
    
        def "equal when address and port are equal"() {
            def address = new SocketInetAddress(localhost, 234)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/net/sockaddr_posix.go

    // A sockaddr represents a TCP, UDP, IP or Unix network endpoint
    // address that can be converted into a syscall.Sockaddr.
    type sockaddr interface {
    	Addr
    
    	// family returns the platform-dependent address family
    	// identifier.
    	family() int
    
    	// isWildcard reports whether the address is a wildcard
    	// address.
    	isWildcard() bool
    
    	// sockaddr returns the address converted into a syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketInetAddress.java

            @Override
            public void write(Encoder encoder, SocketInetAddress address) throws Exception {
                writeAddress(encoder, address);
                encoder.writeInt(address.port);
            }
    
            private void writeAddress(Encoder encoder, SocketInetAddress address) throws IOException {
                encoder.writeBinary(address.address.getAddress());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryUpdaterTest.groovy

        def "marks idle"() {
            given:
            updater.onStart(address)
    
            when:
            updater.onCompleteActivity()
    
            then:
            1 * registry.markState(address, Idle)
        }
    
        def "ignores empty cache on marking idle"() {
            given:
            updater.onStart(address)
            registry.markState(address, Idle) >> { throw new EmptyRegistryException("") }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

          - suffix: -not-ns-suffix
          - presence: {}
    - rules:
      - matches:
        - notSourceIps:
          - address: AgIDBA==
            length: 32
          - address: BgYAAA==
            length: 16
          sourceIps:
          - address: AQIDBA==
            length: 32
          - address: BQYAAA==
            length: 16
    - rules:
      - matches:
        - destinationPorts:
          - 80
          - 90
          notDestinationPorts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/listener_test.go

    			inFilter: &ListenerFilter{
    				Address: "0.0.0.0",
    			},
    			inListener: &listener.Listener{
    				Address: &core.Address{
    					Address: &core.Address_SocketAddress{
    						SocketAddress: &core.SocketAddress{Address: "1.1.1.1"},
    					},
    				},
    				AdditionalAddresses: []*listener.AdditionalAddress{
    					{
    						Address: &core.Address{
    							Address: &core.Address_SocketAddress{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top