Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 910 for example1 (0.15 sec)

  1. src/cmd/go/testdata/mod/example.com_deprecated_a_v1.0.0.txt

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/deprecated/a
    
    go 1.17
    -- go.mod --
    module example.com/deprecated/a
    
    go 1.17
    -- a.go --
    package a
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 246 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.1.txt

    -- .info --
    {"Version":"v1.0.1"}
    -- .mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- go.mod --
    // no longer deprecated
    module example.com/undeprecated
    
    go 1.17
    -- undeprecated.go --
    package undeprecated
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 316 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/resources/META-INF/gradle-plugins/com.example.custom-dependencies.properties

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 648 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    	emptyResult := &v1.Example{}
    	obj, err := c.Fake.
    		Invokes(testing.NewCreateAction(examplesResource, c.ns, example), emptyResult)
    
    	if obj == nil {
    		return emptyResult, err
    	}
    	return obj.(*v1.Example), err
    }
    
    // Update takes the representation of a example and updates it. Returns the server's representation of the example, and an error, if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/testdata/localhost.yaml

          80: 8080
    # Define another local address, but this one uses TCP. This allows testing HBONE and TCP with one config.
    - uid: cluster1//v1/Pod/default/local-tcp
      name: local-tcp
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.2"]
      protocol: TCP
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
        "default/example2.com":
          80: 8080
    policies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. security/pkg/k8s/chiron/test-data/example-ca-cert.pem

    zirain <******@****.***> 1715745491 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    var codecs = serializer.NewCodecFactory(scheme)
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    	utilruntime.Must(examplev1.AddToScheme(scheme))
    }
    
    func TestTLSConnection(t *testing.T) {
    	codec := apitesting.TestCodec(codecs, examplev1.SchemeGroupVersion)
    
    	certFile, keyFile, caFile := configureTLSCerts(t)
    	defer os.RemoveAll(filepath.Dir(certFile))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. security/pkg/k8s/chiron/test-data/example-ca-cert2.pem

    zirain <******@****.***> 1715745491 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AnnotationProcessingSmokeTest.groovy

                import lombok.val;
    
                public class ValExample {
                  public String example() {
                    val example = new ArrayList<String>();
                    example.add("Hello, World!");
                    val foo = example.get(0);
                    return foo.toLowerCase();
                  }
    
                  public void example2() {
                    val map = new HashMap<Integer, String>();
                    map.put(0, "zero");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    They can be set from the command line using the `-P` / `--project-prop` <<command_line_interface.adoc#sec:environment_options, environment option>>.
    
    The following examples demonstrate how to set project properties in different ways.
    
    *Example 1:* Setting a project property via the *command line*:
    ====
    ----
    $ gradle -PgradlePropertiesProp=commandLineValue
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top