Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 342 for getStep (0.22 sec)

  1. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    	return kubeadmutil.MarshalToYaml(obj, gv)
    }
    
    // DryRunClientOptions specifies options to pass to NewDryRunClientWithOpts in order to get a dryrun clientset
    type DryRunClientOptions struct {
    	Writer          io.Writer
    	Getter          DryRunGetter
    	PrependReactors []core.Reactor
    	AppendReactors  []core.Reactor
    	MarshalFunc     MarshalFunc
    	PrintGETAndLIST bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

        }
    
        def "cannot read property that doesn't have a well formed getter"() {
            when:
            readableProperty(JavaTestSubject, String, property)
    
            then:
            NoSuchPropertyException e = thrown()
            e.message == "Could not find getter method for property '${property}' on class JavaTestSubject."
    
            where:
            property              | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

         * Since Gradle 6, it does not include buildSrc, whereas this scope does.
         *
         * This method is not named as a property getter to avoid getProperties() invoking it.
         *
         * @throws IllegalStateException if called before {@link #setBaseProjectClassLoaderScope(ClassLoaderScope)}
         */
        ClassLoaderScope baseProjectClassLoaderScope();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    // may be used to deserialize an options object to pass to the getter.
    type getterFunc func(ctx context.Context, name string, req *http.Request) (runtime.Object, error)
    
    // getResourceHandler is an HTTP handler function for get requests. It delegates to the
    // passed-in getterFunc to perform the actual get.
    func getResourceHandler(scope *RequestScope, getter getterFunc) http.HandlerFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/WorkSource.java

                    return true;
                }
            };
    
    
            public static <S> Selection<S> of(S item) {
                return new Selection<S>() {
                    @Override
                    public S getItem() {
                        return item;
                    }
                };
            }
    
            public static <S> Selection<S> noWorkReadyToStart() {
                return Cast.uncheckedCast(NO_WORK_READY_TO_START);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 13 20:53:27 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

     * UTF-8, ISO-8859-1, etc).  Other encodings (e.g. UTF-16) will be treated as binary files
     * and will not be subject to line ending normalization.
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * This annotation can be applied to the following input property types:
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. pkg/registry/rbac/role/registry.go

    type Registry interface {
    	GetRole(ctx context.Context, name string, options *metav1.GetOptions) (*rbacv1.Role, error)
    }
    
    // storage puts strong typing around storage calls
    type storage struct {
    	rest.Getter
    }
    
    // NewRegistry returns a new Registry interface for the given Storage. Any mismatched
    // types will panic.
    func NewRegistry(s rest.StandardStorage) Registry {
    	return &storage{s}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 02:36:35 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

         *
         * When a given method cannot be found on the source object for a view, the mix-in object is searched for a compatible method.
         * For a getter method, the mix-in may also provide a method that takes the view as a parameter.
         *
         * @return this
         */
        ViewBuilder<T> mixInTo(Class<?> targetType, Object mixIn);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/PluginServiceInjectionIntegrationTest.groovy

            failure.assertHasCause("Unable to determine constructor argument #1: missing parameter of type Unknown, or no service of type Unknown")
        }
    
        def "can inject service using getter method"() {
            buildFile """
                class CustomPlugin implements Plugin<Project> {
                    @Inject
                    WorkerExecutor getExecutor() { }
    
                    void apply(Project p) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    func UpdateEtcdDbSize(ep string, size int64) {
    	dbTotalSize.WithLabelValues(ep).Set(float64(size))
    }
    
    // SetStorageMonitorGetter sets monitor getter to allow monitoring etcd stats.
    func SetStorageMonitorGetter(getter func() ([]Monitor, error)) {
    	storageMonitor.setGetter(getter)
    }
    
    // UpdateLeaseObjectCount sets the etcd_lease_object_counts metric.
    func UpdateLeaseObjectCount(count int64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top