Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 90 for somme (0.02 seconds)

  1. src/main/resources/fess_message_fr.properties

    constraints.LuhnCheck.message = La somme de contrôle Luhn Modulo 11 de {value} est incorrecte.
    constraints.Mod10Check.message = La somme de contrôle Modulo 10 de {value} est incorrecte.
    constraints.Mod11Check.message = La somme de contrôle Modulo 11 de {value} est incorrecte.
    constraints.ModCheck.message = La somme de contrôle {modType} de {value} est incorrecte.
    constraints.NotBlank.message = {item} est requis.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 14.1K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_aws/fess.json

            },
            "norwegian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Hallo", "verden", "Søk"]
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

            },
            "norwegian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["Hallo", "verden", "Søk"]
            },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt

                        public Source(String[] some) {}
                        public String foo(String[] bar) { return "some"; }
                    }
                """,
                v2 = """
                    import $nullableAnnotationName;
                    public class Source {
                        public Source(@Nullable String[] some) {}
                        public String foo(@Nullable String[] bar) { return "some"; }
                    }
                """
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 15 17:05:08 GMT 2025
    - 18K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractJavaNullabilityChangesTest.kt

                        public Source(@Nullable String some) {}
                        @Nullable public String nonFinalField = null;
                        public String foo(@Nullable String bar) { return "some"; }
                    }
                """,
                v2 = """
                    public class Source {
                        public Source(String some) {}
                        public String nonFinalField = "some";
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 04 09:55:47 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  6. architecture/README.md

    While a lot of Gradle source code runs only in the Gradle daemon, not all of it does so.
    When working on some source code it is important to be aware of the runtimes in which it will run, so that you don't break these constraints.
    There is some assistance in the IDE for this plus a lot of validation that is applied at build time and on CI, but it is useful to keep these constraints in mind as well.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinNullabilityChangesTest.kt

            checkNotBinaryCompatibleKotlin(
                v1 = """
                    class Source(some: String?) {
                        var someVar: String? = null
                        fun foo(bar: String?) {}
                    }
                """,
                v2 = """
                    class Source(some: String) {
                        var someVar: String = "some"
                        fun foo(bar: String) {}
                    }
                """
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 04 09:55:47 GMT 2025
    - 5K bytes
    - Click Count (0)
  8. .idea/inspectionProfiles/Gradle.xml

          </searchConfiguration>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jun 26 21:49:47 GMT 2024
    - 15.4K bytes
    - Click Count (0)
  9. architecture/build-execution-model.md

    # Build execution model
    
    At the highest level, Gradle's execution model is quite simple:
    
    Below is the protocol in some more detail:
    
    1. The client looks for a compatible idle daemon. If there isn't one, it starts a new daemon.
    2. The client connects to the idle daemon and sends it a request to do some work. If the daemon is no longer running, the client starts again.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 907 bytes
    - Click Count (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullUnmarkedChangesTest.kt

                        public String[] baz() { return new String[] {"some"}; }
                    }
                """,
                v2 = """
                    public class Source {
                        @$nullUnmarkedAnnotationName public String foo() { return "bar"; }
                        public @$nullUnmarkedAnnotationName String[] baz() { return new String[] {"some", null}; }
                    }
                """
            ) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 5.1K bytes
    - Click Count (0)
Back to Top