Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for describeTo (0.19 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestDescriptor.java

    package org.gradle.api.tasks.testing;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    
    /**
     * Describes a test. A test may be a single atomic test, such as the execution of a test method, or it may be a
     * composite test, made up of zero or more tests.
     */
    @HasInternalProtocol
    @NonNullApi
    public interface TestDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
    	// Some subresources do not return normal resources, these will have null or empty return types.
    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// acceptedTypes describes the kinds that this endpoint accepts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """A problems description API
        |
        |This project provides base classes to describe problems and their
        |solutions, in a way that enforces the creation of good error messages.
        |
        |It's a stripped down version of the original code available
        |at https://github.com/melix/jdoctor/
    """.trimMargin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. docker-buildx.sh

    	echo "Script requires that the 'upstream' remote is set to ******@****.***:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:latest" \
    	-t "quay.io/minio/minio:latest" \
    	-t "minio/minio:${release}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. maven-plugin-api/src/site/apt/index.apt

     * {{{./apidocs/org/apache/maven/plugin/logging/Log.html}<<<Log>>> interface}} provides easy logging for the goal.
    
     []
    
     A plugin is described in a {{{./plugin.html}<<<META-INF/maven/plugin.xml>>> plugin descriptor}},
     generally generated from plugin sources using {{{/plugin-tools/maven-plugin-plugin/}maven-plugin-plugin}}.
    
    * See Also
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/generic.go

    		fs.StringVar(featureGatesString, FeatureGatesString, *featureGatesString, "A set of key=value pairs that describe feature gates for various features. "+
    			"Options are:\n"+strings.Join(knownFeatures, "\n"))
    	} else {
    		fs.StringVar(featureGatesString, FeatureGatesString, *featureGatesString, "A set of key=value pairs that describe feature gates for various features. "+
    			"No feature gates are available in this release.")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonContext.java

    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.launcher.daemon.configuration.DaemonParameters;
    
    import java.io.File;
    import java.util.Collection;
    
    /**
     * A value object that describes a daemons environment/context.
     * <p>
     * This is used by clients to determine whether or not a daemon meets its requirements
     * such as JDK version, special system properties etc.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1/types.go

    	//   * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior-
    	//   * 'kubernetes.io/ws'  - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455
    	//   * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/testing.md

    And your **FastAPI** application might also be composed of several files/modules, etc.
    
    ### **FastAPI** app file
    
    Let's say you have a file structure as described in [Bigger Applications](bigger-applications.md){.internal-link target=_blank}:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ```
    
    In the file `main.py` you have your **FastAPI** app:
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultBuilderProblem.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import org.apache.maven.api.services.BuilderProblem;
    
    /**
     * Describes a problem that was encountered during settings building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top