Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for Truong (1.68 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

                    // because it wasn't deployed, or it was deployed in the wrong place.
    
                    synchronized (result) {
                        result.addMissingArtifact(artifact);
                    }
                } catch (ArtifactResolutionException e) {
                    // This is really a wagon TransferFailedException so something went wrong after we successfully
                    // retrieved the metadata.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/BooleansTest.java

        assertThat(Booleans.asList(ARRAY_FALSE_TRUE).size()).isEqualTo(2);
      }
    
      @SuppressWarnings("BooleanArrayIndexOfBoolean")
      public void testAsListIndexOf() {
        assertThat(Booleans.asList(EMPTY).indexOf((Object) "wrong type")).isEqualTo(-1);
        assertThat(Booleans.asList(EMPTY).indexOf(true)).isEqualTo(-1);
        assertThat(Booleans.asList(ARRAY_FALSE).indexOf(true)).isEqualTo(-1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 15:43:29 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/asm.go

    			target = &a[2]
    			break
    		}
    		p.errorf("wrong number of arguments to %s instruction", op)
    		return
    	case 4:
    		if p.arch.Family == sys.S390X || p.arch.Family == sys.PPC64 {
    			// 4-operand compare-and-branch.
    			prog.From = a[0]
    			prog.Reg = p.getRegister(prog, op, &a[1])
    			prog.AddRestSource(a[2])
    			target = &a[3]
    			break
    		}
    		p.errorf("wrong number of arguments to %s instruction", op)
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. tests/joins_test.go

    	if len(results) == 0 {
    		t.Fatalf("no record find")
    	} else if results[0].Pet.UserID == nil || *(results[0].Pet.UserID) != user.ID {
    		t.Fatalf("wrong user id in pet")
    	} else if results[0].Pet.Name != user.Pets[0].Name {
    		t.Fatalf("wrong pet name")
    	}
    }
    
    func TestJoinArgsWithDB(t *testing.T) {
    	user := *GetUser("joins-args-db", Config{Pets: 2})
    	DB.Save(&user)
    
    	// test where
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        // A 4n+1 length string is never legal base64().
        assertFailsToDecode(base64(), "12345", "Invalid input length 5");
        // These have a combination of invalid length, unrecognized characters and wrong padding.
        assertFailsToDecode(base64(), "AB=C", "Unrecognized character: =");
        assertFailsToDecode(base64(), "A=BCD", "Invalid input length 5");
        assertFailsToDecode(base64(), "?", "Invalid input length 1");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Splitter.java

     * instead.
     *
     * <pre>{@code
     * // Do NOT do this
     * Splitter splitter = Splitter.on('/');
     * splitter.trimResults(); // does nothing!
     * return splitter.split("wrong / wrong / wrong");
     * }</pre>
     *
     * <p>For separator-based splitters that do not use {@code omitEmptyStrings}, an input string
     * containing {@code n} occurrences of the separator naturally yields an iterable of size {@code n +
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/validtype.go

    //
    //   P₁
    //         nest = A[A[string]]        <== type nest at B's instantiation time
    //         path = A[A[string]]->B[P]
    //
    // If we'd use the current nest it would correspond to the path
    // which will be wrong as we will see shortly. P's type argument
    // is A[string], which again must be evaluated in the type nest
    // that existed when A was instantiated with A[string]. That type
    // nest is empty:
    //
    //   A[string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/stackalloc.go

    			if f.pass.debug > stackDebug {
    				fmt.Printf("stackalloc OpArg %s to %s\n", v, loc)
    			}
    			f.setHome(v, loc)
    			continue
    		}
    		// You might think this below would be the right idea, but you would be wrong.
    		// It almost works; as of 105a6e9518 - 2021-04-23,
    		// GOSSAHASH=11011011001011111 == cmd/compile/internal/noder.(*noder).embedded
    		// is compiled incorrectly.  I believe the cause is one of those SSA-to-registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Joiner.java

     * static final} constants.
     *
     * <pre>{@code
     * // Bad! Do not do this!
     * Joiner joiner = Joiner.on(',');
     * joiner.skipNulls(); // does nothing!
     * return joiner.join("wrong", null, "wrong");
     * }</pre>
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#joiner">{@code Joiner}</a>.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Joiner.java

     * static final} constants.
     *
     * <pre>{@code
     * // Bad! Do not do this!
     * Joiner joiner = Joiner.on(',');
     * joiner.skipNulls(); // does nothing!
     * return joiner.join("wrong", null, "wrong");
     * }</pre>
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#joiner">{@code Joiner}</a>.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top