Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 424 for distinguish (0.13 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. pkg/env/var.go

    	mutex.Unlock()
    
    	return result
    }
    
    // Get retrieves the value of the environment variable.
    // It returns the value, which will be the default if the variable is not present.
    // To distinguish between an empty value and an unset value, use Lookup.
    func (v StringVar) Get() string {
    	result, _ := v.Lookup()
    	return result
    }
    
    // Lookup retrieves the value of the environment variable. If the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/internal/gcimporter/testdata/versions/test.go

    // directory. The VersionHandling test will pick it up.
    //
    // In the testdata/versions:
    //
    // go build -o test_go1.$X_$Y.a test.go
    //
    // with $X = Go version and $Y = export format version
    // (add 'b' or 'i' to distinguish between binary and
    // indexed format starting with 1.11 as long as both
    // formats are supported).
    //
    // Make sure this source is extended such that it exercises
    // whatever export format change has taken place.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 13 04:39:18 UTC 2018
    - 918 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top