Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 342 for getStep (0.29 sec)

  1. samples/extauthz/cmd/extauthz/main.go

    	// For test only
    	httpPort chan int
    	grpcPort chan int
    }
    
    func (s *extAuthzServerV2) logRequest(allow string, request *authv2.CheckRequest) {
    	httpAttrs := request.GetAttributes().GetRequest().GetHttp()
    	log.Printf("[gRPCv2][%s]: %s%s, attributes: %v\n", allow, httpAttrs.GetHost(),
    		httpAttrs.GetPath(),
    		request.GetAttributes())
    }
    
    func (s *extAuthzServerV2) allow(request *authv2.CheckRequest) *authv2.CheckResponse {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.h

    // purpose is to catch bug on `tensorflow::mutex_lock`. We don't use
    // `tensorflow::mutex_lock` here but we have ops (`tf.MutexLock` and
    // `tf.ConsumeMutexLock`) with getter methods named as `mutex_lock()`. Need to
    // undefine here to avoid expanding the getter symbol as macro when including
    // both mutex.h and this header file.
    #undef mutex_lock
    
    #define GET_OP_FWD_DEFINES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleInput.java

    import org.gradle.api.Incubating;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to the getter for a property on a {@link RuleSource} to denote that the property defines an implicit input for all rules defined by the rule source.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    							"group":   "",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    						map[string]interface{}{
    							"group":   "batch",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    						map[string]interface{}{
    							"group":   "extensions",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    					},
    				},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         *            プロパティの型
         * @return プロパティの型
         */
        <T> Class<T> getPropertyType();
    
        /**
         * getterメソッドを返します。
         *
         * @return getterメソッド
         */
        Method getReadMethod();
    
        /**
         * getterメソッドを持っているかどうか返します。
         *
         * @return getterメソッドを持っているかどうか
         */
        boolean hasReadMethod();
    
        /**
         * setterメソッドを返します。
         *
         * @return setterメソッド
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/ManagedProperty.java

     * types declaring the struct only specify the property via a getter, then the managed property will be read-only. However, if
     * even one of the view types declare a setter for the property, it will be a read-write property. </p>
     *
     * <p>Different views can declare the same getter with different return types. In such a case the type of the managed property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class GroovyToJavaConversionIntegrationTest extends AbstractIntegrationSpec {
    
        def "For every boolean is getter there is a get Getter"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons() // We need to fork - if we do not fork Class-Decoration does not happen
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pkg/ctrlz/topics/collection.go

    	Collection string
    	Key        string
    	Value      any
    	Error      string
    }
    
    func (c *collectionTopic) handleItem(w http.ResponseWriter, _ *http.Request, collection, key string) {
    	v, err := c.getItem(collection, key)
    	context := itemContext{}
    	if err == nil {
    		switch v.(type) {
    		case string:
    
    		default:
    			var b []byte
    			if b, err = yaml.Marshal(v); err != nil {
    				context.Error = err.Error()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectUndecoratedTest.groovy

        ClassGenerator generator = AsmBackedClassGenerator.injectOnly([], Stub(PropertyRoleAnnotationHandler), [], new TestCrossBuildInMemoryCacheFactory(), 0)
    
        def "returns original class when class is not abstract and no service getter methods present"() {
            expect:
            generator.generate(Bean).generatedClass == Bean
        }
    
        def "can create instance of final class when a subclass is not required"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ContainerElementServiceInjectionIntegrationTest.groovy

            failure.assertHasCause("Unable to determine constructor argument #2: missing parameter of type Unknown, or no service of type Unknown")
        }
    
        def "container element can receive services through getter method"() {
            buildFile """
                class Bean {
                    String name
    
                    Bean(String name) {
                        println(factory != null ? "got it" : "NOT IT")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top