Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 650 for sample2 (0.23 sec)

  1. pilot/pkg/networking/core/tracing.go

    	}
    
    	// provider.sampler > telemetry.RandomSamplingPercentage > defaultConfig.tracing.sampling > PILOT_TRACE_SAMPLING
    	var sampling float64
    	if useCustomSampler {
    		// If the TracingProvider has a custom sampler (OTel Sampler)
    		// the sampling percentage is set to 100% so all spans arrive at the sampler for its decision.
    		sampling = 100
    	} else if spec.RandomSamplingPercentage != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/tests/unit/test_productpage.py

            expected_headers = {
                'x-request-id': '34eeb41d-d267-9e49-8b84-dde403fc5b72',
                'x-b3-traceid': '80f198ee56343ba864fe8b2a57d3eff7',
                'x-b3-spanid': 'e457b5a2e4d86bd1',
                'x-b3-sampled': '1',
                'sw8': '40c7fdf104e3de67'
            }
            m.get("http://reviews:9080/reviews/%d" % product_id, text='{}',
                  request_headers=expected_headers)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

                    project {
                        natures = ['sample.nature.a', 'sample.nature.b']
                    }
                }
            """
            settingsFile << "rootProject.name = 'root'"
    
            when:
            EclipseProject rootProject = loadToolingModel(EclipseProject)
    
            then:
            rootProject.projectNatures.collect{ it.id } == ['sample.nature.a', 'sample.nature.b']
        }
    
        @TargetGradleVersion(">=3.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    				},
    				"subprojects":[
    					"workers",
    					"model-core",
    					"language-groovy",
    					"build-init",
    					"logging",
    					"plugins-groovy",
    					"kotlin-dsl",
    					"plugins-java",
    					"samples",
    					"plugin-development",
    					"enterprise"
    				]
    			}
    		],
    		"testCoverageUuid":1
    	},
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TeamCityParallelTests",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    .Example of a configurable component metadata rule
    ====
    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/kotlin",files="build.gradle.kts[tags=config-component-metadata-rule]"]
    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/groovy",files="build.gradle[tags=config-component-metadata-rule]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	routes = append(routes, b.buildRoute(root, "", "POST", "post", "create", sample).Reads(sample))
    	routes = append(routes, b.buildRoute(root, "", "DELETE", "deletecollection", "deletecollection", status))
    
    	routes = append(routes, b.buildRoute(root, "/{name}", "GET", "get", "read", sample))
    	routes = append(routes, b.buildRoute(root, "/{name}", "PUT", "put", "replace", sample).Reads(sample))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    include::sample[dir="snippets/testKit/automaticClasspathInjectionQuickstart/groovy",files="build.gradle[tags=automatic-classpath]"]
    ====
    
    
    === Example: Automatically injecting the code under test classes into test builds
    
    [source,groovy,indent=0]
    .src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/android-application/groovy/app/build.gradle

    }
    
    repositories {
        google()
        mavenCentral()
    }
    
    android {
        compileSdkVersion 30
        defaultConfig {
            applicationId 'org.gradle.samples'
            namespace 'org.gradle.samples'
            minSdkVersion 16
            targetSdkVersion 30
            versionCode 1
            versionName '1.0'
            testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 1011 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/android-application/kotlin/app/build.gradle.kts

    }
    
    repositories {
        google()
        mavenCentral()
    }
    
    android {
        compileSdkVersion(30)
        defaultConfig {
            applicationId = "org.gradle.samples"
            namespace = "org.gradle.samples"
            minSdkVersion(16)
            targetSdkVersion(30)
            versionCode = 1
            versionName = "1.0"
            testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByReference/simple.kt

    Yan Zhulanow <******@****.***> 1706719109 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 72 bytes
    - Viewed (0)
Back to top