Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 516 for implying (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    Once a plugin is resolved, its API can be used in a build script.
    Script plugins are self-resolving in that they are resolved from the specific file path or URL provided when applying them.
    Core binary plugins provided as part of the Gradle distribution are automatically resolved.
    
    2. *Applying* a plugin means executing the plugin's link:{javadocPath}/org/gradle/api/Plugin.html#apply-T-[Plugin.apply(T)] on a project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/test/framework/resource/config/apply/options.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package apply
    
    import "istio.io/istio/pkg/test/framework/resource/config/cleanup"
    
    // Options provide options for applying configuration
    type Options struct {
    	// Cleanup strategy
    	Cleanup cleanup.Strategy
    
    	// Wait for configuration to be propagated.
    	Wait bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 851 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/apply_test.go

    		DoRaw(context.TODO())
    	if err == nil {
    		t.Fatalf("Expecting to get conflicts when applying object, got no error: %s", result)
    	}
    	status, ok := err.(*errors.StatusError)
    	if !ok {
    		t.Fatalf("Expecting to get conflicts as API error")
    	}
    	if len(status.Status().Details.Causes) < 1 {
    		t.Fatalf("Expecting to get at least one conflict when applying object, got: %v", status.Status().Details.Causes)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

        /**
         * Configure the {@link org.gradle.api.file.FileCopyDetails} for each file whose path matches the specified Ant-style pattern.
         * This is equivalent to using eachFile() and selectively applying a configuration based on the file's path.
         *
         * @param pattern Ant-style pattern used to match against files' relative paths
         * @param action action called for the FileCopyDetails of each file matching pattern
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/deny-global.yaml.tmpl

        - operation:
            # Generally we don't expect users to set global policies, since they
            # impact anything in the istio-system namespace. For these tests,
            # the target port is needed to avoid the DENY policy also applying to
            # traffic through the eastwest-gateway. Since all eastwest-gateway
            # traffic is TCP, the policy will attempt to be as restrictive as
            # possible and block all traffic through the eastwest-gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 796 bytes
    - Viewed (0)
  6. samples/external/pypi.yaml

    # This ServiceEntry exposes the hosts needed for Python `pip`.
    # After applying this file, Istio-enabled pods will be able to execute
    # `pip search istio`.
    
    # HTTP and TLS, the host must be specified
    # See https://istio.io/docs/tasks/traffic-management/egress/
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: python-https
    spec:
      hosts:
      - pypi.python.org
      ports:
      - number: 443
        name: https
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 962 bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeSource.java

     */
    public interface UserCodeSource {
        /**
         * Returns the display name of the user code.
         */
        DisplayName getDisplayName();
    
        /**
         * The ID of the plugin applying user code, if available.
         */
        @Nullable
        String getPluginId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_patch.txt

    # and mod_get_patchmod.txt (focused on module/package ambiguities).
    
    cp go.mod go.mod.orig
    
    # example.net/b@patch refers to the patch for the version of b that was selected
    # at the start of 'go get', not the version after applying other changes.
    
    ! go get example.net/a@v0.2.0 example.net/b@patch
    stderr '^go: example.net/a@v0.2.0 requires example.net/b@v0.2.0, not example.net/b@patch \(v0.1.1\)$'
    cmp go.mod go.mod.orig
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    TIP: Why is the version of `id 'org.jetbrains.kotlin.jvm'` missing? See <<implementing_gradle_plugins_precompiled.adoc#sec:applying_external_plugins,Applying External Plugins to Pre-Compiled Script Plugins>>.
    
    The `database-logic` build file becomes much simpler by removing all the redundant build logic and applying our convention `my-java-library` plugin instead:
    
    ====
    [.multi-language-sample]
    =====
    .database-logic/build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptPlugin.kt

        private val script: (Any) -> Unit
    ) : ScriptPlugin {
    
        override fun getSource() =
            scriptSource
    
        override fun apply(target: Any) {
            logger.debug("Applying Kotlin script to {}", target)
            script(target)
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top