Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,607 for describ (0.29 sec)

  1. istioctl/pkg/describe/describe.go

    	cmd := &cobra.Command{
    		Use:     "pod <pod>",
    		Aliases: []string{"po"},
    		Short:   "Describe pods and their Istio configuration [kube-only]",
    		Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports
    the configuration objects that affect that pod.`,
    		Example: `  istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

         * (and only to instances of that failure type) and will only be called upon to describe failures of that type.
         *
         * @return {@code true} if this describer can describe the given failure; {@code false} otherwise
         */
        default boolean canDescribeFailure(FAILURE failure) {
            return true;
        }
    
        /**
         * Describe the given failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. releasenotes/notes/fix-istioctl-describe-ingressinfo.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 50074
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 209 bytes
    - Viewed (0)
  4. docs/batch-jobs/README.md

    COMMANDS:
      generate  generate a new batch job definition
      start     start a new batch job
      list, ls  list all current batch jobs
      status    summarize job events on MinIO server in real-time
      describe  describe job definition for a job
    ```
    
    ### Generate a job yaml
    ```
    mc batch generate alias/ replicate
    ```
    
    ### Start the batch job (returns back the JID)
    ```
    mc batch start alias/ ./replicate.yaml
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

    import org.gradle.internal.component.resolution.failure.describer.NoMatchingCapabilitiesFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.RequestedConfigurationNotFoundFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributesSchemaInternal.java

         *
         * If variant selection failures occur, these describers will be available to describe the failures.
         *
         * @param failureType The type of failure to describe
         * @param describerType A describer that can potentially describe failures of the given type
         * @param <FAILURE> The type of failure to describe
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		return false, qs.isIdleLocked()
    	}
    	req.waitStarted = true
    	switch decisionAny {
    	case decisionCancel: // handle in code following this switch
    	case decisionExecute:
    		klog.V(5).Infof("QS(%s): Dispatching request %#+v %#+v from its queue", qs.qCfg.Name, req.descr1, req.descr2)
    		return true, false
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

            assert distinguishingAttribute != null;
    
            AttributeDescriber describer = AttributeDescriberSelector.selectDescriber(failure.getRequestedAttributes(), schema);
            TreeFormatter formatter = new TreeFormatter();
            summarizeAmbiguousVariants(failure, describer, formatter, false);
            buildSpecificAttributeSuggestionMsg(failure, distinguishingAttribute, formatter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. releasenotes/notes/49802.yaml

    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: istioctl
    
    # issue is a list of GitHub issues resolved in this note.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 18:49:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/caching/BuildCacheServiceFactory.java

         *
         * Implementations should also provide a description via the given describer.
         */
        BuildCacheService createBuildCacheService(T configuration, Describer describer);
    
        /**
         * Builder-style object that allows build cache service factories to describe the cache service.
         * <p>
         * The description is for human consumption.
         * It may be logged and displayed by tooling.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 3.6K bytes
    - Viewed (0)
Back to top