Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for granular (0.14 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from levels lower than the specified granularity will be ignored.
         * <p>The default granularity is -1, which specifies that test events from only the most granular level should be logged.  In other words, if a test method is not parameterized, only events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/conditional-openapi.md

    * Configure any required permissions and roles using dependencies.
    * Never store plaintext passwords, only password hashes.
    * Implement and use well-known cryptographic tools, like Passlib and JWT tokens, etc.
    * Add more granular permission controls with OAuth2 scopes where needed.
    * ...etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

                # privileged is redundant with CAP_SYS_ADMIN
                # since it's redundant, hardcode it to `true`, then manually drop ALL + readd granular
                # capabilities we actually require
                capabilities:
                  drop:
                  - ALL
                  add:
                  # CAP_NET_ADMIN is required to allow ipset and route table access
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/runtime/tracetime.go

    )
    
    // Timestamps in trace are produced through either nanotime or cputicks
    // and divided by traceTimeDiv. nanotime is used everywhere except on
    // platforms where osHasLowResClock is true, because the system clock
    // isn't granular enough to get useful information out of a trace in
    // many cases.
    //
    // This makes absolute values of timestamp diffs smaller, and so they are
    // encoded in fewer bytes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerBuildFailureIntegrationTest.groovy

    @SuppressWarnings('IntegrationTestFixtures')
    class GradleRunnerBuildFailureIntegrationTest extends BaseGradleRunnerIntegrationTest {
    
        /*
            Note: these tests are very granular to ensure coverage for versions that
                  don't support querying the output or tasks.
         */
    
        def "does not throw exception when build fails expectantly"() {
            given:
            buildScript """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	XListType *string
    
    	// x-kubernetes-map-type annotates an object to further describe its topology.
    	// This extension must only be used when type is object and may have 2 possible values:
    	//
    	// 1) `granular`:
    	//      These maps are actual maps (key-value pairs) and each fields are independent
    	//      from each other (they can each be manipulated by separate actors). This is
    	//      the default behaviour for all maps.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			},
    		},
    		{
    			name: "invalid type with map type extension (granular)",
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    					Type:     "array",
    					XMapType: strPtr("granular"),
    				},
    			},
    			expectedErrors: []validationMatch{
    				invalid("spec.validation.openAPIV3Schema.type"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    // with the data elements of the map from before the updated.
    func MapIsCorrelatable(mapType *string) bool {
    	// if a third map type is introduced, assume it's not correlatable. granular is the default if unspecified.
    	return mapType == nil || *mapType == "granular" || *mapType == "atomic"
    }
    
    func hasXValidations(s *schema.Structural) bool {
    	if s == nil {
    		return false
    	}
    	if len(s.XValidations) > 0 {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		}
    	}
    
    	if schema.XMapType != nil && *schema.XMapType != "atomic" && *schema.XMapType != "granular" {
    		allErrs.SchemaErrors = append(allErrs.SchemaErrors, field.NotSupported(fldPath.Child("x-kubernetes-map-type"), *schema.XMapType, []string{"atomic", "granular"}))
    	}
    
    	if schema.XListType != nil && schema.Type != "array" {
    		if len(schema.Type) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/doc.go

    opcodes which would require 2 or more machine instructions to emulate a 32 bit constant, or
    symbolic reference are implemented using prefixed instructions.
    
    A user who wishes granular control over the generated machine code is advised to use Go asm
    opcodes which explicitly translate to one PPC64 machine instruction. Most common opcodes
    are supported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top