Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for convertCall (0.25 sec)

  1. pkg/controller/replication/conversion.go

    	return convertCall(func(rc *v1.ReplicationController) (*v1.ReplicationController, error) {
    		return c.ReplicationControllerInterface.Create(ctx, rc, opts)
    	}, rs)
    }
    
    func (c conversionClient) Update(ctx context.Context, rs *apps.ReplicaSet, opts metav1.UpdateOptions) (*apps.ReplicaSet, error) {
    	return convertCall(func(rc *v1.ReplicationController) (*v1.ReplicationController, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Converter.java

       * B>`, convertAll could accept and return iterables with nullable element types. In both cases,
       * we've chosen to instead use a signature that benefits existing users -- and is still safe.
       *
       * For convertAll, I haven't looked as closely at *how* much existing users benefit, so we should
       * keep an eye out for problems that new users encounter. Note also that convertAll could support
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Converter.java

       * B>`, convertAll could accept and return iterables with nullable element types. In both cases,
       * we've chosen to instead use a signature that benefits existing users -- and is still safe.
       *
       * For convertAll, I haven't looked as closely at *how* much existing users benefit, so we should
       * keep an eye out for problems that new users encounter. Note also that convertAll could support
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/const.go

    		if okfor[op][t.Kind()] {
    			return t
    		}
    	}
    	return nil
    }
    
    // ConvertVal converts v into a representation appropriate for t. If
    // no such representation exists, it returns constant.MakeUnknown()
    // instead.
    //
    // If explicit is true, then conversions from integer to string are
    // also allowed.
    func ConvertVal(v constant.Value, t *types.Type, explicit bool) constant.Value {
    	switch ct := v.Kind(); ct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top