Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 154 for Example (0.13 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         * alias `typealias MyString = String` and its application `MyString`, `String` would be the type alias expansion and `MyString` its
         * abbreviated type.
         *
         * The abbreviated type contains the type arguments of a specific type alias application. For example, if we have a
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

                  plugins {
                    myPlugin {
                      id = 'com.example.my-plugin'
                      implementationClass = 'com.example.MyPlugin'
                    }
                  }
                }
            """
            file('src/main/java/com/example/MyPlugin.java') << """
                package com.example;
                public class MyPlugin implements $Plugin.name<$Project.name> {
                  @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_cgo.txt

    [!fuzz] skip
    [!cgo] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Test that fuzzing works with cgo (issue 65169)
    
    go test -fuzz=. -fuzztime=1x
    stdout ok
    ! stdout FAIL
    
    -- go.mod --
    module example.com/p
    
    go 1.20
    -- c.go --
    package p
    
    import "C"
    -- c_test.go --
    package p
    
    import "testing"
    
    func Fuzz(f *testing.F) {
    	f.Add(0)
    	f.Fuzz(func(t *testing.T, x int) {})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 364 bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta_test.go

    		},
    	})
    
    	const updateCluster = "outbound|2080||adsupdate.example.com"
    	const staticCluster = "outbound|2080||adsstatic.example.com"
    	ads := s.ConnectDeltaADS()
    	// Send initial request
    	res := ads.RequestResponseAck(&discovery.DeltaDiscoveryRequest{TypeUrl: v3.ClusterType})
    	// we must get the cluster back
    	if resn := xdstest.ExtractResource(res.Resources); !resn.Contains(updateCluster) || !resn.Contains(staticCluster) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/apis/example"
    	examplev1 "k8s.io/apiserver/pkg/apis/example/v1"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	storagetesting "k8s.io/apiserver/pkg/storage/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaim_test.go

    	goodClaimSpec := resource.ResourceClaimSpec{
    		ResourceClassName: goodName,
    		AllocationMode:    validMode,
    	}
    	now := metav1.Now()
    	badValue := "spaces not allowed"
    	badAPIGroup := "example.com/v1"
    	goodAPIGroup := "example.com"
    
    	scenarios := map[string]struct {
    		claim        *resource.ResourceClaim
    		wantFailures field.ErrorList
    	}{
    		"good-claim": {
    			claim: testClaim(goodName, goodNS, goodClaimSpec),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes-template.md

    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/release/notes.md

    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            def pluginBuilder = new PluginBuilder(file("plugins"))
            pluginBuilder.addPluginId("com.example.test-software-type-impl", "SoftwareTypeImplPlugin")
            pluginBuilder.addPluginId("com.example.another-software-type-impl", "AnotherSoftwareTypeImplPlugin")
            pluginBuilder.addPluginId("com.example.test-software-type", "SoftwareTypeRegistrationPlugin")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    		// for this path.
    		//
    		// For example, consider the command
    		//
    		// 	go get example.com/foo@latest example.com/foo/bar/baz@latest
    		//
    		// If modules example.com/foo and example.com/foo/bar both provide
    		// package example.com/foo/bar/baz, then we *must* resolve the package
    		// from example.com/foo: if we instead resolved it from
    		// example.com/foo/bar, we would have two copies of the package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top