Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for SRV (0.03 sec)

  1. pkg/volume/validation/pv_validation_test.go

    				},
    				AccessModes: []api.PersistentVolumeAccessMode{api.ReadWriteOnce},
    				PersistentVolumeSource: api.PersistentVolumeSource{
    					NFS: &api.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    		},
    		"volume with mount option for host path": {
    			isExpectedFailure: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. src/net/resolverdialfunc_test.go

    		}
    	})
    
    	t.Run("LookupSRV", func(t *testing.T) {
    		_, got, err := r.LookupSRV(ctx, "some-service", "tcp", fakeDomain)
    		if err != nil {
    			t.Fatal(err)
    		}
    		want := []*SRV{
    			{
    				Target:   "foo.bar.",
    				Port:     80,
    				Priority: 1,
    				Weight:   2,
    			},
    			{
    				Target:   "bar.baz.",
    				Port:     81,
    				Priority: 2,
    				Weight:   3,
    			},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. internal/config/identity/ldap/help.go

    			Type:        "address",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         SRVRecordName,
    			Description: `DNS SRV record name for LDAP service, if given, must be one of "ldap", "ldaps" or "on"` + defaultHelpPostfix(SRVRecordName),
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   false,
    		},
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/net/lookup_unix.go

    			return cname, err
    		}
    	}
    	return r.goLookupCNAME(ctx, name, order, conf)
    }
    
    func (r *Resolver) lookupSRV(ctx context.Context, service, proto, name string) (string, []*SRV, error) {
    	return r.goLookupSRV(ctx, service, proto, name)
    }
    
    func (r *Resolver) lookupMX(ctx context.Context, name string) ([]*MX, error) {
    	return r.goLookupMX(ctx, name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query_test.go

    	if err := testMain(m); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func testMain(m *testing.M) (err error) {
    	cfg.GOPROXY = "direct"
    	cfg.ModCacheRW = true
    
    	srv, err := vcstest.NewServer()
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if closeErr := srv.Close(); err == nil {
    			err = closeErr
    		}
    	}()
    
    	dir, err := os.MkdirTemp("", "modload-test-")
    	if err != nil {
    		return err
    	}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof_test.go

    	}
    	if !seen(p, "mutexHog1") || !seen(p, "mutexHog2") {
    		t.Errorf("want both mutexHog1 and mutexHog2 in the profile, got %v", p)
    	}
    }
    
    var srv = httptest.NewServer(nil)
    
    func query(endpoint string) (*profile.Profile, error) {
    	url := srv.URL + endpoint
    	r, err := http.Get(url)
    	if err != nil {
    		return nil, fmt.Errorf("failed to fetch %q: %v", url, err)
    	}
    	if r.StatusCode != http.StatusOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. docs/federation/lookup/README.md

    minio server http://rack{5...8}.host{5...8}.domain.com/mnt/export{1...32}
    ```
    
    In this configuration you can see `MINIO_ETCD_ENDPOINTS` points to the etcd backend which manages MinIO's
    `config.json` and bucket DNS SRV records. `MINIO_DOMAIN` indicates the domain suffix for the bucket which
    will be used to resolve bucket through DNS. For example if you have a bucket such as `mybucket`, the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. pkg/volume/util/hostutil/hostutil_linux_test.go

    227 62 253:0 /var/lib/docker/devicemapper /var/lib/docker/devicemapper rw,relatime - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    150 23 1:58 / /media/nfs_vol rw,relatime shared:89 - nfs4 172.18.4.223:/srv/nfs rw,vers=4.0,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=172.18.4.223,local_lock=none,addr=172.18.4.223
    `
    	tempDir, filename, err := writeFile(info)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top