Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 202 for confirm (0.03 sec)

  1. okhttp/build.gradle.kts

      jvmSignature(rootProject.libs.codehaus.signature.java18) { artifact { type = "signature" } }
    
      checkstyleConfig(rootProject.libs.checkStyle) {
        isTransitive = false
      }
    }
    
    // Animal Sniffer confirms we generally don't use APIs not on Java 8.
    configure<AnimalSnifferExtension> {
      annotation = "okhttp3.internal.SuppressSignatureCheck"
      defaultTargets("jvmMain", "debug")
    }
    
    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. build.gradle.kts

      if (project.name != "okhttp") {
        configure<CheckstyleExtension> {
          config = resources.text.fromArchiveEntry(checkstyleConfig, "google_checks.xml")
          toolVersion = rootProject.libs.versions.checkStyle.get()
          sourceSets = listOf(project.sourceSets["main"])
        }
    
        // Animal Sniffer confirms we generally don't use APIs not on Java 8.
        configure<AnimalSnifferExtension> {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. cmd/bucket-notification-handlers.go

    			for i, queue := range config.QueueList {
    				// Remove ARN not found queues, because we previously allowed
    				// adding unexpected entries into the config.
    				//
    				// With newer config disallowing changing / turning off
    				// notification targets without removing ARN in notification
    				// configuration we won't see this problem anymore.
    				if reflect.DeepEqual(queue.ARN, arnErr.ARN) && i < len(config.QueueList) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. cmd/bucket-quota.go

    			internalLogIf(GlobalContext, errors.New("Detected older 'fifo' quota config, 'fifo' feature is removed and not supported anymore. Please clear your quota configs using 'mc quota clear alias/bucket' and use 'mc ilm add' for expiration of objects"), logger.WarningKind)
    			return quotaCfg, fmt.Errorf("invalid quota type 'fifo'")
    		}
    		return quotaCfg, fmt.Errorf("Invalid quota config %#v", quotaCfg)
    	}
    	return
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Aug 06 23:48:58 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/server-workers.md

    Você pode usar essas ferramentas e ideias se estiver configurando **seu próprio sistema de implantação** enquanto cuida dos outros conceitos de implantação.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jan 09 20:41:07 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  6. docs/es/docs/how-to/custom-docs-ui-assets.md

    ```JavaScript
    /*! For license information please see redoc.standalone.js.LICENSE.txt */
    !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("null")):
    ...
    ```
    
    Eso confirma que puedes servir archivos estáticos desde tu aplicación, y que colocaste los archivos estáticos para la documentación en el lugar correcto.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Apr 28 18:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java

            assertTrue(ipc.shouldForceSigning());
    
            // Case 2: config disabled
            when(config.isIpcSigningEnforced()).thenReturn(false);
            assertFalse(ipc.shouldForceSigning());
    
            // Case 3: anonymous credentials
            when(config.isIpcSigningEnforced()).thenReturn(true);
            when(creds.isAnonymous()).thenReturn(true);
            assertFalse(ipc.shouldForceSigning());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  8. docs/sts/casdoor.md

    MINIO_IDENTITY_OPENID_COMMENT       (sentence)  optionally add a comment to this setting
    ```
    
    Set `identity_openid` config with `config_url`, `client_id` and restart MinIO
    
    ```
    ~ mc admin config set myminio identity_openid config_url="http://CASDOOR_ENDPOINT/.well-known/openid-configuration" client_id=<client id> client_secret=<client secret> claim_name="tag"
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/witness/WitnessRegistration.java

         * Enumeration of possible witness registration states.
         */
        public enum WitnessRegistrationState {
            /** Registration is in progress */
            REGISTERING,
            /** Registration is active and confirmed */
            REGISTERED,
            /** Unregistration is in progress */
            UNREGISTERING,
            /** Registration has failed */
            FAILED,
            /** Registration has expired due to timeout */
            EXPIRED
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. docs/es/docs/how-to/separate-openapi-schemas.md

    ...entonces el campo `description` **no será requerido**. Porque tiene un valor por defecto de `None`.
    
    ### Modelo de Entrada en la Documentación
    
    Puedes confirmar eso en la documentación, el campo `description` no tiene un **asterisco rojo**, no está marcado como requerido:
    
    <div class="screenshot">
    <img src="/img/tutorial/separate-openapi-schemas/image01.png">
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top