Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for Automatic (0.19 sec)

  1. cluster/gce/windows/testonly/install-ssh.psm1

    # on subsequent boots.
    function Start_OpenSshServices {
      ForEach ($service in ("sshd", "ssh-agent")) {
        net start ${service}
        Set-Service ${service} -StartupType Automatic
      }
    }
    
    # Installs open-ssh using the instructions in
    # https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH.
    #
    # After installation run StartProcess-WriteSshKeys to fetch ssh keys from the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMaker.java

      @CheckForNull Equivalence<Object> keyEquivalence;
    
      /**
       * Constructs a new {@code MapMaker} instance with default settings, including strong keys, strong
       * values, and no automatic eviction of any kind.
       */
      public MapMaker() {}
    
      /**
       * Sets a custom {@code Equivalence} strategy for comparing keys.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            Iterable<? extends File> classpath,
            Iterable<? extends File> modulepath,
            AdditionalClasspath additional,
            boolean isModule
        ) {
            DeprecationLogger.deprecateIndirectUsage("The automatic loading of test framework implementation dependencies")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/internal/xcoff/xcoff.go

    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    	C_LSYM    = 129 // Automatic variable allocated on stack
    	C_PSYM    = 130 // Argument to subroutine allocated on stack
    	C_RSYM    = 131 // Register variable
    	C_RPSYM   = 132 // Argument to function or procedure stored in register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                    <plugins>
                        <plugin>
                            <!--
                            The goal is to sign all artifacts so that the user may verify them before downloading.
                            The automatic build system may require your key ID, and passphrase specified using system properties:
                            -Dgpg.passphrase="<passphrase>" -Dgpg.keyname="<your key ID>"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMaker.java

      @CheckForNull Equivalence<Object> keyEquivalence;
    
      /**
       * Constructs a new {@code MapMaker} instance with default settings, including strong keys, strong
       * values, and no automatic eviction of any kind.
       */
      public MapMaker() {}
    
      /**
       * Sets a custom {@code Equivalence} strategy for comparing keys.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    			"associated WorkloadEntry is cleaned up.").Get()
    
    	WorkloadEntryHealthChecks = env.Register("PILOT_ENABLE_WORKLOAD_ENTRY_HEALTHCHECKS", true,
    		"Enables automatic health checks of WorkloadEntries based on the config provided in the associated WorkloadGroup").Get()
    
    	WorkloadEntryCrossCluster = env.Register("PILOT_ENABLE_CROSS_CLUSTER_WORKLOAD_ENTRY", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/schema-extra-example.md

    !!! info
        Even after OpenAPI 3.1.0 was released with this new simpler integration with JSON Schema, for a while, Swagger UI, the tool that provides the automatic docs, didn't support OpenAPI 3.1.0 (it does since version 5.0.0 🎉).
    
        Because of that, versions of FastAPI previous to 0.99.0 still used versions of OpenAPI lower than 3.1.0.
    
    ### Pydantic and FastAPI `examples`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    Resolved versions::
    This strategy publishes the versions that were resolved during the build, possibly by applying resolution rules and automatic conflict resolution.
    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/custom-response.md

    ```
    
    !!! warning
        A `Response` returned directly by your *path operation function* won't be documented in OpenAPI (for example, the `Content-Type` won't be documented) and won't be visible in the automatic interactive docs.
    
    !!! info
        Of course, the actual `Content-Type` header, status code, etc, will come from the `Response` object you returned.
    
    ### Document in OpenAPI and override `Response`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top