Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 207 for Example (0.31 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	}
    	out.ExternalDocs = (*apiextensions.ExternalDocumentation)(unsafe.Pointer(in.ExternalDocs))
    	if in.Example != nil {
    		in, out := &in.Example, &out.Example
    		*out = new(apiextensions.JSON)
    		if err := Convert_v1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Example = nil
    	}
    	out.Nullable = in.Nullable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	}
    	out.ExternalDocs = (*apiextensions.ExternalDocumentation)(unsafe.Pointer(in.ExternalDocs))
    	if in.Example != nil {
    		in, out := &in.Example, &out.Example
    		*out = new(apiextensions.JSON)
    		if err := Convert_v1beta1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Example = nil
    	}
    	out.Nullable = in.Nullable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * Creates an empty {@code Set} that uses identity to determine equality. It compares object
       * references, instead of calling {@code equals}, to determine whether a provided object matches
       * an element in the set. For example, {@code contains} returns {@code false} when passed an
       * object that equals a set member, but isn't the same instance. This behavior is similar to the
       * way {@code IdentityHashMap} handles key lookups.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                                id = "com.example.servicePlugin"
                                implementationClass = "com.example.ServicePlugin"
                            }
                        }
                    }
                """
    
                file("service-plugin/src/main/java/com/example/ServicePlugin.java") << """
                    package com.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    	oldPodStatus := podStatus
    	podStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionTrue,
    	})
    
    	oldPodStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionFalse,
    	})
    
    	normalizeStatus(&pod, &oldPodStatus)
    	normalizeStatus(&pod, &podStatus)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    		c.Fatalf("policy add error: %v", err)
    	}
    
    	ldapID := cr.LDAPIdentity{
    		Client:       s.TestSuiteCommon.client,
    		STSEndpoint:  s.endPoint,
    		LDAPUsername: "svc.algorithm",
    		LDAPPassword: "example",
    	}
    
    	_, err = ldapID.Retrieve()
    	if err == nil {
    		c.Fatalf("Expected to fail to create STS cred with no associated policy!")
    	}
    
    	mustNormalizeDN := func(dn string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

       * Creates an empty {@code Set} that uses identity to determine equality. It compares object
       * references, instead of calling {@code equals}, to determine whether a provided object matches
       * an element in the set. For example, {@code contains} returns {@code false} when passed an
       * object that equals a set member, but isn't the same instance. This behavior is similar to the
       * way {@code IdentityHashMap} handles key lookups.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    	proto.RegisterType((*PodCondition)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodCondition")
    	proto.RegisterType((*PodList)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodList")
    	proto.RegisterType((*PodSpec)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodSpec")
    	proto.RegisterMapType((map[string]string)(nil), "k8s.io.apiserver.pkg.apis.example.v1.PodSpec.NodeSelectorEntry")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    		t.Fatal(err)
    	}
    	defer conf.teardown()
    	if err := conf.writeAndUpdate([]string{"options single-request"}); err != nil {
    		t.Fatal(err)
    	}
    	for _, name := range []string{"hostname.example.net", "slowipv4.example.net"} {
    		firstcalled = 0
    		_, err := r.LookupIPAddr(context.Background(), name)
    		if err != nil {
    			t.Error(err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/time/time.go

    // the base Time value and its Location. For example, AddDate(0, 0, 1) applied
    // to 12:00 on March 27 always returns 12:00 on March 28. At some locations and
    // in some years this is a 24 hour shift. In others it's a 23 hour shift due to
    // daylight savings time transitions.
    //
    // AddDate normalizes its result in the same way that Date does,
    // so, for example, adding one month to October 31 yields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top