Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for capmem (0.26 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            expect:
            2.times {
                executer.inDirectory(file('sub')).withTasks('c').withArguments('-x', 'a').run().assertTasksExecuted(':a', ':sub:b', ':sub:c')
            }
        }
    
        def 'can use camel-case matching to exclude tasks'() {
            buildFile << """
                task someDep
                task someOtherDep
                task someTask(dependsOn: [someDep, someOtherDep])
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    The same applies to project names. You can execute the `check` task in the `library` subproject with the `gradle lib:che` command.
    
    You can use https://en.wikipedia.org/wiki/Camel_case[camel case] patterns for more complex abbreviations. These patterns are expanded to match camel case and https://en.wikipedia.org/wiki/Kebab_case[kebab case] names.
    For example, the pattern `foBa` (or `fB`) matches `fooBar` and `foo-bar`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        }
    
        @Managed
        interface HasSingleCharFirstPartGetter {
            String getcCompiler()
            void setcCompiler(String cCompiler)
        }
    
        def "extraction of single char first camel-case part getter like getcCompiler() is javabeans compliant"() {
            when:
            def schema = store.getSchema(HasSingleCharFirstPartGetter)
    
            then:
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	return resourceManager{
    		source:                   source,
    		resourceDiscoveryManager: rm.resourceDiscoveryManager,
    	}
    }
    
    type groupKey struct {
    	name string
    
    	// Source identifies where this group came from and dictates which group
    	// among duplicates is chosen to be used for discovery.
    	source Source
    }
    
    type groupVersionKey struct {
    	metav1.GroupVersion
    	source Source
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/ipallocator_test.go

    		allocated: 256, // this is a counter, we already had 2 allocations and we did 254 more
    		errors:    12,
    	}
    	expectMetrics(t, cidrIPv4, em)
    	em = testMetrics{
    		free:      65271, // IPv6 clusterIP range is capped to 2^16 and consider the broadcast address as valid
    		used:      264,
    		allocated: 264,
    		errors:    0,
    	}
    	expectMetrics(t, cidrIPv6, em)
    }
    
    func TestIPAllocatorClusterIPAllocatedMetrics(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/settings.md

    It also comes included when you install the `all` extras with:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    !!! info
        In Pydantic v1 it came included with the main package. Now it is distributed as this independent package so that you can choose to install it or not if you don't need that functionality.
    
    ### Create the `Settings` object
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    	list, err := BuildList([]module.Version{mainModule}, reqs)
    	if err != nil {
    		return nil, err
    	}
    
    	// Note: Not running in parallel because we assume
    	// that list came from a previous operation that paged
    	// in all the requirements, so there's no I/O to overlap now.
    
    	max := map[string]string{}
    	for _, m := range list {
    		max[m.Path] = m.Version
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // ```
    //
    // No matter which of the three exponent forms is used, no quantity may represent
    // a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal
    // places. Numbers larger or more precise will be capped or rounded up.
    // (E.g.: 0.1m will rounded up to 1m.)
    // This may be extended in the future if we require larger or smaller quantities.
    //
    // When a Quantity is parsed from a string, it will remember the type of suffix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top