Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 908 for haninge (0.13 sec)

  1. plugin/pkg/admission/serviceaccount/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package serviceaccount enforces all pods having an associated serviceaccount,
    // and all containers mounting the API token for that serviceaccount at a known location
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 830 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that informs about a test having started its execution.
     *
     * @since 2.4
     */
    public interface TestStartEvent extends TestProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 871 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/work/WorkItemFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.work;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a work item having finished its execution.
     *
     * @since 5.1
     */
    public interface WorkItemFinishEvent extends WorkItemProgressEvent, FinishEvent {
        @Override
        WorkItemOperationResult getResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 943 bytes
    - Viewed (0)
  4. docs/en/docs/benchmarks.md

        * If you are comparing Uvicorn, compare it against Daphne, Hypercorn, uWSGI, etc. Application servers.
    * **Starlette**:
        * Will have the next best performance, after Uvicorn. In fact, Starlette uses Uvicorn to run. So, it probably can only get "slower" than Uvicorn by having to execute more code.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a test having finished its execution. You can query the result of the
     * test using {@link #getResult()}.
     *
     * @since 2.4
     */
    public interface TestFinishEvent extends TestProgressEvent, FinishEvent {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmptyLineTrimmerOutputNormalizer.groovy

    import java.util.regex.Pattern
    
    /**
     * Allows a blank empty line in your sample output to match a blank line with any number of spaces in the actual output.
     *
     * This exists to avoid having to measure out "prefix" whitespace indentation and match it exactly in your sample output.
     */
    class EmptyLineTrimmerOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/apis/batch/v1beta1/conversion.go

    */
    
    package v1beta1
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addConversionFuncs(scheme *runtime.Scheme) error {
    	var err error
    	// Add field label conversions for kinds having selectable nothing but ObjectMeta fields.
    	for _, k := range []string{"Job", "JobTemplate", "CronJob"} {
    		kind := k // don't close over range variables
    		err = scheme.AddFieldLabelConversionFunc(SchemeGroupVersion.WithKind(kind),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 03 19:47:20 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/Network.java

       *       involving {@code view} will throw)
       *   <li>{@code hashCode()} does not throw
       *   <li>if {@code node} is re-added to the network after having been removed, {@code view}'s
       *       behavior is undefined
       * </ul>
       *
       * @throws IllegalArgumentException if {@code node} is not an element of this network
       */
      Set<N> adjacentNodes(N node);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. docs/tr/docs/how-to/general.md

    ## Dokümantasyon Etiketleri - OpenAPI
    
    *Yol operasyonlarınıza* etiketler ekleyerek dokümantasyon arayüzünde gruplar halinde görünmesini sağlamak için, [Tutorial - Path Operation Configurations - Tags](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank} sayfasını okuyun.
    
    ## Dokümantasyon Özeti ve Açıklaması - OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiShutdownIntegrationTest.groovy

    import spock.lang.Retry
    import spock.lang.Timeout
    
    @Ignore
    class ToolingApiShutdownIntegrationTest extends AbstractIntegrationSpec {
    
        @Retry(count = 3)
        @Timeout(30)
        def "tooling api can disconnect from hanging daemon"() {
            setup:
            settingsFile << "rootProject.name = 'client-runner'"
            buildFile << """
                plugins {
                    id 'java'
                }
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top