Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Developer (0.22 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void setDevelopers(List<Developer> developers) {
            getModel().setDevelopers(developers);
        }
    
        public List<Developer> getDevelopers() {
            return getModel().getDevelopers();
        }
    
        public void addDeveloper(Developer developer) {
            getModel().addDeveloper(developer);
        }
    
        public void setContributors(List<Contributor> contributors) {
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("developers")).size());
            assertEquals("dev", pom.getValue("developers[1]/id"));
            assertEquals("project-developer", pom.getValue("developers[1]/name"));
            assertEquals("developer@", pom.getValue("developers[1]/email"));
            assertEquals("https://developer", pom.getValue("developers[1]/url"));
            assertEquals("developer", pom.getValue("developers[1]/organization"));
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  3. .bazelrc

    build:cuda_clang --config=cuda
    # Enable TensorRT optimizations https://developer.nvidia.com/tensorrt
    build:cuda_clang --config=tensorrt
    build:cuda_clang --action_env=TF_CUDA_CLANG="1"
    build:cuda_clang --@local_config_cuda//:cuda_compiler=clang
    # Select supported compute capabilities (supported graphics cards).
    # This is the same as the official TensorFlow builds.
    # See https://developer.nvidia.com/cuda-gpus#compute
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Wed Apr 10 21:49:38 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  4. configure.py

        ask_cuda_compute_capabilities = (
            'Please specify a list of comma-separated CUDA compute capabilities '
            'you want to build with.\nYou can find the compute capability of your '
            'device at: https://developer.nvidia.com/cuda-gpus. Each capability '
            'can be specified as "x.y" or "compute_xy" to include both virtual and'
            ' binary GPU code, or as "sm_xy" to only include the binary '
    Python
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    * MESOS: forward globally declared cadvisor housekeeping flags ([#22974](https://github.com/kubernetes/kubernetes/pull/22974), [@jdef](https://github.com/jdef))
    * Trusty: support developer workflow on base image ([#22960](https://github.com/kubernetes/kubernetes/pull/22960), [@andyzheng0831](https://github.com/andyzheng0831))
    Plain Text
    - Registered: Fri Apr 12 09:05:11 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        We don't expect this to be a problem in practice!
    
     *  **OkHttp has an experimental new API for tracking metrics.** The new
        `EventListener` API is designed to help developers monitor HTTP requests'
        size and duration. This feature is an unstable preview: the API is subject
        to change, and the implementation is incomplete. This is a big new API we
        are eager for feedback.
    
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * silently replaced with spaces? If a query parameter contains a '&amp;', does that get escaped?
     * By offering methods to read and write individual query parameters directly, application
     * developers are saved from the hassles of encoding and decoding.
     *
     * ### Plus a modern API
     *
     * The URL (JDK1.0) and URI (Java 1.4) classes predate builders and instead use telescoping
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  10. docs/bucket/notifications/README.md

    Use client tools like `mc` to set and listen for event notifications using the [`event` sub-command](https://min.io/docs/minio/linux/reference/minio-mc/mc-event-add.html). MinIO SDK's [`BucketNotification` APIs](https://min.io/docs/minio/linux/developers/go/API.html#setbucketnotification-ctx-context-context-bucketname-string-config-notification-configuration-error) can also be used. The notification message MinIO sends to publish an event is a JSON message with the following [structure](https:/...
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
Back to top