Search Options

Results per page
Sort
Preferred Languages
Advance

Results 851 - 860 of 2,748 for Same (0.62 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java

                        Arguments.of(false, null, false, "Should not be applicable when --all=false"),
                        Arguments.of(null, "4.0.0", false, "Should not be applicable for same version (4.0.0)"),
                        Arguments.of(false, "4.1.0", true, "Should be applicable for model upgrade even when --all=false"),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 38.8K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    nt.performFor(oa.getName(), "name", oa::setName);
                    nt.performFor(oa.getVersion(), "version", oa::setVersion);
                });
                a.map(Activation::getProperty).ifPresent(pa -> {
                    Interpolation nt = new Interpolation(pa, interpolator::interpolate);
                    nt.performFor(pa.getName(), "name", pa::setName);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
  3. docs/smb3-features/06-witness-protocol-design.md

            // Check if notification is relevant to this registration
            String resourceName = notification.getResourceName();
            String shareName = registration.getShareName();
            
            // Match by share name or server address
            return resourceName.equalsIgnoreCase(shareName) ||
                   resourceName.equals(registration.getServerAddress().getHostAddress());
        }
        
        private void checkHeartbeats() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * comparison to determine equality of keys. Its {@link Cache#asMap} view will therefore
       * technically violate the {@link Map} specification (in the same way that {@link IdentityHashMap}
       * does).
       *
       * <p>Entries with keys that have been garbage collected may be counted in {@link Cache#size}, but
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.6K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        // ideographic space
        assertThat(parse("http://h/\u3000").encodedPath).isEqualTo("/%E3%80%80")
      }
    
      @Test
      fun newBuilderResolve() {
        // Non-exhaustive tests because implementation is the same as resolve.
        val base = parse("http://host/a/b")
        assertThat(base.newBuilder("https://host2")!!.build())
          .isEqualTo(parse("https://host2/"))
        assertThat(base.newBuilder("//host2")!!.build())
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

      }
    
      /**
       * Test to confirm that events are reported at the time they occur and no earlier and no later.
       * This inserts a bunch of synthetic 250 ms delays into both client and server and confirms that
       * the same delays make it back into the events.
       *
       * We've had bugs where we report an event when we request data rather than when the data actually
       * arrives. https://github.com/square/okhttp/issues/5578
       */
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.26.md

    All container images are available as manifest lists and support the described
    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.9.md

    *   StatefulSet controller now creates a label for each Pod in a StatefulSet. The label is `statefulset.kubernetes.io/pod-name`, where `pod-name` = the name of the Pod. This allows users to create a Service per Pod to expose a connection to individual Pods. ([#55329](https://github.com/kubernetes/kubernetes/pull/55329),[ @kow3ns](https://github.com/kow3ns))
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java

                            break;
                        }
                    }
                }
            }
            return commonRoot;
        }
    
        /**
         * Writes a Document to a file using the same format as the existing codebase.
         */
        private void writePomToFile(Document document, Path filePath) throws Exception {
            Files.writeString(filePath, document.toXml());
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 37K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                            /*
                             * Some pipes may require that the hostname in the tree connect
                             * be the netbios name. So if we have the netbios server name
                             * from the NTLMSSP type 2 message, and the share is IPC$, we
                             * assert that the tree connect path uses the netbios hostname.
                             */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top