Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for ants (0.67 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorFactory.java

    import java.io.Serializable;
    
    /**
     * Implementation of {@link WorkerTestClassProcessorFactory} which instantiates a {@link JUnitTestClassProcessor}.
     * This class is loaded on test workers themselves and acts as the entry-point to running JUnit 4 tests on a test worker.
     */
    class JUnitTestClassProcessorFactory implements WorkerTestClassProcessorFactory, Serializable {
        private final JUnitSpec spec;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/snapshot.go

    	havePodsWithAffinityNodeInfoList []*framework.NodeInfo
    	// havePodsWithRequiredAntiAffinityNodeInfoList is the list of nodes with at least one pod declaring
    	// required anti-affinity terms.
    	havePodsWithRequiredAntiAffinityNodeInfoList []*framework.NodeInfo
    	// usedPVCSet contains a set of PVC names that have one or more scheduled pods using them,
    	// keyed in the format "namespace/name".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNgTestClassProcessorFactory.java

    import java.io.Serializable;
    import java.util.List;
    
    /**
     * Implementation of {@link WorkerTestClassProcessorFactory} which instantiates a {@link TestNGTestClassProcessor}.
     * This class is loaded on test workers themselves and acts as the entry-point to running TestNG tests on a test worker.
     */
    class TestNgTestClassProcessorFactory implements WorkerTestClassProcessorFactory, Serializable {
        private final File testReportDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessorFactory.java

    import java.lang.reflect.Constructor;
    
    /**
     * Implementation of {@link WorkerTestClassProcessorFactory} which instantiates a {@code JUnitPlatformTestClassProcessor}.
     * This class is loaded on test workers themselves and acts as the entry-point to running JUnit Platform tests on a test worker.
     */
    class JUnitPlatformTestClassProcessorFactory implements WorkerTestClassProcessorFactory, Serializable {
        private final JUnitPlatformSpec spec;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/go/ast/print.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains printing support for ASTs.
    
    package ast
    
    import (
    	"fmt"
    	"go/token"
    	"io"
    	"os"
    	"reflect"
    )
    
    // A FieldFilter may be provided to [Fprint] to control the output.
    type FieldFilter func(name string, value reflect.Value) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. samples/certs/README.md

    This directory contains sample pre-generated certificate and keys to demonstrate how an operator could configure Citadel with an existing root certificate, signing certificates and keys. In such
    a deployment, Citadel acts as an intermediate certificate authority (CA), under the given root CA.
    Instructions are available [here](https://istio.io/docs/tasks/security/cert-management/plugin-ca-cert/).
    
    The included sample files are:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. ci/official/upload.sh

    # "gsutil cp" always "copies into". It cannot act on the contents of a directory
    # and it does not seem possible to e.g. copy "gs://foo/bar" as anything other than
    # "/path/bar". This script uses "gsutil rsync" instead, which acts on directory
    # contents. About arguments to gsutil:
    # "gsutil -m rsync" runs in parallel.
    # "gsutil rsync -r" is recursive and makes directories work.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/util/filesystem/util_windows_test.go

    func TestPendingUnixDomainSocket(t *testing.T) {
    	// Create a temporary file that will simulate the Unix domain socket file in a
    	// not-yet-ready state. We need this because the Kubelet keeps an eye on file
    	// changes and acts on them, leading to potential race issues as described in
    	// the referenced issue above
    	f, err := os.CreateTemp("", "test-domain-socket")
    	require.NoErrorf(t, err, "Failed to create file for test purposes: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. docs/es/docs/advanced/response-directly.md

    Para esos casos, puedes usar el `jsonable_encoder` para convertir tus datos antes de pasarlos a la respuesta:
    
    ```Python hl_lines="4 6 20 21"
    {!../../../docs_src/response_directly/tutorial001.py!}
    ```
    
    !!! note "Detalles Técnicos"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/header-params.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="10"
        {!> ../../../docs_src/header_params/tutorial002.py!}
        ```
    
    !!! warning "Aviso"
        Antes de definir `convert_underscores` como `False`, lembre-se de que alguns proxies e servidores HTTP não permitem o uso de cabeçalhos com sublinhados.
    
    ## Cabeçalhos duplicados
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top