Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 667 for Differences (0.39 sec)

  1. guava/src/com/google/common/collect/SortedMapDifference.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.SortedMap;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object representing the differences between two sorted maps.
     *
     * @author Louis Wasserman
     * @since 8.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface SortedMapDifference<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. src/regexp/testdata/README

    nullsubexpr.dat	http://www2.research.att.com/~gsf/testregex/nullsubexpr.dat
    repetition.dat	http://www2.research.att.com/~gsf/testregex/repetition.dat
    
    The test data has been edited to reflect RE2/Go differences:
      * In a star of a possibly empty match like (a*)* matching x,
        the no match case runs the starred subexpression zero times,
        not once.  This is consistent with (a*)* matching a, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 27 20:18:25 UTC 2015
    - 957 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    import org.gradle.internal.hash.Hasher;
    
    import java.io.File;
    
    /**
     * Classpath element transform factory. There are some differences when instrumenting classes to be loaded by the instrumenting agent, this interface encapsulates them.
     */
    public interface ClasspathElementTransformFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ListValueSnapshot.java

                if (element != newElement) {
                    break;
                }
                newElement = null;
            }
            if (pos == elements.size() && pos == list.size()) {
                // Same size and no differences
                return this;
            }
    
            // Copy the snapshots whose values are the same, then snapshot remaining values
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/FreezeInstructionsPrintingArchRule.java

            } catch (RuntimeException e) {
                if (e.getMessage().contains("freeze.store")) {
                    throw new RuntimeException("ArchUnit violations changed, please refreeze and check the differences by running ./gradlew architecture-test:test -ParchunitRefreeze", e);
                } else {
                    throw e;
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/apis/extensions/types.go

    DISCLAIMER: The implementation of the experimental API group itself is
    a temporary one meant as a stopgap solution until kubernetes has proper
    support for multiple API groups. The transition may require changes
    beyond registration differences. In other words, experimental API group
    support is experimental.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:21:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/fix/doc.go

    directory tree.  When fix rewrites a file, it prints a line to standard
    error giving the name of the file and the rewrite applied.
    
    If the -diff flag is set, no files are rewritten. Instead fix prints
    the differences a rewrite would introduce.
    
    The -r flag restricts the set of rewrites considered to those in the
    named list.  By default fix considers all known rewrites.  Fix's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/README.md

    ```sh
    go test k8s.io/api -run /apps.v1.Deployment/
    ```
    
    Failures to decode, to round-trip identical bytes, or to decode identical objects from json/yaml/protobuf,
    will output detailed errors about the differences encountered. Detailed errors about protobuf differences
    requires `protoc` to be available on your `$PATH`.
    
    In exceptional cases, new non-pointer fields were added to existing API types that serialized zero values,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Optional.java

     * class was added for Java 8. The two classes are extremely similar, but incompatible (they cannot
     * share a common supertype). <i>All</i> known differences are listed either here or with the
     * relevant methods below.
     *
     * <ul>
     *   <li>This class is serializable; {@code java.util.Optional} is not.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. releasenotes/notes/inbound-passthrough.yaml

          variable in Istiod.
    
          Previously, requests would be forwarded to `localhost`. This leads to two important differences compared to running applications
          without Istio:
    
          * Applications that bind to `localhost` will be exposed to external pods.
          * Applications that bind to `<POD_IP>` will not be exposed to external pods.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top