Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,243 for behaviors (0.2 sec)

  1. src/cmd/compile/internal/types2/api_predicates.go

    // type T.
    //
    // The behavior of ConvertibleTo is unspecified if V or T is Typ[Invalid] or an
    // uninstantiated generic type.
    func ConvertibleTo(V, T Type) bool {
    	x := operand{mode: value, typ: V}
    	return x.convertibleTo(nil, T, nil) // check not needed for non-constant x
    }
    
    // Implements reports whether type V implements interface T.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorPolicy.java

    /**
     * Controls the behavior of an executor when a task is executed and an executor is stopped.
     */
    public interface ExecutorPolicy {
        /**
         * Special behavior when a task is executed.
         *
         * The Runnable's run() needs to be called from this method.
         */
        void onExecute(Runnable command);
    
        /**
         * Special behavior when a task is executed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/horizontalpodautoscalerspec.go

    	MaxReplicas    *int32                                             `json:"maxReplicas,omitempty"`
    	Metrics        []MetricSpecApplyConfiguration                     `json:"metrics,omitempty"`
    	Behavior       *HorizontalPodAutoscalerBehaviorApplyConfiguration `json:"behavior,omitempty"`
    }
    
    // HorizontalPodAutoscalerSpecApplyConfiguration constructs an declarative configuration of the HorizontalPodAutoscalerSpec type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/horizontalpodautoscalerspec.go

    	MaxReplicas    *int32                                             `json:"maxReplicas,omitempty"`
    	Metrics        []MetricSpecApplyConfiguration                     `json:"metrics,omitempty"`
    	Behavior       *HorizontalPodAutoscalerBehaviorApplyConfiguration `json:"behavior,omitempty"`
    }
    
    // HorizontalPodAutoscalerSpecApplyConfiguration constructs an declarative configuration of the HorizontalPodAutoscalerSpec type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/go/types/api_predicates.go

    // type T.
    //
    // The behavior of ConvertibleTo is unspecified if V or T is Typ[Invalid] or an
    // uninstantiated generic type.
    func ConvertibleTo(V, T Type) bool {
    	x := operand{mode: value, typ: V}
    	return x.convertibleTo(nil, T, nil) // check not needed for non-constant x
    }
    
    // Implements reports whether type V implements interface T.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            Provide a brief summary of the issue in the title above
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. releasenotes/notes/targetPort-service-entry.yaml

        This is particularly useful when doing TLS origination, allowing to set `port:80, targetPort: 443`.
        If undesired set `--compatibilityVersion=1.21` to revert to the old behavior, or remove the `targetPort` specification.
    upgradeNotes:
      - title: "`ServiceEntry` with `resolution: NONE` now respects `targetPort`"
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 794 bytes
    - Viewed (0)
  10. releasenotes/notes/sds-cacert-precedence.yaml

    issue:
    - 29856
    releaseNotes:
    - |
      **Fixed** an issue causing a Secret named `<secret>-cacert` to have lower precedence than a Secret named `<secret>` for Gateway Mutual TLS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 05 10:55:59 UTC 2021
    - 356 bytes
    - Viewed (0)
Back to top