Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for description (0.42 sec)

  1. api/maven-api-cli/src/main/mdo/core-extensions.mdo

          <name>CoreExtensions</name>
          <description>Extensions to load.</description>
          <version>1.0.0+</version>
          <fields>
            <field>
              <name>extensions</name>
              <description>A set of build extensions to use from this project.</description>
              <version>1.0.0+</version>
              <association xml.itemsStyle="flat">
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-05-18 09:15
    - 4.4K bytes
    - Viewed (0)
  2. manifests/charts/base/files/crd-all.gen.yaml

                  vmConfig:
                    description: Configuration for a Wasm VM.
                    properties:
                      env:
                        description: Specifies environment variables to be injected to
                          this VM.
                        items:
                          properties:
                            name:
                              description: Name of the environment variable.
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-22 14:52
    - 812.6K bytes
    - Viewed (0)
  3. tests/test_application.py

                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-04-28 18:31
    - 52.2K bytes
    - Viewed (0)
  4. cmd/config-current.go

    			Description: "enable LDAP SSO support",
    		},
    		config.HelpKV{
    			Key:         config.IdentityTLSSubSys,
    			Description: "enable X.509 TLS certificate SSO support",
    		},
    		config.HelpKV{
    			Key:         config.IdentityPluginSubSys,
    			Description: "enable Identity Plugin via external hook",
    		},
    		config.HelpKV{
    			Key:         config.PolicyPluginSubSys,
    			Description: "enable Access Management Plugin for policy enforcement",
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-21 16:23
    - 28.4K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    	apiErr, ok := e[errCode]
    	if !ok {
    		apiErr = e[ErrInternalError]
    	}
    	if err != nil {
    		apiErr.Description = fmt.Sprintf("%s (%s)", apiErr.Description, err)
    	}
    	if region := globalSite.Region(); region != "" {
    		if errCode == ErrAuthorizationHeaderMalformed {
    			apiErr.Description = fmt.Sprintf("The authorization header is malformed; the region is wrong; expecting '%s'.", region)
    			return apiErr
    		}
    	}
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-16 07:34
    - 93K bytes
    - Viewed (1)
  6. istioctl/pkg/admin/istiodconfig.go

    				LogLevel:    scope.OutputLevel,
    				Description: scope.Description,
    			},
    		)
    	}
    	switch ga.outputFormat {
    	case "short":
    		w := new(tabwriter.Writer).Init(out, 0, 8, 3, ' ', 0)
    		_, _ = fmt.Fprintln(w, "ACTIVE SCOPE\tDESCRIPTION\tLOG LEVEL")
    		for _, sll := range resultScopeLogLevel {
    			_, _ = fmt.Fprintf(w, "%s\t%s\t%s\n", sll.ScopeName, sll.Description, sll.LogLevel)
    		}
    		return w.Flush()
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-22 15:24
    - 13.6K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    				Description: getClusterReplCurrQueuedBytesMD(),
    			}
    
    			currTransferRate := MetricV2{
    				Description: getClusterReplCurrentTransferRateMD(),
    			}
    			avgQueueCount := MetricV2{
    				Description: getClusterReplAvgQueuedOperationsMD(),
    			}
    			avgQueueBytes := MetricV2{
    				Description: getClusterReplAvgQueuedBytesMD(),
    			}
    			maxQueueCount := MetricV2{
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-23 20:56
    - 133.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/misc/AssertionUtil.java

            if (!expression) {
                throw new ClIllegalStateException(description);
            }
        }
    
        /**
         * Asserts that the index is not invalid.
         *
         * @param expression
         *            The precondition.
         * @param description
         *            The description of why the index is invalid.
         * @throws ClIndexOutOfBoundsException
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 12.4K bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            description = "Run cross-version tests against a limited set of versions"
            group = ciGroup
        }
    
        register("allVersionsCrossVersionTest") {
            description = "Run cross-version tests against all released versions (latest patch release of each)"
            group = ciGroup
        }
    
        register("allVersionsIntegMultiVersionTest") {
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-19 18:16
    - 22.9K bytes
    - Viewed (0)
  10. .github/renovate.json

          "matchPackageNames": [
            "org.eclipse.jetty:jetty-client"
          ],
          "allowedVersions": "<10.0",
          "description": "JDK 11 requirement"
        },
        {
          "matchPackageNames": [
            "org.junit-pioneer:junit-pioneer"
          ],
          "allowedVersions": "<2.0.0",
          "description": "JDK 11 requirement"
        }
      ]
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-22 14:38
    - 1K bytes
    - Viewed (0)
Back to top