Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,060 for METHOD (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    }
                }
    
                // Query the declared methods of the meta class
                for (MetaMethod method : metaClass.getMethods()) {
                    if (method.getName().equals("propertyMissing") && method.getParameterTypes().length == 1) {
                        return method;
                    }
                }
                return null;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      //
      // It should look like:
      //
      // specs {matcher {function_name {regex: ".*"}} method {static_range_ptq {}}}
      // specs {
      //   matcher {function_name {regex: "composite_conv.*"}}
      //   method {static_range_ptq {...}}}
      // }
      // specs {
      //   matcher {function_name {regex: "composite_dot_general_fn_1"}}
      //   method {no_quantization {}}
      // }
      const QuantizationConfig new_config = ExpandPresets(config);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/RequestTest.kt

        val headers = headersOf("User-Agent", "RequestTest")
        val method = "PUT"
        val request =
          Request(
            url = url,
            headers = headers,
            method = method,
            body = body,
          )
        assertThat(request.url).isEqualTo(url)
        assertThat(request.headers).isEqualTo(headers)
        assertThat(request.method).isEqualTo(method)
        assertThat(request.body).isEqualTo(body)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/kubelet/container/testing/runtime_mock.go

    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockVersion) EXPECT() *MockVersionMockRecorder {
    	return m.recorder
    }
    
    // Compare mocks base method.
    func (m *MockVersion) Compare(other string) (int, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "Compare", other)
    	ret0, _ := ret[0].(int)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. src/internal/reflectlite/value.go

    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    // inappropriate to the kind of type causes a run time panic.
    //
    // The zero Value represents no value.
    // Its IsValid method returns false, its Kind method returns Invalid,
    // its String method returns "<invalid Value>", and all other methods panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            }
    
            @Override
            public void invoke(MethodInvocation method) throws Throwable {
                if (method.isGetter()) {
                    if (properties.containsKey(method.getName())) {
                        method.setResult(properties.get(method.getName()));
                        return;
                    }
                    if (unknown.contains(method.getName())) {
                        return;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockProvider) EXPECT() *MockProviderMockRecorder {
    	return m.recorder
    }
    
    // GetCgroupCPUAndMemoryStats mocks base method.
    func (m *MockProvider) GetCgroupCPUAndMemoryStats(cgroupName string, updateStats bool) (*v1alpha1.ContainerStats, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupCPUAndMemoryStats", cgroupName, updateStats)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/go/types/typeset.go

    			if check != nil {
    				err := check.newError(DuplicateDecl)
    				err.addf(atPos(pos), "duplicate method %s", m.name)
    				err.addf(atPos(mpos[other.(*Func)]), "other declaration of method %s", m.name)
    				err.report()
    			}
    		default:
    			// We have a duplicate method name in an embedded (not explicitly declared) method.
    			// Check method signatures after all types are computed (go.dev/issue/33656).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // Represents a quantization result of a single `QuantizableUnit`. It is
    // essentially a `(QuantizableUnit, Method)` pair, where the `Method`
    // corresponds to the quantization method eventually applied to the
    // `QuantizableUnit`.
    // Next ID: 3
    message QuantizationResult {
      QuantizableUnit quantizable_unit = 1;
      Method method = 2;
    }
    
    // A series of `QuantizationResult`s. See `QuantizationResult` for details.
    // Next ID: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/Types.java

        private static final ImmutableMap<String, Method> typeVariableMethods;
    
        static {
          ImmutableMap.Builder<String, Method> builder = ImmutableMap.builder();
          for (Method method : TypeVariableImpl.class.getMethods()) {
            if (method.getDeclaringClass().equals(TypeVariableImpl.class)) {
              try {
                method.setAccessible(true);
              } catch (AccessControlException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top