Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 775 for Knative (0.14 sec)

  1. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: hello-ingress-{{$i}}
      namespace: default
    spec:
      gateways:
      - knative-serving/knative-ingress-gateway
      - knative-serving/knative-local-gateway
      hosts:
      - hello.default
      - hello.default.external.domain
      - hello.default.svc
      - hello.default.svc.cluster.local
      http:
      - headers:
          request:
            set:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    	// Tracks connections, increment on each new connection.
    	connectionNumber = int64(0)
    )
    
    // Used only when running in KNative, to handle the load balancing behavior.
    var firstRequest = uatomic.NewBool(true)
    
    var knativeEnv = env.Register("K_REVISION", "",
    	"KNative revision, set if running in knative").Get()
    
    // DiscoveryStream is a server interface for XDS.
    type DiscoveryStream = xds.DiscoveryStream
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/bench_test.go

    		Name:      "gateways-shared",
    		Services:  1000,
    		ProxyType: model.Router,
    	},
    	{
    		// Knative Gateway simulates a full Knative routing setup. There have been a variety of performance issues and optimizations
    		// around Knative's somewhat abnormal usage, so its good to keep track and measure
    		Name:      "knative-gateway",
    		Services:  100,
    		ProxyType: model.Router,
    	},
    
    	// Testing different port types
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    )
    
    var deltaLog = istiolog.RegisterScope("delta", "delta xds debugging")
    
    func (s *DiscoveryServer) StreamDeltas(stream DeltaDiscoveryStream) error {
    	if knativeEnv != "" && firstRequest.Load() {
    		// How scaling works in knative is the first request is the "loading" request. During
    		// loading request, concurrency=1. Once that request is done, concurrency is enabled.
    		// However, the XDS stream is long lived, so the first request would block all others. As a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. releasenotes/notes/native-stats.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Updated** Telemetry API uses a new native extension for Prometheus stats
      instead of the Wasm-based extension. This improves CPU overhead and memory
      usage of the feature. Custom dimensions no longer require regex and bootstrap
      annotations. If customizations use CEL expressions with Wasm attributes, they
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 16:00:46 UTC 2022
    - 420 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To build a static library, please refer to the https://github.com/gradle/native-samples/tree/master/cpp/static-library[static library sample].
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    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. platforms/documentation/docs/src/samples/readme-templates/native-library-summary.adoc.template

    == Next Steps
    
    * Make your way to the https://github.com/gradle/native-samples/[native samples repository] to see the ${language.raw} plugins in action for common scenarios such as https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependencies], https://github.com/gradle/native-samples/tree/master/cpp/swift-package-manager[custom source layout], and https://github.com/gradle/native-samples/tree/master/cpp/static-library[static library].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/dag.txt

    quarkus/extensions/kubernetes-config/runtime/pom.xml
    	quarkus/extensions/kubernetes-client/runtime/pom.xml
    quarkus/extensions/funqy/funqy-knative-events/deployment/pom.xml
    	quarkus/extensions/funqy/funqy-knative-events/runtime/pom.xml
    	quarkus/extensions/funqy/funqy-server-common/deployment/pom.xml
    	quarkus/extensions/vertx-http/deployment/pom.xml
    	quarkus/extensions/arc/deployment/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    The shell scripts properly configure the library path so the package can be relocated.
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

            The only attribute distinguishing these variants is 'org.gradle.native.architecture'. Add this attribute to the consumer's configuration to resolve the ambiguity:
              - Value: 'x86-64' selects variant: 'natives-windows-runtime'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
Back to top