Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 742 for addAction (0.21 sec)

  1. pkg/monitoring/counter.go

    	"istio.io/istio/pkg/log"
    )
    
    type counter struct {
    	baseMetric
    	c api.Float64Counter
    	// precomputedAddOption is just a precomputation to avoid allocations on each record call
    	precomputedAddOption []api.AddOption
    }
    
    var _ Metric = &counter{}
    
    func newCounter(o options) *counter {
    	c, err := meter().Float64Counter(o.name,
    		api.WithDescription(o.description),
    		api.WithUnit(string(o.unit)))
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerArgumentsGenerator.java

            addFlag("-unchecked", options.isUnchecked(), result);
            addConcatenatedOption("-g:", options.getDebugLevel(), result);
            addFlag("-optimise", options.isOptimize(), result);
            addOption("-encoding", options.getEncoding(), result);
            addFlag("-verbose", "verbose".equals(options.getDebugLevel()), result);
            addFlag("-Ydebug", "debug".equals(options.getDebugLevel()), result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. releasenotes/notes/27159.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 27159
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 12 21:10:43 UTC 2020
    - 175 bytes
    - Viewed (0)
  4. pkg/hbone/dialer_test.go

    }
    
    func TestDialerError(t *testing.T) {
    	timeout := 500 * time.Millisecond
    	d := NewDialer(Config{
    		ProxyAddress: "127.0.0.10:1", // Random address that should fail to dial
    		Headers: map[string][]string{
    			"some-addition-metadata": {"test-value"},
    		},
    		TLS:     nil, // No TLS for simplification
    		Timeout: &timeout,
    	})
    
    	_, err := d.Dial("tcp", "fake")
    	if err == nil {
    		t.Fatal("expected error, got none.")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 26 23:44:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. releasenotes/notes/http-metadata-exchange.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 21:40:04 UTC 2023
    - 272 bytes
    - Viewed (0)
  6. okhttp-brotli/README.md

    OkHttp Brotli Implementation
    ============================
    
    This module is an implementation of [Brotli][1] compression.
    It enables Brotli support in addition to tranparent Gzip support,
    provided Accept-Encoding is not set previously.  Modern web servers
    must choose to return Brotli responses.  n.b. It is not used for
    sending requests.
    
    ```java
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(BrotliInterceptor.INSTANCE)
      .build();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 572 bytes
    - Viewed (0)
  7. releasenotes/notes/gauge-empty-metrics.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue: [46977]
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 235 bytes
    - Viewed (0)
  8. releasenotes/notes/add-default-revision-webhook.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** non-revisioned installs to target the label `istio.io/rev=default` for injection in addition to the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 12 19:16:25 UTC 2021
    - 298 bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

         *     </li>
         *     <li>It avoids resolving the runtime classpath in case of a compile error.
         *     </li>
         * </ul>
         *
         * In addition, the test compile classpath is going to be configured to
         * be consistent with the main compile classpath.
         */
        void useCompileClasspathVersions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void doesNotHaveSecondaryVariantsLegend() {
            outputDoesNotContain("(*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.")
        }
    
        void hasLegacyLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top