Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for heal (0.05 sec)

  1. src/html/template/escape_test.go

    			// with a consistent attribute.
    			`<input checked {{""}}="Whose value am I?">`,
    			`<input checked ZgotmplZ="Whose value am I?">`,
    		},
    		{
    			"dynamic element name",
    			`<h{{3}}><table><t{{"head"}}>...</h{{3}}>`,
    			`<h3><table><thead>...</h3>`,
    		},
    		{
    			"bad dynamic element name",
    			// Dynamic element names are typically used to switch
    			// between (thead, tfoot, tbody), (ul, ol), (th, td),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

        final Queue<PeekingIterator<T>> queue;
    
        public MergingIterator(
            Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> itemComparator) {
          // A comparator that's used by the heap, allowing the heap
          // to be sorted based on the top of each iterator.
          Comparator<PeekingIterator<T>> heapComparator =
              (PeekingIterator<T> o1, PeekingIterator<T> o2) ->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

        final Queue<PeekingIterator<T>> queue;
    
        public MergingIterator(
            Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> itemComparator) {
          // A comparator that's used by the heap, allowing the heap
          // to be sorted based on the top of each iterator.
          Comparator<PeekingIterator<T>> heapComparator =
              (PeekingIterator<T> o1, PeekingIterator<T> o2) ->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    	return formatMessage(flags, uintptr(msgsrc), msgid, langid, buf, args)
    }
    
    func (e Errno) Error() string {
    	// deal with special go errors
    	idx := int(e - APPLICATION_ERROR)
    	if 0 <= idx && idx < len(errors) {
    		return errors[idx]
    	}
    	// ask windows for the remaining errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    				// Add a new dummy OpArg{Int,Float}Reg for it.
    				synthesizeOpIntFloatArg(n, t, inp.Registers[k],
    					pieceSlot)
    			}
    		}
    	}
    
    	// Insert the new values into the head of the block.
    	f.Entry.Values = append(newValues, f.Entry.Values...)
    }
    
    // BuildFuncDebug debug information for f, placing the results
    // in "rval". f must be fully processed, so that each Value is where it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  8. src/time/time_test.go

    		y, w := dt.ISOWeek()
    		if w != wt.wex || y != wt.yex {
    			t.Errorf("got %d/%d; expected %d/%d for %d-%02d-%02d",
    				y, w, wt.yex, wt.wex, wt.year, wt.month, wt.day)
    		}
    	}
    
    	// The only real invariant: Jan 04 is in week 1
    	for year := 1950; year < 2100; year++ {
    		if y, w := Date(year, January, 4, 0, 0, 0, 0, UTC).ISOWeek(); y != year || w != 1 {
    			t.Errorf("got %d/%d; expected %d/1 for Jan 04", y, w, year)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

          // It's a weird formula, but tests prove it works.
          int adjust = size() - 1;
          for (int i = 0; i < axes.size(); i++) {
            adjust *= 31;
            adjust = ~~adjust;
            // in GWT, we have to deal with integer overflow carefully
          }
          int hash = 1;
          for (Set<E> axis : axes) {
            hash = 31 * hash + (size() / axis.size() * axis.hashCode());
    
            hash = ~~hash;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    		// are *inside* of the 'std' module: the 'vendor/' packages that resolve
    		// globally from GOROOT/src/vendor (and are listed as part of 'go list std')
    		// are distinct from the real module dependencies, and cannot import
    		// internal packages from the real module.
    		//
    		// (Note that although the 'vendor/' packages match the 'std' *package*
    		// pattern, they are not part of the std *module*, and do not affect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top