Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for saturation (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          throw 'element not found: ' + name
        }
        return elem;
      }
    
      function makeColor(index) {
        // Rotate hue around a circle. Multiple by phi to spread things
        // out better. Use 50% saturation to make subdued colors, and
        // 80% lightness to have good contrast with black foreground text.
        const PHI = 1.618033988;
        const hue = (index+1) * PHI * 2 * Math.PI; // +1 to avoid 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ight":{"background-blend-mode":"soft-light"},".bg-blend-difference":{"background-blend-mode":"difference"},".bg-blend-exclusion":{"background-blend-mode":"exclusion"},".bg-blend-hue":{"background-blend-mode":"hue"},".bg-blend-saturation":{"background-blend-mode":"saturation"},".bg-blend-color":{"background-blend-mode":"color"},".bg-blend-luminosity":{"background-blend-mode":"luminosity"}})},mixBlendMode:({addUtilities:i})=>{i({".mix-blend-normal":{"mix-blend-mode":"normal"},".mix-blend-multiply"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Adjust the saturation of one or more images.";
    
      let description = [{
    `images` is a tensor of at least 3 dimensions.  The last dimension is
    interpreted as channels, and must be three.
    
    The input image is considered in the RGB colorspace. Conceptually, the RGB
    colors are first mapped into HSV. A scale is then applied all the saturation
    values, and then remapped back to RGB colorspace.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    // sequence number for e.g. a goroutine in the previous
    // generation. The parser should wait to find a GoStatus
    // event before advancing into the next generation at all.
    // It turns out this situation is pretty rare; the GoStatus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis.kt

     * and CodeGen API. For example, AA generates `FirLiteralExpression` for an initializer of a property, while CodeGen API generates
     * `FirLazyExpression`. The difference can result in crashes. This class helps us test the IDE situation that first calls analysis
     * APIs and conducts CodeGen.
     */
    abstract class AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis : AbstractFirPluginPrototypeMultiModuleCompilerFacilityTest() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

         * in `A` that takes the type parameter `T` (fake override). Given such a fake override symbol, [unwrapFakeOverrides] recovers the
         * original declared symbol.
         *
         * Such situation can also happen for intersection symbols (in case of multiple super types containing symbols with identical signature
         * after specialization) and delegation.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. cmd/erasure-encode.go

    				return 0, err
    			}
    		}
    
    		eof := err == io.EOF || err == io.ErrUnexpectedEOF
    		if n == 0 && total != 0 {
    			// Reached EOF, nothing more to be done.
    			break
    		}
    
    		// We take care of the situation where if n == 0 and total == 0 by creating empty data and parity files.
    		blocks, err = e.EncodeData(ctx, buf[:n])
    		if err != nil {
    			return 0, err
    		}
    
    		if err = writer.Write(ctx, blocks); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/settings.md

    For example, if you have a function:
    
    ```Python
    @lru_cache
    def say_hi(name: str, salutation: str = "Ms."):
        return f"Hello {salutation} {name}"
    ```
    
    your program could execute like this:
    
    ```mermaid
    sequenceDiagram
    
    participant code as Code
    participant function as say_hi()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

     * there is a single differing attribute between all available variants that is missing from the request.
     * <p>
     * In this situation, we can provide a very brief message pointing to the exact solution needed.
     */
    public abstract class MissingAttributeAmbiguousGraphVariantsFailureDescriber extends AmbiguousGraphVariantsFailureDescriber {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/waiting_pods_map.go

    		// Allow() and Reject() calls are non-blocking. This property is guaranteed
    		// by using non-blocking send to this channel. This channel has a buffer of size 1
    		// to ensure that non-blocking send will not be ignored - possible situation when
    		// receiving from this channel happens after non-blocking send.
    		s: make(chan *framework.Status, 1),
    	}
    
    	wp.pendingPlugins = make(map[string]*time.Timer, len(pluginsMaxWaitTime))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top