Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 165 for Identical (0.19 sec)

  1. src/cmd/compile/internal/staticinit/sched.go

    	if s.seenMutation {
    		if base.Debug.StaticCopy != 0 {
    			base.WarnfAt(l.Pos(), "skipping static copy of %v+%v with %v", l, loff, r)
    		}
    		return false
    	}
    
    	for r.Op() == ir.OCONVNOP && !types.Identical(r.Type(), typ) {
    		r = r.(*ir.ConvExpr).X
    	}
    
    	switch r.Op() {
    	case ir.OMETHEXPR:
    		r = r.(*ir.SelectorExpr).FuncName()
    		fallthrough
    	case ir.ONAME:
    		r := r.(*ir.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. pkg/api/testing/unstructured_test.go

    // to unstructured and back using both the JSON and CBOR serializers. The intermediate unstructured
    // objects produced by both encodings must be identical and be themselves roundtrippable to JSON and
    // CBOR.
    func TestRoundtripToUnstructured(t *testing.T) {
    	// These are GVKs that whose CBOR roundtrippability is blocked by a known issue that must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

       * methods ensure that null is never present in the map, it's OK for the
       * comparator to look for it wherever it wants.
       *
       * Note that we do NOT touch the comparator returned by comparator(), which
       * should be identical to the one the user passed in. We touch only the
       * "secret" comparator used by the delegate implementation.
       */
    
      private static <K, V> SortedMap<K, V> newModifiableDelegate(Comparator<? super K> comparator) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/size.go

    	seen := make(map[*Sym]*Field)
    	var methods []*Field
    
    	addMethod := func(m *Field, explicit bool) {
    		switch prev := seen[m.Sym]; {
    		case prev == nil:
    			seen[m.Sym] = m
    		case !explicit && Identical(m.Type, prev.Type):
    			return
    		default:
    			base.ErrorfAt(m.Pos, errors.DuplicateDecl, "duplicate method %s", m.Sym.Name)
    		}
    		methods = append(methods, m)
    	}
    
    	{
    		methods := t.Methods()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        assertEquals(
            "a.b", new ClassInfo(FILE, "a/b/Foo.class", getClass().getClassLoader()).getPackageName());
      }
    
      // Test that ResourceInfo.urls() returns identical content to ClassLoader.getResources()
    
    
      @AndroidIncompatible
      public void testGetClassPathUrls() throws Exception {
        if (isWindows()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    	// only in the Defs map, and identifiers denoting packages in
    	// qualified identifiers are collected in the Uses map.
    	Types map[syntax.Expr]TypeAndValue
    
    	// If StoreTypesInSyntax is set, type information identical to
    	// that which would be put in the Types map, will be set in
    	// syntax.Expr.TypeAndValue (independently of whether Types
    	// is nil or not).
    	StoreTypesInSyntax bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        // conversion (even after quantization). Some TFL ops like unidirectional
        // sequence lstm will have stateful operands and some optimization passes
        // will merge those operands if they have identical values & types. However,
        // it's not desired by TFL. This pass serves as a "fix" pass to split the
        // merged inputs until we have 1st class variable support or reuse
        // tf.variable to model this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        private
        fun reportUniqueValueSourceInput(trace: PropertyTrace, displayName: String?, typeName: String) {
            // We assume different types won't ever produce identical display names
            if (reportedValueSources.add(displayName ?: typeName)) {
                reportValueSourceInput(trace, displayName, typeName)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. pkg/controlplane/instance.go

    			IPRepairInterval:        c.Extra.RepairServicesInterval,
    		},
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	// The order here is preserved in discovery.
    	// If resources with identical names exist in more than one of these groups (e.g. "deployments.apps"" and "deployments.extensions"),
    	// the order of this list determines which group an unqualified resource name (e.g. "deployments") should prefer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/net/url/url.go

    // converting each 3-byte encoded substring of the form "%AB" into the
    // hex-decoded byte 0xAB. It returns an error if any % is not followed
    // by two hexadecimal digits.
    //
    // PathUnescape is identical to [QueryUnescape] except that it does not
    // unescape '+' to ' ' (space).
    func PathUnescape(s string) (string, error) {
    	return unescape(s, encodePathSegment)
    }
    
    // unescape unescapes a string; the mode specifies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top