Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 410 for overriding (0.59 sec)

  1. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

        final Stack<E> previousElements = new Stack<>();
    
        /**
         * {@link #nextElements} if {@code next()} was called more recently then {@code previous},
         * {@link #previousElements} if the reverse is true, or -- overriding both of these -- {@code
         * null} if {@code remove()} or {@code add()} has been called more recently than either. We use
         * this to determine which stack to pop from on a call to {@code remove()} (or to pop from and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs.go

    		}
    		return m, nil
    	})
    }
    
    // Downgrade returns a build list for the target module
    // in which the given additional modules are downgraded,
    // potentially overriding the requirements of the target.
    //
    // The versions to be downgraded may be unreachable from reqs.Latest and
    // reqs.Previous, but the methods of reqs must otherwise handle such versions
    // correctly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableMultiset.java

     *
     * @author Jared Levy
     * @author Louis Wasserman
     * @since 2.0
     */
    @GwtCompatible(serializable = true, emulated = true)
    @SuppressWarnings("serial") // we're overriding default serialization
    @ElementTypesAreNonnullByDefault
    public abstract class ImmutableMultiset<E> extends ImmutableMultisetGwtSerializationDependencies<E>
        implements Multiset<E> {
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. chainable_api.go

    // By default, GORM uses soft deletion, marking records as "deleted"
    // by setting a timestamp on a specific field (e.g., `deleted_at`).
    // Unscoped allows queries to include records marked as deleted,
    // overriding the soft deletion behavior.
    // Example:
    //    var users []User
    //    db.Unscoped().Find(&users)
    //    // Retrieves all users, including deleted ones.
    func (db *DB) Unscoped() (tx *DB) {
    	tx = db.getInstance()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            then:
            skipped(task)
            assertToolchainUsages(events, jdkMetadata, "JavaLauncher")
        }
    
        def "emits toolchain usages for test that configures executable path overriding toolchain java extension"() {
            JvmInstallationMetadata jdkMetadata1 = AvailableJavaHomes.getJvmInstallationMetadata(AvailableJavaHomes.differentVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. src/go/doc/comment/parse.go

    type List struct {
    	// Items is the list items.
    	Items []*ListItem
    
    	// ForceBlankBefore indicates that the list must be
    	// preceded by a blank line when reformatting the comment,
    	// overriding the usual conditions. See the BlankBefore method.
    	//
    	// The comment parser sets ForceBlankBefore for any list
    	// that is preceded by a blank line, to make sure
    	// the blank line is preserved when printing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  7. operator/README.md

    [schema](pkg/apis/istio/v1alpha1/values_types.proto)). Values.yaml settings
    are overridden the same way as the new API, though a customized CR overlaid over default values for the selected
    profile. Here's an example of overriding some global level default values ([samples/values-global.yaml](samples/values-global.yaml)):
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: sds
      values:
        global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. src/net/listen_test.go

    	// linux, kernel version 3.0.0
    	//	net.ipv6.bindv6only=0 (overridable by sysctl or IPV6_V6ONLY option)
    	// openbsd, kernel version 5.0
    	//	net.inet6.ip6.v6only=1 (overriding is prohibited)
    
    	{"tcp", "", "tcp", "", syscall.EADDRINUSE},
    	{"tcp", "", "tcp", "0.0.0.0", syscall.EADDRINUSE},
    	{"tcp", "0.0.0.0", "tcp", "", syscall.EADDRINUSE},
    
    	{"tcp", "", "tcp", "::", syscall.EADDRINUSE},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * @since 2.0
     */
    @DoNotMock("Use ImmutableList.of or another implementation")
    @GwtCompatible(emulated = true)
    @SuppressWarnings("serial") // we're overriding default serialization
    @ElementTypesAreNonnullByDefault
    // TODO(kevinb): I think we should push everything down to "BaseImmutableCollection" or something,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableMap.java

     * @author Jesse Wilson
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @DoNotMock("Use ImmutableMap.of or another implementation")
    @GwtCompatible(serializable = true, emulated = true)
    @SuppressWarnings("serial") // we're overriding default serialization
    @ElementTypesAreNonnullByDefault
    public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable {
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top