Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 577 for starred (0.2 sec)

  1. tests/generics_test.go

    		t.Fatalf("no primary key found for select-only user: %v", selectOnly)
    	}
    
    	if stored, err := gorm.G[User](DB).Where("id = ?", selectOnly.ID).First(ctx); err != nil {
    		t.Fatalf("failed to reload select-only user, got error: %v", err)
    	} else if stored.Name != selectOnly.Name || stored.Age != 0 {
    		t.Errorf("unexpected select-only user state, got %#v", stored)
    	}
    
    	omitAge := User{Name: "GenericsCreateOmitAge", Age: 88}
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sun Nov 02 14:09:18 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/mvn.cmd

      echo The JAVA_HOME environment variable is not defined correctly, so Apache Maven cannot be started. >&2
      echo JAVA_HOME is set to "%JAVA_HOME%", but "%%JAVA_HOME%%\bin\java.exe" does not exist. >&2
      goto error
    )
    
    :checkJavaCmd
    if not exist "%JAVACMD%" (
      echo The java.exe command does not exist in PATH nor is JAVA_HOME set, so Apache Maven cannot be started. >&2
      goto error
    )
    
    @REM Check Java version by testing the Java 17+ flag
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 10 16:40:06 UTC 2025
    - 10.7K bytes
    - Viewed (3)
  3. guava-tests/test/com/google/common/primitives/IntsTest.java

      }
    
      /**
       * Encodes an integer as a string with given radix, then uses {@link Ints#tryParse(String, int)}
       * to parse the result. Asserts the result is the same as what we started with.
       */
      private static void radixEncodeParseAndAssertEquals(Integer value, int radix) {
        assertWithMessage("Radix: %s", radix)
            .that(Ints.tryParse(Integer.toString(value, radix), radix))
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:45:32 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  4. api/maven-api-plugin/src/main/java/org/apache/maven/api/plugin/descriptor/package-info.java

     * under the License.
     */
    
    /**
     * Provides classes for Maven plugin descriptors that define plugin metadata, configuration,
     * and execution parameters. These descriptors are typically stored in plugin.xml files
     * within the META-INF/maven directory of plugin JARs.
     *
     * @since 4.0.0
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 04 14:17:18 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CommonMatcher.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * The subset of the {@link java.util.regex.Matcher} API which is used by this package, and also
     * shared with the {@code re2j} library. For internal use only. Please refer to the {@code Matcher}
     * javadoc for details.
     */
    @GwtCompatible
    abstract class CommonMatcher {
      public abstract boolean matches();
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. .github/workflows/release-drafter.yml

    # under the License.
       
    name: Release Drafter
    on:
      push:
        branches:
          - master
      workflow_dispatch:
    
    jobs:
       update_release_draft:
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:30:05 UTC 2025
    - 993 bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

    `Depends()` erhält einen `scope`-Parameter, der sein kann:
    
    * `"function"`: startet die Abhängigkeit vor der *Pfadoperation-Funktion*, die den Request bearbeitet, beendet die Abhängigkeit nach dem Ende der *Pfadoperation-Funktion*, aber **bevor** die Response an den Client zurückgesendet wird. Die Abhängigkeitsfunktion wird also **um** die *Pfadoperation-**Funktion*** **herum** ausgeführt.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

     *
     * <p>The class uses a ParamMap internally which provides case format conversion
     * between camelCase and snake_case parameter names for flexible parameter access.
     * Parameters can be stored as any Object type and retrieved with type conversion
     * support for common types like String.</p>
     *
     * <p>This class is commonly used to pass configuration parameters to data store
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  9. .github/release-drafter-3.x.yml

    # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    
    _extends: maven-gh-actions-shared:.github/release-drafter.yml
    tag-template: maven-$RESOLVED_VERSION
    
    # Override replacers to strip backport branch prefixes and handle JIRA links
    replacers:
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 13:07:10 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/timer/TimeoutManager.java

                thread = new Thread(this, "CoreLib-TimeoutManager");
                thread.setDaemon(true);
                thread.start();
                if (logger.isDebugEnabled()) {
                    logger.debug("TimeoutManager started.");
                }
            }
        }
    
        /**
         * Stops the process.
         */
        public synchronized void stop() {
            if (thread != null) {
                thread.interrupt();
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top