Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,023 for addSdk (0.15 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/api/BuildableComponentSpec.java

        /**
         * Specifies the task responsible for building this component.
         */
        void setBuildTask(@Nullable Task buildTask);
    
        /**
         * Adds tasks required to build this component. Tasks added this way are subsequently
         * added as dependencies of this component's {@link #getBuildTask() build task}.
         */
        void builtBy(Object... tasks);
    
        boolean hasBuildDependencies();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                            element = mergePlugin(existing, element, sourceDominant, context);
                        } else {
                            added.put(key, element);
                        }
                        merged.put(key, element);
                    }
    
                    if (!added.isEmpty()) {
                        PluginManagement pluginMgmt = (PluginManagement) context.get(PLUGIN_MANAGEMENT);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                assertHasAccepted(
                    "Method com.example.Task.getFailOnError(): Is not annotated with @Incubating. Reason for accepting this: Upgraded property" to listOf("Method added to public class", "Abstract method has been added to this class"),
                    "Method com.example.Task.isFailOnError(): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method has been removed"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            otherSpec.addChild()
            def added = []
    
            spec.addChildSpecListener { CopySpecInternal.CopySpecAddress path, CopySpecInternal spec ->
                added.add path.toString()
            }
    
            when:
            spec.addChild()
    
            then:
            added == ['$1']
    
            when:
            added.clear()
            spec.with otherSpec
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. releasenotes/notes/51081.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableBiMap.java

       */
      public static <K, V> Builder<K, V> builder() {
        return new Builder<>();
      }
    
      /**
       * Returns a new builder, expecting the specified number of entries to be added.
       *
       * <p>If {@code expectedSize} is exactly the number of entries added to the builder before {@link
       * Builder#build} is called, the builder is likely to perform better than an unsized {@link
       * #builder()} would have.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the signer failed to issue the certificate.\n\nApproved and Denied conditions...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    	"encoding/base32",
    	"encoding/base64",
    	"encoding/binary",
    	"encoding/csv",
    	"encoding/gob",
    	// "encoding", // Added in GCC 4.9.
    	"encoding/hex",
    	"encoding/json",
    	"encoding/pem",
    	"encoding/xml",
    	"errors",
    	"expvar",
    	"flag",
    	"fmt",
    	"go/ast",
    	"go/build",
    	"go/doc",
    	// "go/format", // Added in GCC 4.8.
    	"go/parser",
    	"go/printer",
    	"go/scanner",
    	"go/token",
    	"hash/adler32",
    	"hash/crc32",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/http.yaml

        filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-added-header
              value: added-value
            remove: [my-removed-header]
        - type: ResponseHeaderModifier
          responseHeaderModifier:
            add:
            - name: my-added-resp-header
              value: added-resp-value
            remove: [my-removed-header]
        backendRefs:
        - name: httpbin
          port: 80
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

        def "empty publishableFiles and artifacts when no component is added"() {
            when:
            def publication = createPublication()
    
            then:
            publication.publishableArtifacts.files.files == [pomFile] as Set
            publication.artifacts.empty
            !publication.pom.dependencies.isPresent()
        }
    
        def "artifacts are taken from added component"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top