Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for Identical (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		{
    			name: "reject two identical indefinite-length text string keys split into chunks differently into struct",
    			in:   hex("a27f626865636c6c6fff017f616864656c6c6fff02"), // {(_ "he", "llo"): 1, (_ "h", "ello"): 2}
    			into: struct {
    				Hello int `json:"hello"`
    			}{},
    			assertOnError: assertIdenticalError(&cbor.DupMapKeyError{Key: string("hello"), Index: 1}),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/README

    	The command succeeds if the file contents are identical.
    	File1 can be 'stdout' or 'stderr' to compare the stdout or
    	stderr buffer from the most recent command.
    
    cmpenv [-q] file1 file2
    	compare files for differences, with environment expansion
    
    	By convention, file1 is the actual data and file2 is the
    	expected data.
    	The command succeeds if the file contents are identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			}
    			var mismatched []int
    			for i, expr := range call.Args {
    				if pass.TypesInfo.Types[expr].Type == nil {
    					return true
    				}
    				t := pass.TypesInfo.Types[expr].Type
    				if !types.Identical(t, params.At(i+1).Type()) {
    					mismatched = append(mismatched, i)
    				}
    			}
    			// If just one of the types is mismatched report for that
    			// type only. Otherwise report for the whole call to (*testing.F).Add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top