Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,345 for auds (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    | Adds a target representing the {cpp} application to the project file.
    
    | <<cpp_library_plugin.adoc#cpp_library_plugin,{cpp} Library>>
    | Adds a target for each specified linkage representing the shared and/or static library to the project file.
    
    | <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    | Adds a target representing the Swift application to the project file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *                     }
     *                 }
     *             }
     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface ComponentSelectionRules {
        /**
         * Adds a simple component selection rule that will apply to all resolved components.
         * Each rule will receive a {@link ComponentSelection} object as an argument.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

        def "adds convention objects"() {
            when:
            project.pluginManager.apply(BasePlugin)
    
            then:
            project.convention.plugins.base instanceof BasePluginConvention
            project.extensions.findByType(DefaultArtifactPublicationSet) != null
            project.extensions.findByType(BasePluginExtension) != null
        }
    
        def "adds extension object"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

        /**
         * 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
         */
        TestLauncher withTests(TestOperationDescriptor... descriptors);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScope.kt

         * The script classpath configuration.
         */
        val NamedDomainObjectContainer<Configuration>.classpath: NamedDomainObjectProvider<Configuration>
            get() = named(CLASSPATH_CONFIGURATION)
    
        /**
         * Adds a dependency to the script classpath.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         *
         * @see [DependencyHandler.add]
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format.
         *
         * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}).
         */
        @CanIgnoreReturnValue
        public ToStringHelper add(String name, boolean value) {
          return addUnconditionalHolder(name, String.valueOf(value));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/xds/workload_test.go

    		})
    		ads := s.ConnectDeltaADS().WithType(v3.AddressType).WithMetadata(model.NodeMetadata{NodeName: "node"})
    		ads.Request(&discovery.DeltaDiscoveryRequest{
    			ResourceNamesSubscribe:   []string{"*"},
    			ResourceNamesUnsubscribe: []string{"*"},
    		})
    		ads.ExpectEmptyResponse()
    
    		// Now subscribe to the pod, should get it back
    		resp := ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/api/internal/plugins/DefaultArtifactPublicationSetTest.groovy

        def "adds provider to artifact set"() {
            when:
            publication.addCandidate(artifact(artifactType))
    
            then:
            1 * publications.addAllLater(_)
    
            where:
            artifactType << ["jar", "war", "ear", "other"]
        }
    
        def "adds jar artifact to publication"() {
            def artifact = artifact("jar")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top