Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for Example (0.3 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    type ExamplesGetter interface {
    	Examples(namespace string) ExampleInterface
    }
    
    // ExampleInterface has methods to work with Example resources.
    type ExampleInterface interface {
    	Create(ctx context.Context, example *v1.Example, opts metav1.CreateOptions) (*v1.Example, error)
    	Update(ctx context.Context, example *v1.Example, opts metav1.UpdateOptions) (*v1.Example, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_overlay.txt

    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    ! stdout example.com/c
    
    # control case for go.work on disk and in overlay:
    # go.work is on disk but not in overlay.
    cp go.work.non-overlay go.work
    go list -m
    stdout example.com/a
    stdout example.com/b
    stdout example.com/c
    
    # go.work on disk and in overlay.
    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work.txt

    cd c
    go run  example.com/b
    stdout 'Hello, world.'
    cd $GOPATH/src
    
    go list all # all includes both modules
    stdout 'example.com/a'
    stdout 'example.com/b'
    
    # -mod can only be set to readonly in workspace mode
    go list -mod=readonly all
    ! go list -mod=mod all
    stderr '^go: -mod may only be set to readonly or vendor when in workspace mode'
    env GOWORK=off
    go list -mod=mod all
    env GOWORK=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

            }
    
            file("src/test/java/org/example/PublishedApiTestPluginTest.java") << pluginTestJava()
        }
    
        def "can compile Java code against public API"() {
            buildFile << configureApiWithPlugin('id("java-library")')
    
            file("src/main/java/org/example/PublishedApiTestPlugin.java") << """
                package org.example;
    
                import org.gradle.api.Plugin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

         *
         * For builder inference in FIR implementation it currently works incorrectly, see KT-50916.
         */
        public abstract val type: KaType
    }
    
    
    /**
     * An explicit expression receiver. For example
     * ```
     *   "".length // explicit receiver `""`
     * ```
     */
    public class KaExplicitReceiverValue(
        expression: KtExpression,
        type: KaType,
        isSafeNavigation: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    					Hosts:     []string{"a.example.com", "b.example.com"},
    					Ports: []*networking.ServicePort{{
    						Number: 80,
    						Name:   "http",
    					}},
    					SubjectAltNames: []string{"san1"},
    					Resolution:      networking.ServiceEntry_DNS,
    				},
    			},
    			result: []*workloadapi.Service{
    				{
    					Name:      "name",
    					Namespace: "ns",
    					Hostname:  "a.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

         *
         * #### Example 1
         *
         * ```
         * val x = 10<caret>
         * val z = x
         * ```
         *
         * If we change the initializer of `x` to `"str"` the return type of `x` will become `String` instead of the initial `Int`. This will
         * change the return type of `z` as it does not have an explicit type. So, it is an **OOBM**.
         *
         * #### Example 2
         *
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apiserver/pkg/apis/example"
    	examplev1 "k8s.io/apiserver/pkg/apis/example/v1"
    	"k8s.io/apiserver/pkg/storage/etcd3/testing/testingcert"
    	"k8s.io/apiserver/pkg/storage/etcd3/testserver"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    )
    
    var scheme = runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * does not imply the corresponding module-level event. Similarly, publishing a module state modification event does not imply out-of-block
     * modification.
     *
     * Global modification events are published when it's not feasible or desired to publish events for a single module, or a limited set of
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-example-client/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.internal.java")
        id("application")
    }
    
    description = "Example client application using the build-cache library"
    
    dependencies {
        implementation(projects.buildCache)
        implementation(projects.buildCacheBase)
        implementation(projects.buildCacheLocal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top