Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for granular (0.21 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. 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)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.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: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. cluster/gce/config-default.sh

    # When KUBE_ENABLE_KONNECTIVITY_SERVICE is enabled, the three variables below will
    # default to true to enable the konnectivity network proxy and start the required pods.
    # Their values can be overridden for more granular control of the proxy.
    
    # Optional: Whether to do the setup for the konnectivity service
    # Includes setting up kubeconfig, tokens, egress files, and firewall rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    === Declaring package visibility and services
    
    The Java module system supports additional more fine granular encapsulation concepts than Gradle itself currently does.
    For example, you explicitly need to declare which packages are part of your API and which are only visible inside your module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// 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: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// 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: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_node_status.go

    	kl.syncNodeStatusMux.Lock()
    	defer func() {
    		kl.syncNodeStatusMux.Unlock()
    
    		if completed {
    			// containerRuntimeReadyExpected is read by updateRuntimeUp().
    			// Not going for a more granular mutex as this path runs only once.
    			kl.updateRuntimeMux.Lock()
    			defer kl.updateRuntimeMux.Unlock()
    			kl.containerRuntimeReadyExpected = true
    		}
    	}()
    
    	if timeout {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. cmd/common-main.go

    		os.Setenv("CONSOLE_PROMETHEUS_URL", value)
    		if value := env.Get(config.EnvMinIOPrometheusJobID, "minio-job"); value != "" {
    			os.Setenv("CONSOLE_PROMETHEUS_JOB_ID", value)
    			// Support additional labels for more granular filtering.
    			if value := env.Get(config.EnvMinIOPrometheusExtraLabels, ""); value != "" {
    				os.Setenv("CONSOLE_PROMETHEUS_EXTRA_LABELS", value)
    			}
    		}
    		// Support Prometheus Auth Token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top