Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,316 for addUses (0.28 sec)

  1. docs/multi-tenancy/README.md

    ### 1.1 Host Multiple Tenants on a Single Drive
    
    Use the following commands to host 3 tenants on a single drive:
    
    ```sh
    minio server --address :9001 /data/tenant1
    minio server --address :9002 /data/tenant2
    minio server --address :9003 /data/tenant3
    ```
    
    ![Example-1](https://github.com/minio/minio/blob/master/docs/screenshots/Example-1.jpg?raw=true)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/util/network/ip_test.go

    			expected: "",
    			errStr:   "address 2001:db8::20:9080: too many colons in address",
    			lookup:   nil,
    		},
    		{
    			name:     "Colon, but no port",
    			input:    "localhost:",
    			expected: "",
    			errStr:   "",
    			lookup:   nil,
    		},
    		{
    			name:     "Missing port",
    			input:    "localhost",
    			expected: "",
    			errStr:   "address localhost: missing port in address",
    			lookup:   nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  3. src/net/netip/netip.go

    // IPv6Unspecified returns the IPv6 unspecified address "::".
    func IPv6Unspecified() Addr { return Addr{z: z6noz} }
    
    // IPv4Unspecified returns the IPv4 unspecified address "0.0.0.0".
    func IPv4Unspecified() Addr { return AddrFrom4([4]byte{}) }
    
    // AddrFrom4 returns the address of the IPv4 address given by the bytes in addr.
    func AddrFrom4(addr [4]byte) Addr {
    	return Addr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ManagedTypeDslIntegrationTest.groovy

            buildFile << '''
    @Managed interface Person extends Named {
        Address getAddress()
        void setAddress(Address a)
    }
    
    @Managed interface Address {
        String getCity()
        void setCity(String s)
    }
    
    model {
        barry(Person)
        barry {
            address {
                city = 'Melbourne'
            }
        }
    }
    '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        route: Route,
        routes: List<Route>? = null,
      ): ConnectPlan {
        if (route.address.sslSocketFactory == null) {
          if (ConnectionSpec.CLEARTEXT !in route.address.connectionSpecs) {
            throw UnknownServiceException("CLEARTEXT communication not enabled for client")
          }
    
          val host = route.address.url.host
          if (!Platform.get().isCleartextTrafficPermitted(host)) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    // The IP address must be an IPv4 or IPv6 address.
    // May take either a string or IP address as an argument.
    //
    // - containsCIDR: Returns true if a the CIDR contains the given CIDR.
    // The CIDR must be an IPv4 or IPv6 subnet address with a mask.
    // May take either a string or CIDR as an argument.
    //
    // - ip: Returns the IP address representation of the CIDR.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        static HashMap dfsRoots = null;
    
        static synchronized SmbTransport getSmbTransport( UniAddress address, int port ) {
            return getSmbTransport( address, port, LADDR, LPORT, null );
        }
        static synchronized SmbTransport getSmbTransport( UniAddress address, int port,
                                        InetAddress localAddr, int localPort, String hostName ) {
            SmbTransport conn;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_s390x.s

    	MOVD $0, R0         // set function code to 0 (KM-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KM   R2, R4         // cipher message (KM)
    	RET
    
    // func kmcQuery() queryResult
    TEXT ·kmcQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KMC-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KMC  R2, R4         // cipher message with chaining (KMC)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/testing/fake.go

    		if addr == address {
    			// delete address from slice h.localAddresses[devName]
    			h.localAddresses[devName] = append(h.localAddresses[devName][:i], h.localAddresses[devName][i+1:]...)
    			return nil
    		}
    	}
    	// return error message if address is not found in slice h.localAddresses[devName]
    	return fmt.Errorf("address: %s is not found in interface: %s", address, devName)
    }
    
    // EnsureDummyDevice is a mock implementation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/MultiChoiceAddressSerializer.java

                InetAddress address = InetAddress.getByAddress(decoder.readBinary());
                addresses.add(address);
            }
            return new MultiChoiceAddress(canonicalAddress, port, addresses);
        }
    
        @Override
        public void write(Encoder encoder, MultiChoiceAddress address) throws IOException {
            UUID canonicalAddress = address.getCanonicalAddress();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top