Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,444 for sinhe4 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/cache/AbstractCache.java

     * UnsupportedOperationException}.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractCache<K, V> implements Cache<K, V> {
    
      /** Constructor for use by subclasses. */
      protected AbstractCache() {}
    
      /** @since 11.0 */
      @Override
      public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *
     * @since 3.5
     */
    @ServiceScope(Scope.Project.class)
    public interface WorkerExecutor {
    
        /**
         * Creates a {@link WorkQueue} to submit work for asynchronous execution with no isolation.
         *
         * @since 5.6
         */
        WorkQueue noIsolation();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         *
         * @since 3.1
         */
        TaskInputFilePropertyBuilder withPathSensitivity(PathSensitivity sensitivity);
    
        /**
         * Sets the normalizer to use for this property.
         *
         * @since 4.3
         */
        TaskInputFilePropertyBuilder withNormalizer(Class<? extends FileNormalizer> normalizer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top