Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for toves (0.06 sec)

  1. src/image/color/palette/palette.go

    // subcubes with 4 samples plus black) and a reasonable selection of colors
    // covering the rest of the color cube. The advantage is better representation
    // of continuous tones.
    //
    // This palette was used in the Plan 9 Operating System, described at
    // https://9p.io/magic/man2html/6/color
    var Plan9 = []color.Color{
    	color.RGBA{0x00, 0x00, 0x00, 0xff},
    	color.RGBA{0x00, 0x00, 0x44, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashSet.java

        if (index == -1) {
          return false;
        }
    
        moveLastEntry(index, mask);
        size--;
        incrementModCount();
    
        return true;
      }
    
      /**
       * Moves the last entry in the entry array into {@code dstIndex}, and nulls out its old position.
       */
      void moveLastEntry(int dstIndex, int mask) {
        Object table = requireTable();
        int[] entries = requireEntries();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/sort/gen_sort_variants.go

    			pdqsort{{.FuncSuffix}}(data, mid+1, b, limit {{.ExtraArg}})
    			b = mid
    		}
    	}
    }
    
    // partition{{.FuncSuffix}} does one quicksort partition.
    // Let p = data[pivot]
    // Moves elements in data[a:b] around, so that data[i]<p and data[j]>=p for i<newpivot and j>newpivot.
    // On return, data[newpivot] = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

            sharding = kReplicateSharding;
          } else {
            // Otherwise, default to maximal sharding core 0.
            sharding = logical_device_vec[0];
          }
        }
      }
    }
    
    // Moves shardings from `optional_shardings` to `shardings`.
    absl::Status MoveSharding(OptionalOpShardingVector& optional_shardings,
                              OpShardingVector& shardings) {
      shardings.clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashSet.java

        if (index == -1) {
          return false;
        }
    
        moveLastEntry(index, mask);
        size--;
        incrementModCount();
    
        return true;
      }
    
      /**
       * Moves the last entry in the entry array into {@code dstIndex}, and nulls out its old position.
       */
      void moveLastEntry(int dstIndex, int mask) {
        Object table = requireTable();
        int[] entries = requireEntries();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (Zero [s] {t} ptr mem)
    	&& (s > 8*128 || config.noDuffDevice) || t.Alignment()%8 != 0 =>
    	(LoweredZero [t.Alignment()]
    		ptr
    		(ADDVconst <ptr.Type> ptr [s-moveSize(t.Alignment(), config)])
    		mem)
    
    // moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    	(MOVHstore dst (MOVHload src mem) mem)
    (Move [2] dst src mem) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  7. src/runtime/time.go

    			return
    		}
    
    		t.lock()
    		updated := t.updateHeap()
    		t.unlock()
    		if !updated {
    			// Head of timers does not need adjustment.
    			return
    		}
    	}
    }
    
    // take moves any timers from src into ts
    // and then clears the timer state from src,
    // because src is being destroyed.
    // The caller must not have locked either timers.
    // For now this is only called when the world is stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    The following example shows a more complicated transform.
    It moves some selected classes of a JAR to a different package, rewriting the byte code of the moved classes and all classes using the moved classes (class relocation).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    	}
    	// be careful to not lose concurrent pdReady notification
    	old := gpp.Swap(pdNil)
    	if old > pdWait {
    		throw("runtime: corrupted polldesc")
    	}
    	return old == pdReady
    }
    
    // netpollunblock moves either pd.rg (if mode == 'r') or
    // pd.wg (if mode == 'w') into the pdReady state.
    // This returns any goroutine blocked on pd.{rg,wg}.
    // It adds any adjustment to netpollWaiters to *delta;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. test/live_regabi.go

    	t := &ret
    	printnl() // ERROR "live at call to printnl: ret$"
    	// Note: ret is live at the printnl because the compiler moves &ret
    	// from before the printnl to after.
    	useT40(t)
    }
    
    func ddd1(x, y *int) { // ERROR "live at entry to ddd1: x y$"
    	ddd2(x, y) // ERROR "stack object .autotmp_[0-9]+ \[2\]\*int$"
    	printnl()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top