Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 193 for EG (0.02 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/GeneratedViewState.java

    /**
     * The backing state for a generated view.
     *
     * Implementations should provide an equals() and hashCode() method.
     */
    public interface GeneratedViewState {
        /**
         * Returns a display name to use for the view, eg as its toString() value or in error messages.
         */
        String getDisplayName();
    
        /**
         * Returns the value of the given property.
         */
        Object get(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/no/stopwords.txt

    hver
    hvem
    vors
    hvis
    både
    bare
    enn
    fordi
    før
    mange
    også
    slik
    vært
    være
    båe
    begge
    siden
    dykk
    dykkar
    dei
    deira
    deires
    deim
    di
    då
    eg
    ein
    eit
    eitt
    elles
    honom
    hjå
    ho
    hoe
    henne
    hennar
    hennes
    hoss
    hossen
    ikkje
    ingi
    inkje
    korleis
    korso
    kva
    kvar
    kvarhelst
    kven
    kvi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 994 bytes
    - Viewed (0)
  3. samples/bookinfo/README.md

    ```
    
    Verify that expected image eg: `user1/examples-bookinfo-*:test1.0` is updated in `platform/kube/bookinfo*.yaml` files.
    
    ## Tests
    
    Test that the bookinfo samples work with the latest image eg: `user1/examples-bookinfo-*:test1.0` that you pushed.
    
    ```bash
    $ cd ../../
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/build/JavaEnvironment.java

         * include system properties passed as -Dfoo=bar. They may include extra properties added by default if no user jvm arguments are specified, like those required by the Gradle daemon (eg.
         * MaxPermSize).
         *
         * @since 1.0-milestone-8
         */
        List<String> getJvmArguments();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    	for y := 0; y != r.Dy(); y++ {
    		for x := 0; x != r.Dx(); x++ {
    			// er, eg and eb are the pixel's R,G,B values plus the
    			// optional Floyd-Steinberg error.
    			sr, sg, sb, sa := pxRGBA(sp.X+x, sp.Y+y)
    			er, eg, eb, ea := int32(sr), int32(sg), int32(sb), int32(sa)
    			if floydSteinberg {
    				er = clamp(er + quantErrorCurr[x+1][0]/16)
    				eg = clamp(eg + quantErrorCurr[x+1][1]/16)
    				eb = clamp(eb + quantErrorCurr[x+1][2]/16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedExecutionAccess.java

            LISTENER.set(NO_OP);
        }
    
        /**
         * Called by generated code
         *
         * Invoked when the code accesses the injected service of type that disallowed at execution time (eg. Project)
         *
         * @param injectedServiceType the type of the injected service that was accessed
         * @param consumer class name of consumer that contains the code accesses the injected service
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 17 20:16:53 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ComponentSpecIdentifier.java

         * hierarchy delimiters. As such, it can be safely used for task or file names.
         *
         * Implementation should attempt to produce a somewhat human consumable name (eg not a uuid).
         */
        String getProjectScopedName();
    
        /**
         * The path of the project that contains this component.
         */
        String getProjectPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/analysis/tensor_array_side_effect_analysis.h

    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    
    namespace tensorflow {
    namespace tfrt_compiler {
    
    // Return true if it is a TensorArrayOp, eg. TensorArrayV3Op.
    bool IsTensorArrayOp(mlir::Operation* op);
    
    // This class provides utilities for analyzing side effects for TensorArray ops
    // in the graph. mlir::TF::SideEffectAnalysis currently produces suboptimal
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

            int cols = consoleMetaData.getCols();
            if (cols > 0) {
                maxWidth = cols - 1;
            } else {
                // Assume 80 wide. This is to minimize wrapping on console where we don't know the width (eg mintty)
                // It's not intended to be a correct solution, simply a work around
                maxWidth = 79;
            }
            if (maxWidth < formattedString.length()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ComponentIdentifierParserFactory.java

                String[] parts = notation.split(":");
                if (parts.length != 3) {
                    throw new InvalidUserDataException("Invalid module component notation: " + notation + " : must be a valid 3 part identifier, eg.: org.gradle:gradle:1.0");
                }
                return DefaultModuleComponentIdentifier.newId(
                    DefaultModuleIdentifier.newId(validate(parts[0].trim(), notation), validate(parts[1].trim(), notation)),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top