Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for bargs (0.11 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml

                    matchLabelsKey: matchLabelsValue
                namespaces:
                - namespacesValue
                topologyKey: topologyKeyValue
          automountServiceAccountToken: true
          containers:
          - args:
            - argsValue
            command:
            - commandValue
            env:
            - name: nameValue
              value: valueValue
              valueFrom:
                configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml

                    matchLabelsKey: matchLabelsValue
                namespaces:
                - namespacesValue
                topologyKey: topologyKeyValue
          automountServiceAccountToken: true
          containers:
          - args:
            - argsValue
            command:
            - commandValue
            env:
            - name: nameValue
              value: valueValue
              valueFrom:
                configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml

                    matchLabelsKey: matchLabelsValue
                namespaces:
                - namespacesValue
                topologyKey: topologyKeyValue
          automountServiceAccountToken: true
          containers:
          - args:
            - argsValue
            command:
            - commandValue
            env:
            - name: nameValue
              value: valueValue
              valueFrom:
                configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. internal/grid/manager.go

    		res = append(res, k)
    	}
    	return res
    }
    
    // debugMsg should *only* be used by tests.
    //
    //lint:ignore U1000 This is used by tests.
    func (m *Manager) debugMsg(d debugMsg, args ...any) {
    	for _, c := range m.targets {
    		c.debugMsg(d, args...)
    	}
    }
    
    // ConnStats returns the connection statistics for all connections.
    func (m *Manager) ConnStats() madmin.RPCMetrics {
    	var res madmin.RPCMetrics
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/database/sql/convert.go

    //
    // The statement ds may be nil, if no statement is available.
    //
    // ci must be locked.
    func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []any) ([]driver.NamedValue, error) {
    	nvargs := make([]driver.NamedValue, len(args))
    
    	// -1 means the driver doesn't know how to count the number of
    	// placeholders, so we won't sanity check input here and instead let the
    	// driver deal with errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    	var b bytes.Buffer
    	symidx := int32(len(ctxt.defs))
    	for _, s := range ctxt.Text {
    		fn := s.Func()
    		if fn == nil {
    			continue
    		}
    		o := goobj.FuncInfo{
    			Args:      uint32(fn.Args),
    			Locals:    uint32(fn.Locals),
    			FuncID:    fn.FuncID,
    			FuncFlag:  fn.FuncFlag,
    			StartLine: fn.StartLine,
    		}
    		pc := &fn.Pcln
    		i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// Fork+exec the telemetry child.
    	exe, err := os.Executable()
    	if err != nil {
    		// There was an error getting os.Executable. It's possible
    		// for this to happen on AIX if os.Args[0] is not an absolute
    		// path and we can't find os.Args[0] in PATH.
    		log.Printf("failed to start telemetry sidecar: os.Executable: %v", err)
    		return
    	}
    	cmd := exec.Command(exe, "** telemetry **") // this unused arg is just for ps(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/internal/trace/testtrace/validation.go

    		}
    		i++
    		return true
    	})
    }
    
    type errAccumulator struct {
    	errs []error
    }
    
    func (e *errAccumulator) Errorf(f string, args ...any) {
    	e.errs = append(e.errs, fmt.Errorf(f, args...))
    }
    
    func (e *errAccumulator) Errors() error {
    	return errors.Join(e.errs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. cmd/admin-handlers-idp-ldap.go

    	// If listing is requested for a specific user (who is not the request
    	// sender), check that the user has permissions.
    	if userDN != "" && userDN != cred.ParentUser {
    		if !globalIAMSys.IsAllowed(policy.Args{
    			AccountName:     cred.AccessKey,
    			Groups:          cred.Groups,
    			Action:          policy.ListServiceAccountsAdminAction,
    			ConditionValues: getConditionValues(r, "", cred),
    			IsOwner:         owner,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/net/smtp/smtp_test.go

    	if err := c.ehlo(); err == nil {
    		t.Fatalf("Expected first EHLO to fail")
    	}
    	if err := c.ehlo(); err != nil {
    		t.Fatalf("Second EHLO failed: %s", err)
    	}
    
    	c.didHello = true
    	if ok, args := c.Extension("aUtH"); !ok || args != "LOGIN PLAIN" {
    		t.Fatalf("Expected AUTH supported")
    	}
    	if ok, _ := c.Extension("DSN"); ok {
    		t.Fatalf("Shouldn't support DSN")
    	}
    
    	if err := c.Mail("******@****.***"); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top