Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for Applies (0.25 sec)

  1. platforms/software/ivy/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("SamplesIvyPublishIntegrationTest test applies the java-library plugin.")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("IvyPublishCrossVersionIntegrationTest test applies the war plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface ListenerService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentUtils.java

    public final class AgentUtils {
        private AgentUtils() {}
    
        public static final String AGENT_MODULE_NAME = "gradle-instrumentation-agent";
    
        /**
         * Checks if the command-line argument looks like JVM switch that applies gradle instrumentation agent.
         * If the returned value is {@code true} then the argument is definitely a java agent application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    		SubResource(subresources...).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Apply takes the given apply declarative configuration, applies it and returns the applied example.
    func (c *examples) Apply(ctx context.Context, example *crv1.ExampleApplyConfiguration, opts metav1.ApplyOptions) (result *v1.Example, err error) {
    	if example == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		SubResource(subresources...).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Apply takes the given apply declarative configuration, applies it and returns the applied customResourceDefinition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    };
    
    using BuiltinOperatorSet = absl::flat_hash_set<tflite::BuiltinOperator>;
    // Map from custom op code to custom op quantization information.
    using CustomOpMap = std::unordered_map<std::string, CustomOpInfo>;
    
    // Applies dynamic range quantization for the given model wehre the input_model
    // type is flatbuffer but is converted to MLIR during quantization process and
    // then converted back to flatbuffer for return. Note that this is part of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		SubResource(subresources...).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Apply takes the given apply declarative configuration, applies it and returns the applied customResourceDefinition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    	return subsetCluster.build()
    }
    
    // applyDestinationRule applies the destination rule if it exists for the Service.
    // It returns the subset clusters if any created as it applies the destination rule.
    func (cb *ClusterBuilder) applyDestinationRule(mc *clusterWrapper, clusterMode ClusterMode, service *model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/simulation"
    	"istio.io/istio/pilot/test/xds"
    )
    
    // TestPeerAuthenticationPassthrough tests the PeerAuthentication policy applies correctly on the passthrough filter chain,
    // including both global configuration and port level configuration.
    func TestPeerAuthenticationPassthrough(t *testing.T) {
    	paStrict := `
    apiVersion: security.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

    import org.gradle.api.tasks.TaskAction
    import org.gradle.test.fixtures.file.TestFile
    
    import java.nio.file.Files
    import java.util.stream.Collectors
    
    /**
     * A helper to define a plugin that applies a simple transform action to dependencies.
     */
    class TransformFixture {
        static final String TRANSFORM_PLUGIN_ID = "org.gradle.test.transform"
        static final String TRANSFORM_SOURCE_CONFIGURATION = "transformSource"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top