Home
last modified time | relevance | path

Searched refs:gopts (Results 1 – 25 of 263) sorted by relevance

1234567891011

/dports/net/openldap25-server/openldap-2.5.9/libraries/libldap/
H A Dinit.c153 struct ldapoptions *gopts, in ldap_int_conf_option() argument
263 struct ldapoptions *gopts; in ldap_pvt_conf_option() local
268 if (NULL == gopts) { in ldap_pvt_conf_option()
289 struct ldapoptions *gopts; in openldap_ldap_init_w_conf() local
398 struct ldapoptions *gopts, in openldap_ldap_init_w_env() argument
516 if ( gopts == NULL ) in ldap_int_destroy_global_options()
560 gopts->ldo_debug = 0; in ldap_int_initialize_global_options()
588 LDAP_BOOL_ZERO(gopts); in ldap_int_initialize_global_options()
593 gopts->ldo_peer = NULL; in ldap_int_initialize_global_options()
594 gopts->ldo_cldapdn = NULL; in ldap_int_initialize_global_options()
[all …]
/dports/net/openldap25-client/openldap-2.5.9/libraries/libldap/
H A Dinit.c153 struct ldapoptions *gopts, in ldap_int_conf_option() argument
263 struct ldapoptions *gopts; in ldap_pvt_conf_option() local
268 if (NULL == gopts) { in ldap_pvt_conf_option()
289 struct ldapoptions *gopts; in openldap_ldap_init_w_conf() local
398 struct ldapoptions *gopts, in openldap_ldap_init_w_env() argument
516 if ( gopts == NULL ) in ldap_int_destroy_global_options()
560 gopts->ldo_debug = 0; in ldap_int_initialize_global_options()
588 LDAP_BOOL_ZERO(gopts); in ldap_int_initialize_global_options()
593 gopts->ldo_peer = NULL; in ldap_int_initialize_global_options()
594 gopts->ldo_cldapdn = NULL; in ldap_int_initialize_global_options()
[all …]
/dports/net/openldap26-client/openldap-2.6.0/libraries/libldap/
H A Dinit.c153 struct ldapoptions *gopts, in ldap_int_conf_option() argument
263 struct ldapoptions *gopts; in ldap_pvt_conf_option() local
268 if (NULL == gopts) { in ldap_pvt_conf_option()
289 struct ldapoptions *gopts; in openldap_ldap_init_w_conf() local
398 struct ldapoptions *gopts, in openldap_ldap_init_w_env() argument
516 if ( gopts == NULL ) in ldap_int_destroy_global_options()
560 gopts->ldo_debug = 0; in ldap_int_initialize_global_options()
588 LDAP_BOOL_ZERO(gopts); in ldap_int_initialize_global_options()
593 gopts->ldo_peer = NULL; in ldap_int_initialize_global_options()
594 gopts->ldo_cldapdn = NULL; in ldap_int_initialize_global_options()
[all …]
/dports/net/openldap26-server/openldap-2.6.0/libraries/libldap/
H A Dinit.c153 struct ldapoptions *gopts, in ldap_int_conf_option() argument
263 struct ldapoptions *gopts; in ldap_pvt_conf_option() local
268 if (NULL == gopts) { in ldap_pvt_conf_option()
289 struct ldapoptions *gopts; in openldap_ldap_init_w_conf() local
398 struct ldapoptions *gopts, in openldap_ldap_init_w_env() argument
516 if ( gopts == NULL ) in ldap_int_destroy_global_options()
560 gopts->ldo_debug = 0; in ldap_int_initialize_global_options()
588 LDAP_BOOL_ZERO(gopts); in ldap_int_initialize_global_options()
593 gopts->ldo_peer = NULL; in ldap_int_initialize_global_options()
594 gopts->ldo_cldapdn = NULL; in ldap_int_initialize_global_options()
[all …]
/dports/sysutils/restic/restic-0.12.1/cmd/restic/
H A Dintegration_test.go63 term := termstatus.New(gopts.stdout, gopts.stderr, gopts.Quiet)
247 oldJSON := gopts.JSON
248 gopts.stdout = buf
249 gopts.JSON = true
574 gopts := env.gopts
710 testRunCopy(t, env.gopts, env2.gopts)
768 testRunCopy(t, env.gopts, env2.gopts)
779 testRunCopy(t, env.gopts, env2.gopts)
787 testRunCopy(t, env.gopts, env2.gopts)
795 testRunCopy(t, env2.gopts, env.gopts)
[all …]
H A Dcmd_init.go45 func runInit(opts InitOptions, gopts GlobalOptions, args []string) error {
46 chunkerPolynomial, err := maybeReadChunkerPolynomial(opts, gopts)
51 repo, err := ReadRepo(gopts)
56 gopts.password, err = ReadPasswordTwice(gopts,
63 be, err := create(repo, gopts.extended)
65 …return errors.Fatalf("create repository at %s failed: %v\n", location.StripPassword(gopts.Repo), e…
70 err = s.Init(gopts.ctx, gopts.password, chunkerPolynomial)
72 …return errors.Fatalf("create key in repository at %s failed: %v\n", location.StripPassword(gopts.R…
75 …Verbosef("created restic repository %v at %s\n", s.Config().ID[:10], location.StripPassword(gopts.…
84 func maybeReadChunkerPolynomial(opts InitOptions, gopts GlobalOptions) (*chunker.Pol, error) {
[all …]
H A Ddelete.go11 func DeleteFiles(gopts GlobalOptions, repo restic.Repository, fileList restic.IDSet, fileType resti…
12 _ = deleteFiles(gopts, true, repo, fileList, fileType)
17 func DeleteFilesChecked(gopts GlobalOptions, repo restic.Repository, fileList restic.IDSet, fileTyp…
18 return deleteFiles(gopts, false, repo, fileList, fileType)
25 func deleteFiles(gopts GlobalOptions, ignoreError bool, repo restic.Repository, fileList restic.IDS…
28 wg, ctx := errgroup.WithContext(gopts.ctx)
41 bar := newProgressMax(!gopts.JSON && !gopts.Quiet, uint64(totalCount), "files deleted")
49 if !gopts.JSON {
56 if !gopts.JSON && gopts.verbosity > 2 {
H A Dcmd_key.go84 if gopts.JSON {
115 newopts := gopts
124 pw, err := getNewPassword(gopts)
155 pw, err := getNewPassword(gopts)
166 err = repo.Backend().Remove(gopts.ctx, h)
181 ctx, cancel := context.WithCancel(gopts.ctx)
184 repo, err := OpenRepository(gopts)
197 return listKeys(ctx, repo, gopts)
205 return addKey(gopts, repo)
218 return deleteKey(gopts.ctx, repo, id)
[all …]
H A Dcmd_forget.go106 repo, err := OpenRepository(gopts)
111 lock, err := lockRepoExclusive(gopts.ctx, repo)
117 ctx, cancel := context.WithCancel(gopts.ctx)
157 if !gopts.JSON {
163 if !gopts.JSON {
168 if gopts.Verbose >= 1 && !gopts.JSON {
187 if len(keep) != 0 && !gopts.Quiet && !gopts.JSON {
194 if len(remove) != 0 && !gopts.Quiet && !gopts.JSON {
219 if !gopts.JSON {
225 if gopts.JSON && len(jsonGroups) > 0 {
[all …]
/dports/net/openldap24-server/openldap-2.4.59/libraries/libldap/
H A Dinit.c159 struct ldapoptions *gopts; in openldap_ldap_init_w_conf() local
363 struct ldapoptions *gopts, in openldap_ldap_init_w_env() argument
486 if ( gopts == NULL ) in ldap_int_destroy_global_options()
491 if ( gopts->ldo_defludp ) { in ldap_int_destroy_global_options()
493 gopts->ldo_defludp = NULL; in ldap_int_destroy_global_options()
512 ldap_int_tls_destroy( gopts ); in ldap_int_destroy_global_options()
524 gopts->ldo_debug = 0; in ldap_int_initialize_global_options()
549 LDAP_BOOL_ZERO(gopts); in ldap_int_initialize_global_options()
554 gopts->ldo_peer = NULL; in ldap_int_initialize_global_options()
555 gopts->ldo_cldapdn = NULL; in ldap_int_initialize_global_options()
[all …]
/dports/net/openldap24-client/openldap-2.4.59/libraries/libldap/
H A Dinit.c159 struct ldapoptions *gopts; in openldap_ldap_init_w_conf() local
363 struct ldapoptions *gopts, in openldap_ldap_init_w_env() argument
486 if ( gopts == NULL ) in ldap_int_destroy_global_options()
491 if ( gopts->ldo_defludp ) { in ldap_int_destroy_global_options()
493 gopts->ldo_defludp = NULL; in ldap_int_destroy_global_options()
512 ldap_int_tls_destroy( gopts ); in ldap_int_destroy_global_options()
524 gopts->ldo_debug = 0; in ldap_int_initialize_global_options()
549 LDAP_BOOL_ZERO(gopts); in ldap_int_initialize_global_options()
554 gopts->ldo_peer = NULL; in ldap_int_initialize_global_options()
555 gopts->ldo_cldapdn = NULL; in ldap_int_initialize_global_options()
[all …]
/dports/mail/evolution/evolution-3.42.1/src/calendar/gui/
H A De-send-options-utils.c52 gopts = sod->data->gopts; in e_send_options_utils_set_default_data()
73 gopts->reply_enabled = FALSE; in e_send_options_utils_set_default_data()
75 gopts->reply_enabled = TRUE; in e_send_options_utils_set_default_data()
79 gopts->reply_within = i; in e_send_options_utils_set_default_data()
94 gopts->delay_enabled = TRUE; in e_send_options_utils_set_default_data()
113 gopts->expire_after = i; in e_send_options_utils_set_default_data()
193 ESendOptionsGeneral *gopts; in e_send_options_utils_fill_component() local
196 gopts = sod->data->gopts; in e_send_options_utils_fill_component()
206 if (gopts->reply_enabled) { in e_send_options_utils_fill_component()
215 if (gopts->expiration_enabled && gopts->expire_after) { in e_send_options_utils_fill_component()
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/ajstarks/svgo/svgplot/
H A Dmksvgplotdef6 svgplot $gopts -showbg -connect=f -label=showbg $data > f00.svg
7 svgplot $gopts -connect -label=connect $data > f01.svg
8 svgplot $gopts -showbar -connect=f -label=showbar $data > f02.svg
9 svgplot $gopts -area -connect=f -label=area $data > f03.svg
10 svgplot $gopts -showdot -connect=f -label=showdot $data > f04.svg
11 svgplot $gopts -showx -label=showx $data > f05.svg
12 svgplot $gopts -showy -label=showy $data > f06.svg
13 svgplot $gopts -showfile -label=showfile $data > f07.svg
20 svgplot $gopts -label=labelcolor -labelcolor=red $data > f13.svg
21 svgplot $gopts -label=fontsize $data > f14.svg
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/docker/moby-20.10.2/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/docker/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/docker/cli/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/docker/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/net/traefik/traefik-2.6.1/vendor/github.com/moby/buildkit/client/
H A Dclient.go34 gopts := []grpc.DialOption{
46 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
53 gopts = append(gopts, opt)
61 gopts = append(gopts, grpc.WithContextDialer(wd.dialer))
70 gopts = append(gopts, grpc.WithContextDialer(dialFn))
73 gopts = append(gopts, grpc.WithInsecure())
86 gopts = append(gopts, grpc.WithAuthority(addressURL.Host))
92 gopts = append(gopts, grpc.WithUnaryInterceptor(unary[0]))
94 gopts = append(gopts, grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(unary...)))
98 gopts = append(gopts, grpc.WithStreamInterceptor(stream[0]))
[all …]
/dports/emulators/visualboyadvance-m/visualboyadvance-m-VBA-M_Beta_2/src/wx/
H A Dopts.cpp21 opts_t gopts; variable
643 gopts.accels.insert(gopts.accels.end(), in load_opts()
652 gopts.recent->Load(*cfg); in load_opts()
761 for (i = 0; i < gopts.accels.size(); i++) in update_opts()
765 if (i == gopts.accels.size()) in update_opts()
776 if (gopts.accels.size()) in update_opts()
780 i < gopts.accels.end(); i++) in update_opts()
924 i < gopts.accels.end(); i++) in opt_set()
933 gopts.accels.erase(i, j); in opt_set()
948 gopts.accels.insert(gopts.accels.end(), aval.begin(), aval.end()); in opt_set()
[all …]
H A Dpanel.cpp830 if (gopts.fs_mode.w && gopts.fs_mode.h) in ShowFullScreen()
861 if (gopts.fs_mode.w && gopts.fs_mode.h) in ShowFullScreen()
877 gopts.fs_mode.w, gopts.fs_mode.h, gopts.fs_mode.bpp, gopts.fs_mode.refresh); in ShowFullScreen()
891 if (gopts.fs_mode.bpp && bpp == gopts.fs_mode.bpp) in ShowFullScreen()
918 gopts.fs_mode.w, gopts.fs_mode.h, gopts.fs_mode.bpp, gopts.fs_mode.refresh); in ShowFullScreen()
933 gopts.fs_mode.w, gopts.fs_mode.h, gopts.fs_mode.bpp, gopts.fs_mode.refresh); in ShowFullScreen()
938 gopts.fs_mode.w, gopts.fs_mode.h, gopts.fs_mode.bpp, gopts.fs_mode.refresh); in ShowFullScreen()
955 if (gopts.fs_mode.w && gopts.fs_mode.h && fullscreen) in ~GameArea()
1015 if (gopts.fs_mode.w && gopts.fs_mode.h && fullscreen) in OnIdle()
1022 SetSize(gopts.fs_mode.w, gopts.fs_mode.h); in OnIdle()
[all …]
H A Dcmdevents.cpp1831 gopts.sound_vol += 5;
1845 gopts.sound_vol -= 5;
1848 gopts.sound_vol = 0;
2373 ++gopts.filter == FF_PLUGIN && gopts.filter_plugin.empty())
2375 gopts.filter = 0;
2389 gopts.ifb = (gopts.ifb + 1) % 3;
2401 int oqual = gopts.sound_qual, oapi = gopts.audio_api;
2402 bool oupmix = gopts.upmix, ohw = gopts.dsound_hw_accel;
2430 (oapi != gopts.audio_api || odev != gopts.audio_dev ||
2671 if (gopts.statusbar)
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/docker/vendor/github.com/moby/buildkit/client/
H A Dclient.go29 gopts := []grpc.DialOption{}
34 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
41 gopts = append(gopts, opt)
45 gopts = append(gopts,
50 gopts = append(gopts, grpc.WithDialer(wd.dialer))
61 gopts = append(gopts, grpc.WithDialer(dialFn))
64 gopts = append(gopts, grpc.WithInsecure())
69 conn, err := grpc.DialContext(ctx, address, gopts...)
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/docker/vendor/github.com/moby/buildkit/client/
H A Dclient.go29 gopts := []grpc.DialOption{}
34 gopts = append(gopts, grpc.FailOnNonTempDialError(true))
41 gopts = append(gopts, opt)
45 gopts = append(gopts,
50 gopts = append(gopts, grpc.WithDialer(wd.dialer))
61 gopts = append(gopts, grpc.WithDialer(dialFn))
64 gopts = append(gopts, grpc.WithInsecure())
69 conn, err := grpc.DialContext(ctx, address, gopts...)

1234567891011