Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 344 for distinguish (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodsTest.groovy

            Object someMethodName(Object o)
        }
    
        interface ChildType extends BaseType {
            @Override String someMethodName(Object o)
            int someMethodName(int i)
        }
    
        def "distinguish overloaded overridden method signatures"() {
            def takeObjReturnObj = BaseType.declaredMethods[0]
            def takeObjReturnStr = ChildType.declaredMethods[0]
            def takeIntReturnInt = ChildType.declaredMethods[1]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            /*
             * This documents the current behavior, which is optimizing
             * for performance at the expense of not detecting some corner
             * cases. If there actually is a task that needs to distinguish
             * between links and real files, we should probably provide an
             * opt-in to canonical snapshotting, as it's quite expensive.
             */
            then:
            result.assertTaskSkipped(":work")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		}
    
    		return 1
    	}
    
    	val := 0
    	for i := 0; i < iter; i++ {
    		m := m1
    		if i%10 == 0 {
    			m = m2
    		}
    
    		// N.B. Profiles only distinguish calls on a per-line level,
    		// making the two calls ambiguous. However because the
    		// interfaces and implementations are mutually exclusive,
    		// devirtualization can still select the correct callee for
    		// each.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/BuildExceptionVersion1.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.tooling.internal.protocol;
    
    /**
     * A wrapper around a build failure, to distinguish it from an infrastructure failure. The details of the
     * failure are made available in the cause of this exception.
     *
     * DO NOT CHANGE THIS CLASS. It is part of the cross-version protocol.
     *
     * @since 1.0-milestone-3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/config/model.go

    // * golang/protobuf Message
    // * gogo/protobuf Message
    // * Able to marshal/unmarshal using json
    type Spec any
    
    func ToProto(s Spec) (*anypb.Any, error) {
    	// golang protobuf. Use protoreflect.ProtoMessage to distinguish from gogo
    	// golang/protobuf 1.4+ will have this interface. Older golang/protobuf are gogo compatible
    	// but also not used by Istio at all.
    	if pb, ok := s.(protoreflect.ProtoMessage); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/types.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_TYPES_H_
    
    #include <string>
    
    namespace mlir::quant::stablehlo {
    
    // Introduces aliases for `std::string` to distinguish btw. function name and
    // its alias, to prevent confusion when used together in a container. For
    // example, it is easy to confuse function name -> alias mapping with alias ->
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 22 00:38:45 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // The number of successful finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
      // The number of failed finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 1.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

            allDependencies[0].resolved
            allDependencies[0].attemptedSelector == null
            allDependencies[1].resolved
            allDependencies[1].attemptedSelector == null
        }
    
        def "Client can distinguish resolved and unresolved dependencies"() {
            when:
            def project = loadToolingModel(EclipseProject)
            def allDependencies = project.classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // The number of successful finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
      // The number of failed finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 1.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            then:
            container.findByType(List) is extension
            container.findByType(new TypeOf<List<String>>() {}) is extension
        }
    
        def "can distinguish unrelated generic type arguments"() {
            given:
            def parents = []
            def capabilities = []
    
            when:
            container.add new TypeOf<List<Parent>>() {}, "parents", parents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top