Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 682 for effective (0.29 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelInterpolator.java

    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Replaces expressions of the form <code>${token}</code> with their effective values. Effective values are basically
     * calculated from the elements of the model itself and the execution properties from the building request.
     *
     */
    public interface ModelInterpolator {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

     * technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted without
     * prior notice.
     *
     */
    public interface ProjectBuildingHelper {
    
        /**
         * Creates the effective artifact repositories from the specified POM repositories.
         *
         * @param pomRepositories The POM repositories to create the artifact repositories from, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. releasenotes/notes/49539.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 49539
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 07:24:47 UTC 2024
    - 270 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      // FooPass) before/after which MLIR will be dumped. Effective only if
      // ir_dump_dir is not empty.
      optional string ir_dump_pass_regex = 2 [default = ".*"];
    
      // Regular expression that matches the names of functions to be dumped. MLIR
      // modules are dumped only if there's at least one public function in the
      // module whose name matches the pattern. Effective only if ir_dump_dir is
      // not empty.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/securitycontext/accessors_test.go

    	testcases := []struct {
    		PodSC     *api.PodSecurityContext
    		SC        *api.SecurityContext
    		Effective *api.SecurityContext
    	}{
    		{
    			PodSC:     nil,
    			SC:        nil,
    			Effective: nil,
    		},
    		{
    			PodSC:     &api.PodSecurityContext{},
    			SC:        &api.SecurityContext{},
    			Effective: &api.SecurityContext{},
    		},
    		{
    			PodSC: &api.PodSecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287895Z	info	Effective config: binaryPath: /usr/local/bin/envoy
    configPath: ./etc/istio/proxy
    discoveryAddress: istiod.istio-system.svc:15012
    drainDuration: 45s
    envoyAccessLogService: {}
    envoyMetricsService: {}
    parentShutdownDuration: 60s
    proxyAdminPort: 15000
    proxyMetadata:
      DNS_AGENT: ""
    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. src/os/proc.go

    func Getuid() int { return syscall.Getuid() }
    
    // Geteuid returns the numeric effective user id of the caller.
    //
    // On Windows, it returns -1.
    func Geteuid() int { return syscall.Geteuid() }
    
    // Getgid returns the numeric group id of the caller.
    //
    // On Windows, it returns -1.
    func Getgid() int { return syscall.Getgid() }
    
    // Getegid returns the numeric effective group id of the caller.
    //
    // On Windows, it returns -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

         * In case an effective status is needed, use {@link #getActive()}.
         *
         * @since 8.5
         */
        Provider<Boolean> getRequested();
    
        /**
         * Whether the feature is active in the build.
         * <p>
         * The provider is always defined and its value denotes the effective status of a feature in a build.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases.go

    // is an alias for the type rhs.
    //
    // The enabled parameter determines whether the resulting [TypeName]'s
    // type is an [types.Alias]. Its value must be the result of a call to
    // [Enabled], which computes the effective value of
    // GODEBUG=gotypesalias=... by invoking the type checker. The Enabled
    // function is expensive and should be called once per task (e.g.
    // package import), not once per call to NewAlias.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    /**
     * Defines events that the model builder fires during construction of the effective model. When a listener encounters
     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    public interface ModelBuildingListener {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top