Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for catalog (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/resolve/DependencyResolutionManagement.java

        /**
         * Configures the version catalogs which will be used to generate type safe accessors for dependencies.
         * @param spec the spec to configure the dependencies
         *
         * @since 7.0
         */
        void versionCatalogs(Action<? super MutableVersionCatalogContainer> spec);
    
        /**
         * Returns the configurable version catalogs.
         *
         * @since 7.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/proflabel.go

    // runtime_setProfLabel should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/localsession
    //   - github.com/DataDog/datadog-agent
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname runtime_setProfLabel runtime/pprof.runtime_setProfLabel
    func runtime_setProfLabel(labels unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. samples/bookinfo/src/details/details.rb

          # libraries from lightstep do not support x-ot-span-context.
          'x-ot-span-context',
    
          # Datadog tracing header. Propagate these headers if you use Datadog
          # tracing.
          'x-datadog-trace-id',
          'x-datadog-parent-id',
          'x-datadog-sampling-priority',
    
          # W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            datadog:
              # Address of the Datadog Agent
              address: {{ ((.Values.global.tracer).datadog).address | default "$(HOST_IP):8126" }}
          {{- else if eq .Values.global.proxy.tracer "stackdriver" }}
            stackdriver:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/configmap.yaml

          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            datadog:
              # Address of the Datadog Agent
              address: {{ ((.Values.global.tracer).datadog).address | default "$(HOST_IP):8126" }}
          {{- else if eq .Values.global.proxy.tracer "stackdriver" }}
            stackdriver:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.tracer.stackdriver.maxNumberOfMessageEvents" "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfMessageEvents"
        "global.tracer.datadog.address" "meshConfig.defaultConfig.tracing.datadog.address"
        "global.meshExpansion.enabled" "Gateway and other Istio networking resources, such as in samples/multicluster/"
        "istiocoredns.enabled" "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/tags.go

    	Azerbaijani          Tag = Tag(compact.Azerbaijani)
    	Bulgarian            Tag = Tag(compact.Bulgarian)
    	Bengali              Tag = Tag(compact.Bengali)
    	Catalan              Tag = Tag(compact.Catalan)
    	Czech                Tag = Tag(compact.Czech)
    	Danish               Tag = Tag(compact.Danish)
    	German               Tag = Tag(compact.German)
    	Greek                Tag = Tag(compact.Greek)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Azerbaijani          Tag = Tag{language: azIndex, locale: azIndex}
    	Bulgarian            Tag = Tag{language: bgIndex, locale: bgIndex}
    	Bengali              Tag = Tag{language: bnIndex, locale: bnIndex}
    	Catalan              Tag = Tag{language: caIndex, locale: caIndex}
    	Czech                Tag = Tag{language: csIndex, locale: csIndex}
    	Danish               Tag = Tag{language: daIndex, locale: daIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    [source,kotlin]
    ----
    dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
        repositories {
            mavenCentral()
        }
    }
    ----
    
    You can also include version catalogs in this section.
    
    === 5. Add subprojects to the build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/instances.go

    }
    
    func ZipkinAddress(value string) Instance {
    	return newOptionOrSkipIfZero("zipkin", value).withConvert(addressConverter(value))
    }
    
    func DataDogAddress(value string) Instance {
    	return newOptionOrSkipIfZero("datadog", value).withConvert(addressConverter(value))
    }
    
    func StatsdAddress(value string) Instance {
    	return newOptionOrSkipIfZero("statsd", value).withConvert(addressConverter(value))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top