Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 566 for mirror (0.04 sec)

  1. okhttp/build.gradle.kts

    afterEvaluate {
      tasks.withType<Test> {
        if (javaLauncher.get().metadata.languageVersion.asInt() < 9) {
          // Work around robolectric requirements and limitations
          // https://cs.android.com/android-studio/platform/tools/base/+/mirror-goog-studio-main:build-system/gradle-core/src/main/java/com/android/build/gradle/tasks/factory/AndroidUnitTest.java;l=339
          allJvmArgs = allJvmArgs.filter { !it.startsWith("--add-opens") }
        }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.34.md

    - Simplied validation error message for invalid fields by removing redundant field name. ([#132513](https://github.com/kubernetes/kubernetes/pull/132513), [@xiaoweim](https://github.com/xiaoweim)) [SIG API Machinery, Apps, Auth, Node and Scheduling]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.32.md

      If you specify the kubelet command line flag `--runonce`, this is an error.
      Setting `runOnce` in a kubelet configuration file is also an error, and specifying any
      value for that configuration option is now deprecated. ([#126336](https://github.com/kubernetes/kubernetes/pull/126336), [@HirazawaUi](https://github.com/HirazawaUi)) [SIG Node and Scalability]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.33.md

    
    **Affected Versions**:
      - kube-apiserver v1.32.0 - v1.32.5
      - kube-apiserver v1.33.0 - v1.33.1
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/RequestParamTest.java

        }
    
        // Sanity: Enum.valueOf(Class, String) behaves identically to RequestParam.valueOf(String)
        @Test
        @DisplayName("Enum.valueOf mirrors RequestParam.valueOf for valid names")
        void enumValueOfParity() {
            for (RequestParam rp : RequestParam.values()) {
                assertSame(rp, Enum.valueOf(RequestParam.class, rp.name()));
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

        CyclicBarrier barrier = new CyclicBarrier(2);
        // we need to make sure the error gets thrown on a different thread.
        ExecutorService service = newSingleThreadExecutor();
        try {
          SequentialExecutor executor = new SequentialExecutor(service);
          Runnable errorTask =
              new Runnable() {
                @Override
                public void run() {
                  throw new MyError();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  7. docs/en/data/external_links.yml

    author_link: https://bolha.us/@dunossauro link: https://fastapidozero.dunossauro.com/ title: FastAPI do ZERO - author: Jessica Temporal author_link: https://jtemporal.com/socials link: https://jtemporal.com/dicas-para-migrar-de-flask-para-fastapi-e-vice-versa/ title: Dicas para migrar uma aplicação de Flask para FastAPI e vice-versa Russian: - author: Troy Köhler author_link: https://www.linkedin.com/in/trkohler/ link: https://trkohler.com/fast-api-introduction-to-framework title: 'FastAPI: знакомимся...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 23K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

        public static final String MAVEN_VERSION_MAJOR = "maven.version.major";
    
        /**
         * Maven minor version: contains the minor segment of this Maven version.
         *
         * @since 4.0.0
         */
        @Config(readOnly = true, source = Config.Source.SYSTEM_PROPERTIES)
        public static final String MAVEN_VERSION_MINOR = "maven.version.minor";
    
        /**
         * Maven patch version: contains the patch segment of this Maven version.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 25 11:08:20 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. tests/gaussdb_test.go

    	var result Yasuo
    	if err := DB.First(&result, "id = ?", yasuo.ID).Error; err != nil || yasuo.Name != "jinzhu" {
    		t.Errorf("No error should happen, but got %v", err)
    	}
    
    	if err := DB.Where("id = $1", yasuo.ID).First(&Yasuo{}).Error; err != nil || yasuo.Name != "jinzhu" {
    		t.Errorf("No error should happen, but got %v", err)
    	}
    
    	yasuo.Name = "jinzhu1"
    	if err := DB.Save(&yasuo).Error; err != nil {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java

        }
    
        /**
         * Test constructor DcerpcException(int error) with an unknown error code.
         */
        @Test
        void testConstructorWithError_unknownCode() {
            int errorCode = 0x12345678; // An arbitrary unknown error code
            DcerpcException exception = new DcerpcException(errorCode);
    
            assertEquals(errorCode, exception.getErrorCode(), "Error code should match the input.");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top