Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 370 for IsSame (0.1 sec)

  1. src/net/http/pattern_test.go

    	} else {
    		got = err.Error()
    	}
    	want := "matches the same requests as"
    	if !strings.Contains(got, want) {
    		t.Errorf("got\n%s\nwant\n%s", got, want)
    	}
    }
    
    func TestDescribeConflict(t *testing.T) {
    	for _, test := range []struct {
    		p1, p2 string
    		want   string
    	}{
    		{"/a/{x}", "/a/{y}", "the same requests"},
    		{"/", "/{m...}", "the same requests"},
    		{"/a/{x}", "/{y}/b", "both match some paths"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            def jarFile4 = inputFilesDir.file('lib4.jar')
            createJarFileWithProviderConfigurationFile(jarFile4, serviceType, """
    # This is some same file
    # Ignore comment
    org.gradle.api.internal.tasks.CompileServices
    # Too many comments""")
            def jarFile5 = inputFilesDir.file('lib5.jar')
            createJarFileWithResources(jarFile5, [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @return The files of this configuration.
         */
        Set<File> resolve();
    
        /**
         * Takes a closure which gets coerced into a {@link Spec}. Behaves otherwise in the same way as
         * {@link #files(org.gradle.api.specs.Spec)}.
         *
         * @implSpec Usage: This method should only be called on resolvable configurations and should fail if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

            Supplier<T> readFromDisk
        ) {
            return virtualFileSystem.findSnapshot(location)
                .map(snapshotProcessor)
                // Avoid snapshotting the same location at the same time
                .orElseGet(() -> producingSnapshots.guardByKey(location,
                    () -> virtualFileSystem.findSnapshot(location)
                        .map(snapshotProcessor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Shorts.java

       * Calling this method is as thread-safe as calling that method.
       *
       * @param collection a collection of {@code Number} instances
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       * @since 1.0 (parameter was {@code Collection<Short>} before 12.0)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Network.java

       */
      boolean hasEdgeConnecting(EndpointPair<N> endpoints);
    
      //
      // Network identity
      //
    
      /**
       * Returns {@code true} iff {@code object} is a {@link Network} that has the same elements and the
       * same structural relationships as those in this network.
       *
       * <p>Thus, two networks A and B are equal if <b>all</b> of the following are true:
       *
       * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Shorts.java

       * Calling this method is as thread-safe as calling that method.
       *
       * @param collection a collection of {@code Number} instances
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       * @since 1.0 (parameter was {@code Collection<Short>} before 12.0)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     * those tasks.
     *
     * <p>Submitted tasks have a happens-before order as defined in the Java Language Specification.
     * Tasks execute with the same happens-before order that the function calls to {@link #submit} and
     * {@link #submitAsync} that submitted those tasks had.
     *
     * <p>This class has limited support for cancellation and other "early completions":
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    	case oldtrace.EvGoSysCall:
    		// Look for the next event for the same G to determine if the syscall
    		// blocked.
    		blocked := false
    		it.events.All()(func(nev *oldtrace.Event) bool {
    			if nev.G != ev.G {
    				return true
    			}
    			// After an EvGoSysCall, the next event on the same G will either be
    			// EvGoSysBlock to denote a blocking syscall, or some other event
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    										expectedClusters = cluster.Clusters{from.Config().Cluster}
    									} else {
    										// Since we're exporting only the endpoints in the exportCluster, depending
    										// on where we call service B from, we'll reach a different set of endpoints.
    										// If we're calling from exportCluster, it will be the same as cluster-local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top