Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,477 for samples_ (0.38 sec)

  1. samples/websockets/README.md

        ```command
        kubectl create -f <(istioctl kube-inject -f samples/websockets/app.yaml)
        ```
    
        - With automatic sidecar injection
    
        ```command
        kubectl create -f samples/websockets/app.yaml
        ```
    
    1. Create the Ingress `Gateway` and `VirtualService` that enables the upgrade to Websocket for incoming traffic:
    
        ```command
        kubectl create -f samples/websockets/route.yaml
        ```
    
    ## Test
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

            outputContains("org.gradle:sample:1.0 (default capability)")
        }
    
        def "attribute combinations can be repeated if capabilities differ without a warning"() {
            given:
            settingsFile << "rootProject.name = 'sample'"
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. releasenotes/notes/dynatrace-sampler.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 50001
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 20:27:07 UTC 2024
    - 196 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

        }
    
        public String getSampleIndex() {
            return BASE_URL + "/samples";
        }
    
        public String getSampleFor(String id) {
            return String.format(getSampleIndex() + "/sample_%s.html", id);
        }
    
        public String getSampleForMessage(String id) {
            return LEARN_MORE_STRING + getSampleFor(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: sds
      values:
        global:
          logging:
            level: "default:warning" # override from info
    ```
    
    Values overrides can also be specified for a particular component
     ([samples/values-pilot.yaml](samples/values-pilot.yaml)):
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    
    if (project.hasProperty("sample1")) {
    // tag::exclude-transitive-dependencies-1[]
    dependencies {
        implementation("commons-beanutils:commons-beanutils:1.9.4") {
            exclude(group = "commons-collections", module = "commons-collections")
        }
    }
    // end::exclude-transitive-dependencies-1[]
    } else if (project.hasProperty("sample2")) {
    // tag::exclude-transitive-dependencies-2[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/runtime/metrics_test.go

    	descs := metrics.All()
    	var samples [2][]metrics.Sample
    	samples[0] = make([]metrics.Sample, len(descs))
    	samples[1] = make([]metrics.Sample, len(descs))
    	total := 0
    	for i := range samples[0] {
    		if !descs[i].Cumulative {
    			continue
    		}
    		samples[0][total].Name = descs[i].Name
    		total++
    	}
    	samples[0] = samples[0][:total]
    	samples[1] = samples[1][:total]
    	copy(samples[1], samples[0])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. pkg/monitoring/monitortest/test.go

    	return func(f any) error {
    		d := f.(*dto.Histogram)
    		if *d.SampleCount != count {
    			return fmt.Errorf("want %v samples, got %v", count, *d.SampleCount)
    		}
    		if *d.SampleSum != sum {
    			return fmt.Errorf("want %v sum, got %v", count, *d.SampleSum)
    		}
    		return nil
    	}
    }
    
    // Buckets asserts a distribution has the number of buckets
    func Buckets(count int) func(any) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/runtime/metrics.go

    func readMetricsLocked(samplesp unsafe.Pointer, len int, cap int) {
    	// Construct a slice from the args.
    	sl := slice{samplesp, len, cap}
    	samples := *(*[]metricSample)(unsafe.Pointer(&sl))
    
    	// Clear agg defensively.
    	agg = statAggregate{}
    
    	// Sample.
    	for i := range samples {
    		sample := &samples[i]
    		data, ok := metrics[sample.name]
    		if !ok {
    			sample.value.kind = metricKindBad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java

        }
    
        @Override
        public SampleElements<Entry<V, K>> samples() {
          SampleElements<Entry<K, V>> samples = generator.samples();
          return new SampleElements<>(
              reverse(samples.e0()),
              reverse(samples.e1()),
              reverse(samples.e2()),
              reverse(samples.e3()),
              reverse(samples.e4()));
        }
    
        private Entry<V, K> reverse(Entry<K, V> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top