Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 165 for Identical (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Invalid"},                                                   // unused value
    	{name: "SPanchored", typ: "Uintptr", argLength: 2, zeroWidth: true}, // arg0 = SP, arg1 = mem. Result is identical to arg0, but cannot be scheduled before memory state arg1.
    
    	// Memory operations
    	{name: "Load", argLength: 2},                          // Load from arg0.  arg1=memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InetAddresses.java

        } catch (UnknownHostException e) {
          throw new AssertionError(e);
        }
      }
    
      /**
       * Returns the string representation of an {@link InetAddress}.
       *
       * <p>For IPv4 addresses, this is identical to {@link InetAddress#getHostAddress()}, but for IPv6
       * addresses, the output follows <a href="http://tools.ietf.org/html/rfc5952">RFC 5952</a> section
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/shell.go

    func (sh *Shell) Print(a ...any) {
    	sh.printLock.Lock()
    	defer sh.printLock.Unlock()
    	sh.printFunc(a...)
    }
    
    func (sh *Shell) printLocked(a ...any) {
    	sh.printFunc(a...)
    }
    
    // WithAction returns a Shell identical to sh, but bound to Action a.
    func (sh *Shell) WithAction(a *Action) *Shell {
    	sh2 := *sh
    	sh2.action = a
    	return &sh2
    }
    
    // Shell returns a shell for running commands on behalf of Action a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/encoding/base32/base32.go

    // HexEncoding is the “Extended Hex Alphabet” defined in RFC 4648.
    // It is typically used in DNS.
    var HexEncoding = NewEncoding("0123456789ABCDEFGHIJKLMNOPQRSTUV")
    
    // WithPadding creates a new encoding identical to enc except
    // with a specified padding character, or NoPadding to disable padding.
    // The padding character must not be '\r' or '\n',
    // must not be contained in the encoding's alphabet,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pkg/proxy/topology_test.go

    		// `sets.Set[string]()` ("service uses this kind of endpoints but has no endpoints").
    		// allEndpoints can be left unset if only one of clusterEndpoints and
    		// localEndpoints is set, and allEndpoints is identical to it.
    		// onlyRemoteEndpoints should be true if CategorizeEndpoints returns true for
    		// hasAnyEndpoints despite allEndpoints being empty.
    		clusterEndpoints    sets.Set[string]
    		localEndpoints      sets.Set[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication-utils.go

    	ResetStatusesMap           map[string]string                 // map of ARN-> stringified reset id and timestamp for all the targets
    }
    
    // Equal returns true if replication state is identical for version purge statuses and (replica)tion statuses.
    func (rs *ReplicationState) Equal(o ReplicationState) bool {
    	return rs.ReplicaStatus == o.ReplicaStatus &&
    		rs.ReplicationStatusInternal == o.ReplicationStatusInternal &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                }
    
                if (!referencedClassIdAndQualifiedAccessMatch(qualifiedAccessSegments)) {
                    // Referenced ClassId and qualified access (from source PSI) could be not identical if an import alias is involved.
                    // E.g., test.pkg.R.string.hello v.s. coreR.string.hello where test.pkg.R is imported as coreR
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. src/runtime/metrics/doc.go

    		to occur with use of SetMemoryLimit. The first GC cycle is cycle
    		1, so a value of 0 indicates that it was never enabled.
    
    	/gc/pauses:seconds
    		Deprecated. Prefer the identical /sched/pauses/total/gc:seconds.
    
    	/gc/scan/globals:bytes
    		The total amount of global variable space that is scannable.
    
    	/gc/scan/heap:bytes
    		The total amount of heap space that is scannable.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/object.go

    	// resulting in the object string `type any = any` rather than `type any =
    	// interface{}`. To avoid this, swap in a different empty interface.
    	if obj.Name() == "any" && obj.Parent() == Universe {
    		assert(Identical(typ, &emptyInterface))
    		typ = &emptyInterface
    	}
    
    	buf.WriteByte(' ')
    	WriteType(buf, typ, qf)
    }
    
    func packagePrefix(pkg *Package, qf Qualifier) string {
    	if pkg == nil {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

              test.put(rangeToPut1, 1);
              test.put(rangeToPut2, 2);
              test.remove(rangeToRemove);
              verify(model, test);
            }
          }
        }
      }
    
      // identical to testPutTwoAndRemove,
      // verifies that putCoalescing() doesn't cause any mappings to change relative to put()
      public void testPutCoalescingTwoAndRemove() {
        for (Range<Integer> rangeToPut1 : RANGES) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top