Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for bargs (1 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

            then:
            outputContains("foo.value = 2")
            outputContains("bar.value = 2")
        }
    
        private void configurationCacheRun(String... args) {
            run(AbstractConfigurationCacheIntegrationTest.ENABLE_CLI_OPT, *args)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. internal/config/policy/plugin/config.go

    	}
    	if err = args.Validate(); err != nil {
    		return args, err
    	}
    	return args, nil
    }
    
    // New - initializes Authorization Management Plugin.
    func New(args Args) *AuthZPlugin {
    	if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" {
    		return nil
    	}
    	return &AuthZPlugin{
    		args:   args,
    		client: &http.Client{Transport: args.Transport},
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. cmd/config-migrate.go

    	}
    	for k, args := range cfg.Notify.NATS {
    		notify.SetNotifyNATS(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.NSQ {
    		notify.SetNotifyNSQ(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.PostgreSQL {
    		notify.SetNotifyPostgres(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Redis {
    		notify.SetNotifyRedis(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Webhook {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. internal/event/target/redis.go

    			conn, err := redis.Dial("tcp", args.Addr.String())
    			if err != nil {
    				return nil, err
    			}
    
    			if args.Password != "" {
    				if args.User != "" {
    					if _, err = conn.Do("AUTH", args.User, args.Password); err != nil {
    						conn.Close()
    						return nil, err
    					}
    				} else {
    					if _, err = conn.Do("AUTH", args.Password); err != nil {
    						conn.Close()
    						return nil, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	if in == nil {
    		return nil
    	}
    	args := make([]kubeadm.Arg, 0, len(in))
    	for k, v := range in {
    		args = append(args, kubeadm.Arg{Name: k, Value: v})
    	}
    	sort.Slice(args, func(i, j int) bool {
    		if args[i].Name == args[j].Name {
    			return args[i].Value < args[j].Value
    		}
    		return args[i].Name < args[j].Name
    	})
    	return args
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/nm/nm.go

    		os.Exit(2)
    	}
    
    	args := flag.Args()
    	filePrefix = len(args) > 1
    	if len(args) == 0 {
    		flag.Usage()
    	}
    
    	for _, file := range args {
    		nm(file)
    	}
    
    	os.Exit(exitCode)
    }
    
    var exitCode = 0
    
    func errorf(format string, args ...any) {
    	log.Printf(format, args...)
    	exitCode = 1
    }
    
    func nm(file string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/export_test.go

    }
    
    func (d TestFrontend) Logf(msg string, args ...interface{}) { d.t.Logf(msg, args...) }
    func (d TestFrontend) Log() bool                            { return true }
    
    func (d TestFrontend) Fatalf(_ src.XPos, msg string, args ...interface{}) { d.t.Fatalf(msg, args...) }
    func (d TestFrontend) Warnl(_ src.XPos, msg string, args ...interface{})  { d.t.Logf(msg, args...) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tests/integration/ambient/wasm_test.go

    }
    
    func applyWasmConfig(ctx framework.TestContext, ns string, args map[string]any, path string) error {
    	return ctx.ConfigIstio().EvalFile(ns, args, path).Apply()
    }
    
    func installWasmExtension(ctx framework.TestContext, pluginName, wasmModuleURL, imagePullPolicy, pluginVersion, targetType, targetName, path string) error {
    	kind, group, name := getTargetRefValues(targetType, targetName)
    
    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway_test.go

    	}
    }
    
    func TestParseGatewayRDSRouteName(t *testing.T) {
    	type args struct {
    		name string
    	}
    	tests := []struct {
    		name           string
    		args           args
    		wantPortNumber int
    		wantPortName   string
    		wantGateway    string
    	}{
    		{
    			name:           "invalid rds name",
    			args:           args{"https.scooby.dooby.doo"},
    			wantPortNumber: 0,
    			wantPortName:   "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/main/java/org/gradle/launcher/bootstrap/ProcessBootstrap.java

         */
        public static void run(String mainClassName, String[] args) {
            try {
                runNoExit(mainClassName, args);
                System.exit(0);
            } catch (Throwable throwable) {
                throwable.printStackTrace();
                System.exit(1);
            }
        }
    
        private static void runNoExit(String mainClassName, String[] args) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top