Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 456 for utiliza (0.12 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "executable compiles using functions defined in header-only utility library"() {
            given:
            file("src/util/headers/util.h") << """
                const char *message = "Hello from the utility library";
    """
            file("src/main/cpp/main.cpp") << """
                #include "util.h"
                #include <iostream>
    
                int main () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. cmd/benchmark-utils_test.go

    package cmd
    
    import (
    	"bytes"
    	"context"
    	"math"
    	"math/rand"
    	"strconv"
    	"testing"
    
    	"github.com/dustin/go-humanize"
    )
    
    // Benchmark utility functions for ObjectLayer.PutObject().
    // Creates Object layer setup ( MakeBucket ) and then runs the PutObject benchmark.
    func runPutObjectBenchmark(b *testing.B, obj ObjectLayer, objSize int) {
    	var err error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/main_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/scheme/scheme.go

    	kubeletconfigv1 "k8s.io/kubernetes/pkg/kubelet/apis/config/v1"
    	kubeletconfigv1beta1 "k8s.io/kubernetes/pkg/kubelet/apis/config/v1beta1"
    )
    
    // Utility functions for the Kubelet's kubeletconfig API group
    
    // NewSchemeAndCodecs is a utility function that returns a Scheme and CodecFactory
    // that understand the types in the kubeletconfig API group. Passing mutators allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. cluster/images/etcd/README.md

    changes (bug fixes and backward compatible improvements) to the migration
    utility bundled with the image.
    
    In addition to the latest etcd version, each `registry.k8s.io/etcd` image contains
    etcd and etcdctl binaries for older versions of etcd. These are used by the
    migration operator utility when performing downgrades and multi-step upgrades,
    but can also be used as the etcd target version.
    
    #### Usage
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/extending-openapi.md

    By default, what the method `.openapi()` does is check the property `.openapi_schema` to see if it has contents and return them.
    
    If it doesn't, it generates them using the utility function at `fastapi.openapi.utils.get_openapi`.
    
    And that function `get_openapi()` receives as parameters:
    
    * `title`: The OpenAPI title, shown in the docs.
    * `version`: The version of your API, e.g. `2.5.0`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/apiWtpFacet.xml

    <faceted-project>
    	<fixed facet="jst.java"/>
    	<installed facet="jst.java" version="5.0"/>
    	<installed facet="jst.utility" version="1.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 157 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/kotlin/settings.gradle.kts

    rootProject.name = "jvm-multi-project-with-code-coverage"
    
    // production code projects
    include("application", "list", "utilities")
    
    // reporting utility projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 194 bytes
    - Viewed (0)
  9. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpJavaProjectIntegrationTest.groovy

            // Facets
            def facets = wtpFacets
            facets.assertHasFixedFacets("jst.java")
            facets.assertHasInstalledFacets("jst.utility", "jst.java")
            facets.assertFacetVersion("jst.utility", "1.0")
            facets.assertFacetVersion("jst.java", "6.0")
    
            // Component
            def component = wtpComponent
            component.deployName == 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top