Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,155 for ADDS (0.11 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentSelectionContext.java

        void noMatchFound();
    
        /**
         * Adds a candidate version that did not match the provided selector.
         */
        void notMatched(ModuleComponentIdentifier id, VersionSelector requestedVersionMatcher);
    
        /**
         * Adds a candidate version that matched the provided selector, but was rejected by some rule.
         */
        void rejectedByRule(RejectedByRuleVersion id);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-reviews-lua-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews
      configPatches:
        # The first patch adds the lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/namedrulewithoperations.go

    // apply.
    func NamedRuleWithOperations() *NamedRuleWithOperationsApplyConfiguration {
    	return &NamedRuleWithOperationsApplyConfiguration{}
    }
    
    // WithResourceNames adds the given value to the ResourceNames field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

     */
    public interface ServiceRegistration {
        /**
         * Adds a service to this registry. The given object is closed when the associated registry is closed.
         * @param serviceType The type to make this service visible as.
         * @param serviceInstance The service implementation.
         */
        <T> void add(Class<T> serviceType, T serviceInstance);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ComponentMetadataHandlerExtensions.kt

    
    /**
     * Adds a class based rule that may modify the metadata of any resolved software component.
     *
     * @param T the rule to be added
     * @return this
     *
     * @see [ComponentMetadataHandler.all]
     */
    inline fun <reified T : ComponentMetadataRule> ComponentMetadataHandler.all(): ComponentMetadataHandler =
        all(T::class.java)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/namedrulewithoperations.go

    // apply.
    func NamedRuleWithOperations() *NamedRuleWithOperationsApplyConfiguration {
    	return &NamedRuleWithOperationsApplyConfiguration{}
    }
    
    // WithResourceNames adds the given value to the ResourceNames field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeWorkGraph.java

             */
            ExecutionResult<Void> runWork();
        }
    
        interface Builder {
            /**
             * Adds nodes to the work graph for the given build.
             */
            void withWorkGraph(BuildState target, Consumer<? super BuildLifecycleController.WorkGraphBuilder> action);
    
            /**
             * Adds the given tasks and their dependencies to the work graph.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/plugins/ObjectConfigurationAction.java

         * flattened, and the script applied to each object in the result, in the order given. Each call to this method adds
         * some additional target objects.</p>
         *
         * @param targets The target objects.
         * @return this
         */
        ObjectConfigurationAction to(Object... targets);
    
        /**
         * Adds a script to use to configure the target objects. You can call this method multiple times, to use multiple
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_issue56494.txt

    # |
    # + --- b
    # |
    # + --- c
    #
    # At v2, package "a" adds imports of "b" and "c"
    # (and a requirement on "c" v2):
    #
    # a --- b
    # |
    # + --- c
    #
    # And "b" adds an import of "a/sub" (in module "a"):
    #
    # b --- a/sub
    #
    # At v3, "a" no longer imports (nor requires) "c":
    #
    # a --- b
    
    # So upgrading to a3 adds a dependency on b2,
    # b2 adds a dependency on a2 (for "a/sub"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top