Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 244 for addOption (0.14 sec)

  1. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

            return this;
        }
    
        @Override
        public DeploymentDescriptor withXml(Closure closure) {
            transformer.addAction(closure);
            return this;
        }
    
        @Override
        public DeploymentDescriptor withXml(Action<? super XmlProvider> action) {
            transformer.addAction(action);
            return this;
        }
    
        @Override
        public boolean readFrom(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

        private String indentation = "  ";
    
        public void addAction(Action<? super XmlProvider> provider) {
            actions.add(provider);
        }
    
        public void addFinalizer(Action<? super XmlProvider> provider) {
            finalizers.add(provider);
        }
    
        public void setIndentation(String indentation) {
            this.indentation = indentation;
        }
    
        public void addAction(@DelegatesTo(XmlProvider.class) Closure closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      DepthwiseConv2DOptions,
      ConcatEmbeddingsOptions,
      LSHProjectionOptions,
      Pool2DOptions,
      SVDFOptions,
      RNNOptions,
      FullyConnectedOptions,
      SoftmaxOptions,
      ConcatenationOptions,
      AddOptions,
      L2NormOptions,
      LocalResponseNormalizationOptions,
      LSTMOptions,
      ResizeBilinearOptions,
      CallOptions,
      ReshapeOptions,
      SkipGramOptions,
      SpaceToDepthOptions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    editorial revisions, annotations, elaborations, or other modifications
    represent, as a whole, an original work of authorship.
    
    "Modified Works" shall mean any work in Source Code or other form that
    results from an addition to, deletion from, or modification of the
    contents of the Program, including, for purposes of clarity any new file
    in Source Code form that contains any contents of the Program. Modified
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. helm/minio/values.yaml

    ## List of policies to be created after minio install
    ##
    ## In addition to default policies [readonly|readwrite|writeonly|consoleAdmin|diagnostics]
    ## you can define additional policies with custom supported actions and resources
    policies: []
    ## writeexamplepolicy policy grants creation or deletion of buckets with name
    ## starting with example. In addition, grants objects write permissions on buckets starting with
    ## example.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    								InstanceName:    "instance",
    								CertificateName: "certificate",
    							},
    						},
    					}),
    				},
    			},
    		},
    		{
    			Name: "outbound|7777||custom-tls-addition",
    		},
    		{
    			Name:            "outbound|7777||custom-tls-replacement",
    			DnsLookupFamily: cluster.Cluster_V4_ONLY,
    			LbPolicy:        cluster.Cluster_ROUND_ROBIN,
    			TransportSocket: &core.TransportSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/runtime/runtime.go

    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    // Called by runtime/pprof in addition to runtime code.
    //
    // TODO(mknyszek): This doesn't account for things like CPU frequency scaling. Consider
    // a more sophisticated and general approach in the future.
    func ticksPerSecond() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    For this, you need to do two things in addition to what you do for a non-modular application.
    
    First, you need to add a `module-info.java` file to describe your application module.
    Please refer to the <<java_library_plugin.adoc#sec:java_library_modular,Java Library plugin documentation>> for more details on this topic.
    
    Second, you need to tell Gradle the name of the module you want to run in addition to the main class name like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over the artifacts to be published.
     * </p><p>
     * In addition, {@link IvyModuleDescriptorSpec} provides configuration methods to customize licenses, authors, and the description to be published in the Ivy module descriptor.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    * Ensure traffic between mesh workloads is securely encrypted with an Istio identity.
    * Be lightweight enough to not limit adoption.
      * This puts a much tighter budget on CPU, memory, latency, and throughput requirements than traditional Istio sidecars.
    
    Ztunnel was not designed to be a feature-rich data plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top