Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Truong (0.3 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.WRONG_ANNOTATION_TARGET) { firDiagnostic ->
            WrongAnnotationTargetImpl(
                firDiagnostic.a,
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.WRONG_ANNOTATION_TARGET_WITH_USE_SITE_TARGET) { firDiagnostic ->
            WrongAnnotationTargetWithUseSiteTargetImpl(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/callback.go

    		t.Fatal("locked OS thread on entry to TestCallbackPanic")
    	}
    	defer func() {
    		s := recover()
    		if s == nil {
    			t.Fatal("did not panic")
    		}
    		if s.(string) != "callback panic" {
    			t.Fatal("wrong panic:", s)
    		}
    		if lockedOSThread() {
    			t.Fatal("locked OS thread on exit from TestCallbackPanic")
    		}
    	}()
    	nestedCall(func() { panic("callback panic") })
    	panic("nestedCall returned")
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    I shall never get to twenty at that rate!  However, the
    Multiplication Table doesn't signify:  let's try Geography.
    London is the capital of Paris, and Paris is the capital of Rome,
    and Rome--no, THAT'S all wrong, I'm certain!  I must have been
    changed for Mabel!  I'll try and say "How doth the little--"'
    and she crossed her hands on her lap as if she were saying lessons,
    and began to repeat it, but her voice sounded hoarse and
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    I shall never get to twenty at that rate!  However, the
    Multiplication Table doesn't signify:  let's try Geography.
    London is the capital of Paris, and Paris is the capital of Rome,
    and Rome--no, THAT'S all wrong, I'm certain!  I must have been
    changed for Mabel!  I'll try and say "How doth the little--"'
    and she crossed her hands on her lap as if she were saying lessons,
    and began to repeat it, but her voice sounded hoarse and
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			expectedRespStatus: http.StatusForbidden,
    			accessKey:          "",
    			secretKey:          "",
    			shouldPass:         false,
    			fault:              None,
    		},
    		// Test case - 5
    		// Wrong auth header returns as bad request.
    		{
    			bucketName:         bucketName,
    			objectName:         objectName,
    			data:               bytesData,
    			dataLen:            len(bytesData),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertFalse(segment.accessQueue.contains(entry));
        assertFalse(segment.writeQueue.contains(entry));
        assertEquals(0, segment.count);
        assertNull(table.get(0));
    
        // reclaim wrong value reference
        table.set(0, entry);
        DummyValueReference<Object, Object> otherValueRef = DummyValueReference.create(value);
        entry.setValueReference(otherValueRef);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertFalse(segment.accessQueue.contains(entry));
        assertFalse(segment.writeQueue.contains(entry));
        assertEquals(0, segment.count);
        assertNull(table.get(0));
    
        // reclaim wrong value reference
        table.set(0, entry);
        DummyValueReference<Object, Object> otherValueRef = DummyValueReference.create(value);
        entry.setValueReference(otherValueRef);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  8. cmd/server_test.go

    }
    
    // TestObjectValidMD5 - First uploads an object with a valid Content-Md5 header and verifies the status,
    // then upload an object in a wrong Content-Md5 and validate the error response.
    func (s *TestSuiteCommon) TestObjectValidMD5(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// HTTP request to create the bucket.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} cannot convert as {propertyType}. */
        public static final String CONSTRAINTS_TypeAny_MESSAGE = "{constraints.TypeAny.message}";
    
        /** The key of the message: {item} has wrong URI. */
        public static final String CONSTRAINTS_UriType_MESSAGE = "{constraints.UriType.message}";
    
        /** The key of the message: {item} is invalid cron expression. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Guard the ready replica checking by server version ([#37303](https://github.com/kubernetes/kubernetes/pull/37303), [@krousey](https://github.com/krousey))
    * Fix issue when attempting to unmount a wrong vSphere volume ([#37413](https://github.com/kubernetes/kubernetes/pull/37413), [@BaluDontu](https://github.com/BaluDontu))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
Back to top