Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,616 for emptypb (0.15 sec)

  1. test/empty.go

    // compile
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that top-level parenthesized declarations can be empty.
    // Compiles but does not run.
    
    package P
    
    import ( )
    const ( )
    var ( )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 316 bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			existingPods: []*v1.Pod{splitAzureDiskPod, nonApplicablePod, emptyPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    			test:         "existing pods' counts ignore non-AzureDisk volumes",
    		},
    		{
    			newPod:       onePVCPod(azureDiskVolumeFilterType),
    			existingPods: []*v1.Pod{splitAzureDiskPod, nonApplicablePod, emptyPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  3. pkg/registry/apps/controllerrevision/storage/storage_test.go

    		emptyName   = stripObjectMeta(newControllerRevision("", "validns", newObject(), 0))
    		invalidName = stripObjectMeta(newControllerRevision("NoUppercaseOrSpecialCharsLike=Equals", "validns", newObject(), 0))
    		emptyNs     = stripObjectMeta(newControllerRevision("validname", "", newObject(), 100))
    		invalidNs   = stripObjectMeta(newControllerRevision("validname", "NoUppercaseOrSpecialCharsLike=Equals", newObject(), 100))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  4. pkg/api/v1/pod/util_test.go

    	}
    
    	// emptyPod is a stub containing empty object names
    	emptyPod := &v1.Pod{
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{{
    				EnvFrom: []v1.EnvFromSource{{
    					SecretRef: &v1.SecretEnvSource{
    						LocalObjectReference: v1.LocalObjectReference{
    							Name: ""}}}}}},
    		},
    	}
    	VisitPodSecretNames(emptyPod, func(name string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt

    git tag v2.0.0
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    122733c (HEAD -> master, tag: v2.0.0) add go.mod file without go source files
    -- go.mod --
    module vcs-test.golang.org/git/empty-v2-without-v1.git/v2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 550 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/empty-main.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 342 bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/validation/empty-module.xml

    Benjamin Bentmann <******@****.***> 1269519473 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 25 12:17:53 UTC 2010
    - 984 bytes
    - Viewed (0)
  8. src/regexp/onepass.go

    	i := &p.Inst[p.Start]
    	if i.Op != syntax.InstEmptyWidth || (syntax.EmptyOp(i.Arg))&syntax.EmptyBeginText == 0 {
    		return "", i.Op == syntax.InstMatch, uint32(p.Start)
    	}
    	pc = i.Out
    	i = &p.Inst[pc]
    	for i.Op == syntax.InstNop {
    		pc = i.Out
    		i = &p.Inst[pc]
    	}
    	// Avoid allocation of buffer if prefix is empty.
    	if iop(i) != syntax.InstRune || len(i.Rune) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. hack/testdata/invalid-rc-with-empty-args.yaml

      template:
        metadata:
          labels:
            k8s-app: kube-dns
        spec:
          containers:
          - name: carbon-relay
            image: banno/carbon-relay
            args:
            -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 30 04:12:18 UTC 2016
    - 364 bytes
    - Viewed (0)
  10. src/cmd/covdata/doc.go

    	$ go tool covdata pkglist -i=profiledir
    	cov-example/p
    	main
    	$
    
    3. Report percent statements covered by function:
    
    	$ go tool covdata func -i=profiledir
    	cov-example/p/p.go:12:		emptyFn			0.0%
    	cov-example/p/p.go:32:		Small			100.0%
    	cov-example/p/p.go:47:		Medium			90.9%
    	...
    	$
    
    4. Convert coverage data to legacy textual format:
    
    	$ go tool covdata textfmt -i=profiledir -o=cov.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top