Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 649 for sample2 (0.14 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProtobufPluginSmokeTest.groovy

                }
            """
    
            and:
            file("src/main/proto/sample.proto") << """
                syntax = "proto3";
                option java_package = "my.proto";
                option java_multiple_files = true;
                message Msg {
                    string text = 1;
                }
            """
            file("src/main/java/my/Sample.java") << """
                package my;
                import my.proto.Msg;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveIfTester.java

      @CollectionSize.Require(absent = ZERO)
      public void testRemoveIf_sometimesTrue() {
        assertTrue(
            "removeIf(isEqual(present)) should return true",
            collection.removeIf(Predicate.isEqual(samples.e0())));
        expectMissing(samples.e0());
      }
    
      @CollectionFeature.Require(SUPPORTS_ITERATOR_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testRemoveIf_allPresent() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            buildFile << """
                task configureTask {
                    doLast {
                        sample.myProp = "fromConfigureTask"
                    }
                }
    
                sample.dependsOn(configureTask)
            """
    
            when:
            succeeds('sample', "--myProp=fromCommandLine")
    
            then:
            outputContains("Value of myProp: fromConfigureTask")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    The following demonstrates a task with a configurable `greeting` property and a read-only `message` property:
    
    ====
    include::sample[dir="snippets/providers/propertyAndProvider/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/providers/propertyAndProvider/groovy",files="build.gradle[]"]
    ====
    <1> A task that displays a greeting
    <2> A configurable greeting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	failHardSettings := []deprecatedSettings{
    		{"Values.grafana.enabled", "the samples/addons/ deployments", false},
    		{"Values.tracing.enabled", "the samples/addons/ deployments", false},
    		{"Values.kiali.enabled", "the samples/addons/ deployments", false},
    		{"Values.prometheus.enabled", "the samples/addons/ deployments", false},
    		{"AddonComponents.grafana.Enabled", "the samples/addons/ deployments", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		x := new(ValueType)
    		pp := m.(*Profile)
    		pp.SampleType = append(pp.SampleType, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Sample sample = 2
    	func(b *buffer, m message) error {
    		x := new(Sample)
    		pp := m.(*Profile)
    		pp.Sample = append(pp.Sample, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Mapping mapping = 3
    	func(b *buffer, m message) error {
    		x := new(Mapping)
    		pp := m.(*Profile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    [[taskDefinition]]
    ====
    include::sample[dir="snippets/tasks/incrementalTask/kotlin",files="build.gradle.kts[tags=incremental-task]"]
    include::sample[dir="snippets/tasks/incrementalTask/groovy",files="build.gradle[tags=incremental-task]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	// We want to up-scale the count and cycles according to the
    	// probability that the event was sampled. For block profile events,
    	// the sample probability is 1 if cycles >= rate, and cycles / rate
    	// otherwise. For mutex profile events, the sample probability is 1 / rate.
    	// We scale the events by 1 / (probability the event was sampled).
    	if which == blockProfile && cycles < rate {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    == Simple version declaration semantics
    
    When you declare a version using the short-hand notation, for example:
    
    .A simple declaration
    ====
    include::sample[dir="snippets/dependencyManagement/declaringDependencies-concreteVersion/kotlin",files="build.gradle.kts[tags=required-version]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    		if line != "" {
    			sample := javaSampleRx.FindStringSubmatch(line)
    			if sample == nil {
    				// Not a valid sample, exit.
    				return b, locs, nil
    			}
    
    			// Java profiles have data/fields inverted compared to other
    			// profile types.
    			var err error
    			value1, value2, value3 := sample[2], sample[1], sample[3]
    			addrs, err := parseHexAddresses(value3)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top