Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 245 for knative (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .space/CODEOWNERS

    /kotlin-native/backend.native/tests/**.gradle "Kotlin Native"
    /kotlin-native/backend.native/tests/**/*.gradle.kts "Kotlin Native"
    /kotlin-native/tools/**/*.gradle "Kotlin Native"
    /kotlin-native/tools/**/*.gradle.kts "Kotlin Native"
    /kotlin-native/performance/**/*.gradle "Kotlin Native"
    /kotlin-native/performance/**/*.gradle.kts "Kotlin Native"
    /native/native.tests/*.gradle.kts "Kotlin Native"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  5. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                    }
    
                    def "native services are enabled"() {
                        given:
                        // We check if native dir was created before running a build, which would
                        // mean that native services were initialized by a test executor
                        println("Test executor initialized Native services: " + new File("${nativeDirOverride}").exists())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            }
        }
    
        /**
         * Initializes the native services to use the given user home directory to store native libs and other resources. Does nothing if already initialized.
         *
         * @param requestedFeatures Whether to initialize additional native libraries like jansi and file-events.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        ]
        subProjectTemplates = ['native-source', 'native-component', 'gradle-properties']
        daemonMemory = '256m'
    }
    
    performanceTest.registerTestProject("bigNative", NativeProjectGeneratorTask) {
        projects = 1
        sourceFiles = 500
        templateArgs = [
            moduleCount: 1,
            functionCount: 50
        ]
        subProjectTemplates = ['native-source', 'native-component', 'gradle-properties']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. .teamcity/subprojects.json

        "path": "platforms/jvm/distributions-jvm",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "distributions-native",
        "path": "platforms/native/distributions-native",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "distributions-publishing",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                lib - Components that depend on native library 'lib'
                +--- lib:sharedLibrary NOT BUILDABLE
                |    \\--- main:executable
                \\--- lib:staticLibrary NOT BUILDABLE
    
                main - Components that depend on native executable 'main'
                \\--- main:executable
    
                util - Components that depend on native library 'util'
                +--- util:sharedLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  10. settings.gradle.kts

        subproject("unit-test-fixtures")
        subproject("test-kit")
    }
    
    // Native Platform
    platform("native") {
        uses(core)
        uses(software)
        subproject("distributions-native")
        subproject("platform-native")
        subproject("language-native")
        subproject("tooling-native")
        subproject("testing-native")
    }
    
    
    // Develocity Module
    module("enterprise") {
        subproject("enterprise")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top