Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,212 for METHOD (0.1 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-RequestCommon.kt

    fun Request.Builder.commonMethod(
      method: String,
      body: RequestBody?,
    ): Request.Builder =
      apply {
        require(method.isNotEmpty()) {
          "method.isEmpty() == true"
        }
        if (body == null) {
          require(!HttpMethod.requiresRequestBody(method)) {
            "method $method must have a request body."
          }
        } else {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Methods.java

            protected int doHash(Method method) {
                return new HashCodeBuilder()
                    .append(method.getName())
                    .append(method.getParameterTypes())
                    .toHashCode();
            }
        };
    
        /**
         * Equivalence of methods based on method name, the number, type and order of parameters, and return types.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

                // now get the 'public method', the method declared by a
                // public interface or class (because the actual implementing
                // class may be a facade...)
    
                Method publicMethod = getPublicMethod(method);
    
                // it is entirely possible that there is no public method for
                // the methods of this class (i.e. in the facade, a method
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. src/go/doc/testdata/e.1.golden

    TYPES
    	// T1 has no embedded (level 1) M method due to conflict. 
    	type T1 struct {
    		t1
    		t2
    	}
    
    	// T2 has only M as top-level method. 
    	type T2 struct {
    		t1
    	}
    
    	// T2.M should appear as method of T2. 
    	func (T2) M()
    
    	// T3 has only M as top-level method. 
    	type T3 struct {
    		t1e
    		t2e
    	}
    
    	// T3.M should appear as method of T3. 
    	func (T3) M()
    
    	// 
    	type T4 struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutablePropertyDetails.java

        }
    
        @Override
        public Collection<Method> getGetters() {
            return getters.getValues();
        }
    
        @Override
        public Collection<Method> getSetters() {
            return setters.getValues();
        }
    
        @Nullable
        @Override
        public Field getBackingField() {
            return field;
        }
    
        void addGetter(Method method) {
            getters.add(method);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. api/go1.22.txt

    pkg math/rand/v2, method (*PCG) UnmarshalBinary([]uint8) error #61716
    pkg math/rand/v2, method (*Rand) ExpFloat64() float64 #61716
    pkg math/rand/v2, method (*Rand) Float32() float32 #61716
    pkg math/rand/v2, method (*Rand) Float64() float64 #61716
    pkg math/rand/v2, method (*Rand) Int() int #61716
    pkg math/rand/v2, method (*Rand) Int32() int32 #61716
    pkg math/rand/v2, method (*Rand) Int32N(int32) int32 #61716
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            method = Hoge.class.getMethod("list");
            assertThat(GenericsUtil.getActualClass(method.getGenericReturnType(), map), is(sameClass(List.class)));
    
            method = Hoge.class.getMethod("set");
            assertThat(GenericsUtil.getActualClass(method.getGenericReturnType(), map), is(sameClass(Set.class)));
    
            method = Hoge.class.getMethod("map");
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/go/doc/testdata/e.go

    type T2 struct {
    	t1
    }
    
    // T2.M should appear as method of T2.
    func (T2) M() {}
    
    // ----------------------------------------------------------------------------
    // Higher-level method M wins over lower-level conflicting methods M.
    
    type t1e struct {
    	t1
    }
    
    type t2e struct {
    	t2
    }
    
    // T3 has only M as top-level method.
    type T3 struct {
    	t1e
    	t2e
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * - a `writeObject` method combined with a `readObject` method to control exactly which information to store;
     * - a `writeObject` method with no corresponding `readObject`; `writeObject` must eventually call [ObjectOutputStream.defaultWriteObject];
     * - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call [ObjectInputStream.defaultReadObject];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/cache/DefaultCacheConfigurationsTest.groovy

        }
    
        def "cannot modify cache configurations via property unless mutable (method: #method)"() {
            long firstValue = 2
            long secondValue = 1
    
            when:
            cacheConfigurations.createdResources.removeUnusedEntriesOlderThan."${method}"(firstValue)
            cacheConfigurations.downloadedResources.removeUnusedEntriesOlderThan."${method}"(firstValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top