Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MYDOMAIN (1.43 sec)

  1. cmd/handler-utils_test.go

    		expectedResource string
    	}{
    		{"/a/b/c", "test.mydomain.com", []string{"mydomain.com"}, "/test/a/b/c"},
    		{"/a/b/c", "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "192.168.1.1:9000", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "test.mydomain.com", []string{"notmydomain.com"}, "/a/b/c"},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses_test.go

    			},
    			true,
    		},
    		// Supporting some advanced cases.
    		{
    			"http://minio{1...64}.mydomain.net/data",
    			endpointSet{
    				[]ellipses.ArgPattern{
    					[]ellipses.Pattern{
    						{
    							Prefix: "http://minio",
    							Suffix: ".mydomain.net/data",
    							Seq:    getSequences(1, 64, 0),
    						},
    					},
    				},
    				nil,
    				[][]uint64{{16, 16, 16, 16}},
    			},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SIDTest.java

            rpcSid.sub_authority = new int[] { 32, 544 };
    
            SID sid = new SID(rpcSid, SID.SID_TYPE_ALIAS, "MYDOMAIN", "MyAlias", false);
            assertEquals("MYDOMAIN\\MyAlias", sid.toDisplayString());
    
            SID domainSid = new SID(rpcSid, SID.SID_TYPE_DOMAIN, "MYDOMAIN", null, true);
            assertEquals("MYDOMAIN", domainSid.toDisplayString());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  4. docs/config/README.md

    Example:
    
    ```sh
    export MINIO_DOMAIN=mydomain.com
    minio server /data
    ```
    
    For advanced use cases `MINIO_DOMAIN` environment variable supports multiple-domains with comma separated values.
    
    ```sh
    export MINIO_DOMAIN=sub1.mydomain.com,sub2.mydomain.com
    minio server /data
    ```
    
    ## Explore Further
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.1K bytes
    - Viewed (1)
  5. docs/federation/lookup/Corefile.example

    . {
      etcd churchofminio.com {
          endpoint http://localhost:2379 http://localhost:4001
          upstream /etc/resolv.conf
      }
      debug
      prometheus
      cache 160 mydomain.com
      loadbalance
      forward . /etc/resolv.conf
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Oct 01 16:53:08 UTC 2019
    - 216 bytes
    - Viewed (0)
  6. README.md

    jcifs.smb.client.useUnicode=true
    jcifs.smb.client.maxMpxCount=10
    ```
    
    ### Usage with Properties
    
    ```java
    Properties props = new Properties();
    props.setProperty("jcifs.smb.client.domain", "MYDOMAIN");
    props.setProperty("jcifs.smb.client.useLeases", "true");
    
    Configuration config = new PropertyConfiguration(props);
    CIFSContext context = new BaseContext(config);
    ```
    
    ## Development
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top