Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 169 for bargs (4.38 sec)

  1. 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)
  2. src/runtime/runtime-gdb_test.go

    		// Until gold and gdb can work together, temporarily load the
    		// python script directly.
    		args = append(args,
    			"-ex", "source "+filepath.Join(testenv.GOROOT(t), "src", "runtime", "runtime-gdb.py"),
    		)
    	} else {
    		args = append(args,
    			"-ex", "info auto-load python-scripts",
    		)
    	}
    	args = append(args,
    		"-ex", "set python print-stack full",
    		"-ex", fmt.Sprintf("br main.go:%d", bp),
    		"-ex", "run",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    )
    
    func addUninstallFlags(cmd *cobra.Command, args *uninstallArgs) {
    	cmd.PersistentFlags().BoolVarP(&args.skipConfirmation, "skip-confirmation", "y", false, skipConfirmationFlagHelpStr)
    	cmd.PersistentFlags().BoolVar(&args.force, "force", false, ForceFlagHelpStr)
    	cmd.PersistentFlags().BoolVar(&args.purge, "purge", false, "Delete all Istio related sources for all versions")
    	cmd.PersistentFlags().StringVarP(&args.revision, "revision", "r", "", revisionFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/database/sql/fakedb_test.go

    		if args[i].Name == name {
    			return args[i].Value
    		}
    	}
    	return nil
    }
    
    // When doInsert is true, add the row to the table.
    // When doInsert is false do prep-work and error checking, but don't
    // actually add the row to the table.
    func (s *fakeStmt) execInsert(args []driver.NamedValue, doInsert bool) (driver.Result, error) {
    	db := s.c.db
    	if len(args) != s.placeholders {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. pkg/scheduler/extender.go

    	var (
    		result extenderv1.ExtenderPreemptionResult
    		args   *extenderv1.ExtenderPreemptionArgs
    	)
    
    	if !h.SupportsPreemption() {
    		return nil, fmt.Errorf("preempt verb is not defined for extender %v but run into ProcessPreemption", h.extenderURL)
    	}
    
    	if h.nodeCacheCapable {
    		// If extender has cached node info, pass NodeNameToMetaVictims in args.
    		nodeNameToMetaVictims := convertToMetaVictims(nodeNameToVictims)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/certs_test.go

    			}
    
    			// exec renew
    			renewCmds := getRenewSubCommands(os.Stdout, tmpDir)
    			args := fmt.Sprintf("--cert-dir=%s", tmpDir)
    			if len(test.Args) > 0 {
    				args = test.Args + " " + args
    			}
    			err := cmdtestutil.RunSubCommand(t, renewCmds, test.command, io.Discard, args)
    			// certs renew doesn't support positional Args
    			if (err != nil) != test.expectedError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            }
            try {
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
                final SetObjectTagsArgs args =
                        SetObjectTagsArgs.builder().bucket(fessConfig.getStorageBucket()).object(objectName).tags(tags).build();
                createClient(fessConfig).setObjectTags(args);
            } catch (final Exception e) {
                throw new StorageException("Failed to update tags for " + objectName, e);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

     # Reset levels of all the loggers to default value (warning)  for a specific Ztunnel pod.
     istioctl ztunnel-config log <pod-name[.namespace]> -r
    `,
    		Aliases: []string{"o"},
    		Args: func(cmd *cobra.Command, args []string) error {
    			if err := common.validateArgs(cmd, args); err != nil {
    				return err
    			}
    			if reset && loggerLevelString != "" {
    				cmd.Println(cmd.UsageString())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top