Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 219 for bargs (0.04 sec)

  1. cni/pkg/plugin/plugin.go

    		}
    	}()
    
    	conf, err := parseConfig(args.StdinData)
    	if err != nil {
    		log.Errorf("istio-cni cmdAdd failed to parse config %v %v", string(args.StdinData), err)
    		return err
    	}
    
    	// Create a kube client
    	client, err := newK8sClient(*conf)
    	if err != nil {
    		return err
    	}
    
    	// Actually do the add
    	if err := doAddRun(args, conf, client, IptablesInterceptRuleMgr()); err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildEnvironmentConfigurationConverter.java

            );
        }
    
        public Parameters convertParameters(ParsedCommandLine args, @Nullable File currentDir) throws CommandLineArgumentException {
            InitialProperties initialProperties = initialPropertiesConverter.convert(args);
            BuildLayoutResult buildLayout = buildLayoutConverter.convert(initialProperties, args, currentDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    	"hang":          cmdHang,
    }
    
    func cmdEcho(args ...string) {
    	iargs := []any{}
    	for _, s := range args {
    		iargs = append(iargs, s)
    	}
    	fmt.Println(iargs...)
    }
    
    func cmdEchoEnv(args ...string) {
    	for _, s := range args {
    		fmt.Println(os.Getenv(s))
    	}
    }
    
    func cmdCat(args ...string) {
    	if len(args) == 0 {
    		io.Copy(os.Stdout, os.Stdin)
    		return
    	}
    	exit := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/subst.go

    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubeapiserver/options/authentication_test.go

    	testCases := []struct {
    		name         string
    		args         []string
    		expectConfig kubeauthenticator.Config
    	}{
    		{
    			name: "username prefix is '-'",
    			args: []string{
    				"--oidc-issuer-url=https://testIssuerURL",
    				"--oidc-client-id=testClientID",
    				"--oidc-username-claim=sub",
    				"--oidc-username-prefix=-",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. src/go/types/check.go

    // Otherwise, it is a no-op.
    func (a *action) describef(pos positioner, format string, args ...any) {
    	if debug {
    		a.desc = &actionDesc{pos, format, args}
    	}
    }
    
    // An actionDesc provides information on an action.
    // For debugging only.
    type actionDesc struct {
    	pos    positioner
    	format string
    	args   []any
    }
    
    // A Checker maintains the state of the type checker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

      if (auto barg = mlir::dyn_cast<BlockArgument>(value)) {
        if (func::FuncOp func =
                dyn_cast<func::FuncOp>(barg.getOwner()->getParentOp())) {
          SymbolTable symbol_table(func->getParentOfType<ModuleOp>());
          auto global_tensor = tf_saved_model::LookupBoundInputOfType<
              tf_saved_model::GlobalTensorOp>(func, barg.getArgNumber(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top