Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for distinguish (0.41 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. src/cmd/compile/internal/noder/export.go

    	"cmd/internal/bio"
    )
    
    func WriteExports(out *bio.Writer) {
    	var data bytes.Buffer
    
    	data.WriteByte('u')
    	writeUnifiedExport(&data)
    
    	// The linker also looks for the $$ marker - use char after $$ to distinguish format.
    	out.WriteString("\n$$B\n") // indicate binary export format
    	io.Copy(out, &data)
    	out.WriteString("\n$$\n")
    
    	if base.Debug.Export != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 21:16:32 UTC 2023
    - 683 bytes
    - Viewed (0)
  5. 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)
  6. pkg/volume/util/metrics.go

    		timeTaken := time.Since(requestTime).Seconds()
    		// Create metric with operation name and plugin name
    		status := statusSuccess
    		if *c.Err != nil {
    			// TODO: Establish well-known error codes to be able to distinguish
    			// user configuration errors from system errors.
    			status = statusFailUnknown
    		}
    		migrated := false
    		if c.Migrated != nil {
    			migrated = *c.Migrated
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 23 23:05:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. src/encoding/gob/error.go

    // them, but are instead turned into plain error returns. Encoding and
    // decoding functions and methods that do not return an error either use
    // panic to report an error or are guaranteed error-free.
    
    // A gobError is used to distinguish errors (panics) generated in this package.
    type gobError struct {
    	err error
    }
    
    // errorf is like error_ but takes Printf-style arguments to construct an error.
    // It always prefixes the message with "gob: ".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:03:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. test/float_lit3.go

    	float32(-max32 - ulp32/2),                 // ERROR "constant -3\.40282e\+38 overflows float32|cannot convert.*to type float32"
    
    	// If the compiler's internal floating point representation
    	// is shorter than 1024 bits, it cannot distinguish max64+ulp64/2-1 and max64+ulp64/2.
    	float64(max64 + ulp64/2 - two1024/two256), // ok
    	float64(max64 + ulp64/2 - 1),              // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 03 16:24:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. 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)
Back to top