Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,179 for emptypb (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		emptyObj := &runtimetesting.Unstructured{Object: make(map[string]interface{})}
    		if _, _, err := scheme.ObjectKinds(emptyObj); !runtime.IsMissingKind(err) {
    			t.Errorf("unexpected error: %v", err)
    		}
    		emptyObj.SetGroupVersionKind(schema.GroupVersionKind{Kind: "Test"})
    		if _, _, err := scheme.ObjectKinds(emptyObj); !runtime.IsMissingVersion(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-filter-empty.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-filter-empty
    spec:
      rules:
      - filters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 163 bytes
    - Viewed (0)
  3. releasenotes/notes/gauge-empty-metrics.yaml

    John Howard <******@****.***> 1694621088 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 235 bytes
    - Viewed (0)
  4. src/regexp/backtrack.go

    					b.cap[inst.Arg] = pos
    				}
    				pc = inst.Out
    				goto CheckAndLoop
    			}
    
    		case syntax.InstEmptyWidth:
    			flag := i.context(pos)
    			if !flag.match(syntax.EmptyOp(inst.Arg)) {
    				continue
    			}
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstNop:
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstMatch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
      empty1[shape=plain, label=""]
      empty2[shape=plain, label=""]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/swift-shared-library-task-graph.dot

      // Ensure ordering
      compileDebugSwift -> compileReleaseSwift -> clean [style=invis]
      {rank=same compileDebugSwift compileReleaseSwift clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
      empty1[shape=plain, label=""]
      empty2[shape=plain, label=""]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    	// Empty interfaces holding values.
    	{"empty nil", "{{.Empty0}}", "<no value>", tVal, true},
    	{"empty with int", "{{.Empty1}}", "3", tVal, true},
    	{"empty with string", "{{.Empty2}}", "empty2", tVal, true},
    	{"empty with slice", "{{.Empty3}}", "[7 8]", tVal, true},
    	{"empty with struct", "{{.Empty4}}", "{UinEmpty}", tVal, true},
    	{"empty with struct, field", "{{.Empty4.V}}", "UinEmpty", tVal, true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/ipv6-empty-inbound-ports.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied.go

    	if len(managed.Fields()) == 0 {
    		gvk := appliedObj.GetObjectKind().GroupVersionKind()
    		emptyObj, err := f.objectCreater.New(gvk)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to create empty object of type %v: %v", gvk, err)
    		}
    		liveObj, managed, err = f.fieldManager.Update(emptyObj, liveObj, managed, f.beforeApplyManagerName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java

        assertEquals(Object[].class, array.getClass());
      }
    
      public void testToArray_emptyArray() {
        E[] empty = getSubjectGenerator().createArray(0);
        E[] array = collection.toArray(empty);
        assertEquals(
            "toArray(emptyT[]) should return an array of type T", empty.getClass(), array.getClass());
        assertEquals("toArray(emptyT[]).length:", getNumElements(), array.length);
        expectArrayContentsAnyOrder(createSamplesArray(), array);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top