Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 223 for Identical (0.14 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

            "with an arbitrary name and no classifier"           | "optional-feature-1.9.jar"             | null               | "Invalid publication 'ivy': multiple artifacts with the identical name, extension, type and classifier ('publishTest', jar', 'jar', 'null'"
            "with an arbitrary name and a classifier"            | "other-1.9.jar"                        | "optional-feature" | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            when:
            publisher.publish(publication, repository)
    
            then:
            def t = thrown InvalidIvyPublicationException
            t.message == "Invalid publication 'pub-name': multiple artifacts with the identical name, extension, type and classifier ('name', ext1', 'type', 'classified')."
        }
    
        def "cannot publish artifact with same attributes as ivy.xml"() {
            given:
            IvyArtifact artifact1 = Stub() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

            while (true) {
                final MyToken token = que.poll();
                if (token == null) {
                    return null;
                }
                if (prev == null || !prev.identical(token)) {
                    return token;
                }
            }
        }
    
        void consultDictionary() throws IOException {
            if (synonymMap == null) {
                return;
            }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/Graphs.java

       */
      public static <N> Graph<N> transpose(Graph<N> graph) {
        if (!graph.isDirected()) {
          return graph; // the transpose of an undirected graph is an identical graph
        }
    
        if (graph instanceof TransposedGraph) {
          return ((TransposedGraph<N>) graph).graph;
        }
    
        return new TransposedGraph<>(graph);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/validtype.go

    			return false
    		}
    
    		// If the current type t is also found in nest, (the memory of) t is
    		// embedded in itself, indicating an invalid recursive type.
    		for _, e := range nest {
    			if Identical(e, t) {
    				// We have a cycle. If t != t.Origin() then t is an instance of
    				// the generic type t.Origin(). Because t is in the nest, t must
    				// occur within the definition (RHS) of the generic type t.Origin(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/go/types/validtype.go

    			return false
    		}
    
    		// If the current type t is also found in nest, (the memory of) t is
    		// embedded in itself, indicating an invalid recursive type.
    		for _, e := range nest {
    			if Identical(e, t) {
    				// We have a cycle. If t != t.Origin() then t is an instance of
    				// the generic type t.Origin(). Because t is in the nest, t must
    				// occur within the definition (RHS) of the generic type t.Origin(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                    if (plural) {
                        output.append(String.format("There are %d more failures with identical causes.", suppressedDuplicateBranchCount));
                    } else {
                        output.append("There is 1 more failure with an identical cause.");
                    }
                }
            }
        }
    
        private void fillInFailureResolution(FailureDetails details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    However:
    
    - it will perform HTTP HEAD requests on metadata files but _will not re-download them_ if they are identical
    - it will perform HTTP HEAD requests on artifact files but _will not re-download them_ if they are identical
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/README.md

    #### Example Asciidoctor multi-language sample declaration
    
    ```asciidoc
    .Customizing what Gradle logs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. pkg/kubelet/config/config_test.go

    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new")))
    
    	// should ignore ADDs that are identical
    	expectNoPodUpdate(t, ch)
    
    	// an kubetypes.ADD should be converted to kubetypes.UPDATE
    	pod := CreateValidPod("foo", "new")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top