Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 711 for identical (1.94 sec)

  1. src/encoding/json/fold.go

    // license that can be found in the LICENSE file.
    
    package json
    
    import (
    	"unicode"
    	"unicode/utf8"
    )
    
    // foldName returns a folded string such that foldName(x) == foldName(y)
    // is identical to bytes.EqualFold(x, y).
    func foldName(in []byte) []byte {
    	// This is inlinable to take advantage of "function outlining".
    	var arr [32]byte // large enough for most JSON names
    	return appendFoldedName(arr[:0], in)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/Problems.java

     */
    @Incubating
    @ServiceScope(Scope.BuildTree.class)
    public interface Problems {
    
        /**
         * Return a problem reporter associated with a plugin.
         * <p>
         * The namespace provides separation for identical problems emitted from different components (Gradle core and third-party plugins).
         *
         * @return The problem reporter.
         * @since 8.6
         */
        ProblemReporter forNamespace(String namespace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/LinearTransformation.java

        }
    
        /**
         * Finish building an instance which also maps {@code x = x2} to {@code y = y2}. These values
         * must not both be identical to the values given in the first mapping. If only the {@code x}
         * values are identical, the transformation is vertical. If only the {@code y} values are
         * identical, the transformation is horizontal (i.e. the slope is zero).
         */
        public LinearTransformation and(double x2, double y2) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue60562.go

    }
    
    func f3[T any](func(I[T])) {}
    
    func _() {
    	var x func(I[int])
    	f3(x) // but this is correct: I[T] and I[int] can be made identical with T == int
    }
    
    func f4[T any]([10]I[T]) {}
    
    func _() {
    	var x [10]interface{ I[int] }
    	f4(x /* ERROR "type [10]interface{I[int]} of x does not match [10]I[T] (cannot infer T)" */)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 14:52:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.go

    //go:noescape
    func update(state *macState, msg []byte)
    
    // mac is a wrapper for macGeneric that redirects calls that would have gone to
    // updateGeneric to update.
    //
    // Its Write and Sum methods are otherwise identical to the macGeneric ones, but
    // using function pointers would carry a major performance cost.
    type mac struct{ macGeneric }
    
    func (h *mac) Write(p []byte) (int, error) {
    	nn := len(p)
    	if h.offset > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue17318.go

    		return ops(i, j) // ERROR "ops\(i, j\) escapes to heap$"
    	}
    	err = enqueue(4)
    	if err != nil {
    		return err
    	}
    	return // return result of enqueue, a fmt.Stringer
    }
    
    func main() {
    	// 3 identical functions, to get different escape behavior.
    	f := func(i, j int) ent { // ERROR "func literal does not escape"
    		return ent(i + j)
    	}
    	i := foo(f, 3).(ent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 16 15:30:51 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. src/go/types/index.go

    				// first type
    				length = l
    				key, elem = k, e
    				return true
    			}
    			// all map keys must be identical (incl. all nil)
    			// (that is, we cannot mix maps with other types)
    			if !Identical(key, k) {
    				return false
    			}
    			// all element types must be identical
    			if !Identical(elem, e) {
    				return false
    			}
    			// track the minimal length for arrays, if any
    			if l >= 0 && l < length {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

                }
    
                String message = "Consumable configurations with identical capabilities within a project (other than the default configuration) " +
                    "must have unique attributes, but " + configuration.getDisplayName() + " and " + collisions + " contain identical attribute sets.";
    
                return builder.withSummary(message)
                    .withAdvice(advice)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/duplicate_method_names_v1.py

    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    
    # Tests different SignatureDef's with identical method_name string
    
    # CHECK:      func {{@[a-zA-Z_0-9]+}}(
    # CHECK-SAME:   {{.*}})
    # CHECK-SAME: attributes {{.*}} tf_saved_model.exported_names = ["key"]
    
    # CHECK:      func {{@[a-zA-Z_0-9]+}}(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXObject.java

         */
        public void serializeInto(@SuppressWarnings("unused") XcodeprojSerializer serializer) {
        }
    
        /**
         * This method is used to generate stable GIDs and must be stable for identical contents.
         * Returning a constant value is ok but will make the generated project order-dependent.
         */
        public int stableHash() {
            return 0;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top