Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 342 for getStep (0.15 sec)

  1. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            return (Class<T>) propertyType;
        }
    
        @Override
        public final Method getReadMethod() {
            return readMethod;
        }
    
        /**
         * getterメソッドを設定します。
         *
         * @param readMethod
         *            getterメソッド
         */
        protected final void setReadMethod(final Method readMethod) {
            this.readMethod = readMethod;
            if (readMethod != null) {
                readable = true;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/main_test.go

          secretVolumes:
          - name: client-custom-certs
            secretName: egress-gw-cacerts
            mountPath: /etc/certs/custom
    `
    }
    
    func setupApps(ctx resource.Context, appNs namespace.Getter,
    	serviceNs namespace.Getter, customCfg *[]echo.Config,
    ) error {
    	appNamespace := appNs.Get()
    	serviceNamespace := serviceNs.Get()
    	var customConfig []echo.Config
    	client := echo.Config{
    		Service:   "client",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pkg/registry/core/serviceaccount/storage/storage_test.go

    	return f.staticToken, nil
    }
    
    var _ token.TokenGenerator = fakeTokenGenerator{}
    
    // Currently this getter only panics as the only test case doesn't actually need the getters to function.
    // When more test cases are added, this getter will need extending/replacing to have a real test implementation.
    type panicGetter struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/model/ReplacedBy.java

    /**
     * <p>Attached to a task property to indicate that the property has been replaced by another. Like {@link Internal}, the property is ignored during up-to-date checks.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property field in Groovy. You should also consider adding {@link Deprecated} to any replaced property.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 16:13:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/groovy/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::groovyJdk[]
    // Iterable gets an each() method
    configurations.runtimeClasspath.each { File f -> println f }
    // end::groovyJdk[]
    
    // tag::propertyAccessors[]
    // Using a getter method
    println project.buildDir
    println getProject().getBuildDir()
    
    // Using a setter method
    project.buildDir = 'target'
    getProject().setBuildDir('target')
    // end::propertyAccessors[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        override val callableId: CallableId? get() = withValidityAssertion { firSymbol.getCallableId() }
    
        override val getter: KaPropertyGetterSymbol
            get() = withValidityAssertion {
                builder.callableBuilder.buildGetterSymbol(firSymbol.getterSymbol!!)
            }
        override val javaGetterSymbol: KaFunctionSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        }
    
        @Managed
        interface HasSingleCharFirstPartGetter {
            String getcCompiler()
            void setcCompiler(String cCompiler)
        }
    
        def "extraction of single char first camel-case part getter like getcCompiler() is javabeans compliant"() {
            when:
            def schema = store.getSchema(HasSingleCharFirstPartGetter)
    
            then:
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                        }
                        fir.getter?.let { getter ->
                            methods.singleOrNull { it.returnType != PsiTypes.voidType() }?.let {
                                bindings.put(METHOD_FOR_FIR_FUNCTION, getter, Method(it.name, getAsmMethodSignatureWithCorrection(it)))
                            }
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

                // Either both are non-null, or both are nullable
                return nonNullGetters == nonNullSetters;
            }
    
            private boolean getterAnnotatedWithNullable(JavaMethod getter) {
                return getter.isAnnotatedWith(Nullable.class);
            }
    
            private boolean setterAnnotatedWithNullable(JavaMethod setter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_setenv.txt

        f.Fatal("environment variable not cleared after FuzzA")
      }
      f.Skip()
    }
    
    func isWorker() bool {
    	f := flag.Lookup("test.fuzzworker")
    	if f == nil {
    		return false
    	}
    	get, ok := f.Value.(flag.Getter)
    	if !ok {
    		return false
    	}
    	return get.Get() == interface{}(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 943 bytes
    - Viewed (0)
Back to top