Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,443 for sinhe3 (0.32 sec)

  1. guava/src/com/google/common/net/MediaType.java

       * values</a>.
       *
       * @since 15.0
       */
      public static final MediaType TSV_UTF_8 = createConstantUtf8(TEXT_TYPE, "tab-separated-values");
    
      public static final MediaType VCARD_UTF_8 = createConstantUtf8(TEXT_TYPE, "vcard");
    
      /**
       * UTF-8 encoded <a href="https://en.wikipedia.org/wiki/Wireless_Markup_Language">Wireless Markup
       * Language</a>.
       *
       * @since 13.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

         * @since 4.7
         */
        @Input
        public Property<Boolean> getDebuggable() {
            return debuggable;
        }
    
        /**
         * Should the compiler generate debuggable code?
         *
         * @since 4.7
         */
        @Internal
        public boolean isOptimized() {
            return optimize.get();
        }
    
        /**
         * Should the compiler generate optimized code?
         *
         * @since 4.7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
      hosts:
      - testing-01.com # Expected: no validation error since this host exists
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParameters.java

        }
    
        /**
         * @since 1.0-milestone-3
         */
        public File getProjectDir() {
            return parameters.getProjectDir();
        }
    
        /**
         * @since 1.0-milestone-3
         */
        public Boolean isSearchUpwards() {
            return parameters.isSearchUpwards();
        }
    
        /**
         * @since 1.0-milestone-3
         */
        public Boolean isEmbedded() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/ForwardingCache.java

      }
    
      /** @since 11.0 */
      @Override
      public void put(K key, V value) {
        delegate().put(key, value);
      }
    
      /** @since 12.0 */
      @Override
      public void putAll(Map<? extends K, ? extends V> m) {
        delegate().putAll(m);
      }
    
      @Override
      public void invalidate(Object key) {
        delegate().invalidate(key);
      }
    
      /** @since 11.0 */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

         * </p>
         *
         * @return The name of this project. Never return null.
         * @since 8.8
         */
        String getName();
    
        /**
         * <p>Returns the path of this project.  The path is the fully qualified name of the project.</p>
         *
         * @return The path. Never returns null.
         * @since 8.8
         */
        String getPath();
    
        /**
         * Returns a path to the project for the full build tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/initialization/resolve/DependencyResolutionManagement.java

         * @param spec the spec to configure the dependencies
         *
         * @since 7.0
         */
        void versionCatalogs(Action<? super MutableVersionCatalogContainer> spec);
    
        /**
         * Returns the configurable version catalogs.
         *
         * @since 7.0
         */
        MutableVersionCatalogContainer getVersionCatalogs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/GradleProject.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Represents a Gradle project.
     *
     * @since 1.0-milestone-5
     */
    public interface GradleProject extends HierarchicalElement, BuildableElement, ProjectModel {
        /**
         * Returns the identifier for this Gradle project.
         *
         * @since 2.13
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
         * {@inheritDoc}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemContext.java

     * <p>
     *
     * Provides all details provided for problem events. The events are generated via the Problems API.
     *
     * @since 8.8
     */
    @Incubating
    public interface ProblemContext {
    
        /**
         * Returns the details string.
         *
         * @return the problem details
         * @since 8.8
         */
        @Nullable
        Details getDetails();
    
        /**
         * Returns the locations associated with this problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

     * all test tasks in the root build only.</p>
     *
     * @since 2.6
     */
    public interface TestLauncher extends ConfigurableLauncher<TestLauncher> {
    
        /**
         * Adds tests to be executed by passing test descriptors received from a previous Gradle Run.
         *
         * @param descriptors The OperationDescriptor defining one or more tests.
         * @return this
         * @since 2.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top