Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for vlogf (0.19 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		fuzzer.Fuzz(q)
    		b, err := json.Marshal(q)
    		if err != nil {
    			t.Errorf("error encoding %v: %v", q, err)
    			continue
    		}
    		q2 := &Quantity{}
    		err = json.Unmarshal(b, q2)
    		if err != nil {
    			t.Logf("%d: %s", i, string(b))
    			t.Errorf("%v: error decoding %v: %v", q, string(b), err)
    		}
    		if q2.Cmp(*q) != 0 {
    			t.Errorf("Expected equal: %v, %v (json was '%v')", q, q2, string(b))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    		normalCont1Devices,
    		normalCont2Devices,
    	}
    
    	for i := 0; i < len(dedicatedContainerDevices)-1; i++ {
    		for j := i + 1; j < len(dedicatedContainerDevices); j++ {
    			t.Logf("containerDevices[%d] = %v", i, dedicatedContainerDevices[i])
    			t.Logf("containerDevices[%d] = %v", j, dedicatedContainerDevices[j])
    			as.Empty(dedicatedContainerDevices[i].Intersection(dedicatedContainerDevices[j]))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. internal/s3select/select_test.go

    			if err != nil {
    				if !testCase.wantErr {
    					t.Fatal(err)
    				}
    				t.Logf("got expected error: %v", err)
    				return
    			}
    
    			if err = s3Select.Open(newBytesRSC(testCase.input)); err != nil {
    				if !testCase.wantErr {
    					t.Fatal(err)
    				}
    				t.Logf("got expected error: %v", err)
    				return
    			} else if testCase.wantErr {
    				t.Error("did not get expected error")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        if (TryGetNodeAttr(node->attrs(), kXlaClusterAttr, &cluster)) {
          CHECK(!cluster.empty());
          ids[node->name()] = cluster;
        }
      }
    
      if (VLOG_IS_ON(2)) {
        VLOG(2) << "Clusters:";
        for (const auto& p : ids) {
          VLOG(2) << " " << p.first << " -> " << p.second;
        }
      }
      return ids;
    }
    
    std::set<string> GetClusterNames(const Graph& graph) {
      std::set<string> names;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    		if err != nil {
    			t.Fatalf("Failed to start subcommand: %s", err)
    		}
    		clientConn = recordingConn
    		defer func() {
    			if t.Failed() {
    				t.Logf("OpenSSL output:\n\n%s", stdout.all)
    			}
    		}()
    	} else {
    		clientConn, serverConn = localPipe(t)
    	}
    
    	doneChan := make(chan bool)
    	defer func() {
    		clientConn.Close()
    		<-doneChan
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    		c.linkctxt.Errorf(ds, "invalid size %d in adddwarfref\n", size)
    	case c.arch.PtrSize, 4:
    	}
    	dsu.AddSymRef(c.arch, tds, ofs, objabi.R_DWARFSECREF, size)
    }
    
    func (c dwctxt) Logf(format string, args ...interface{}) {
    	c.linkctxt.Logf(format, args...)
    }
    
    // At the moment these interfaces are only used in the compiler.
    
    func (c dwctxt) CurrentOffset(s dwarf.Sym) int64 {
    	panic("should be used only in the compiler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			listeners := buildOutboundListeners(t, proxy, nil, tc.sidecar, tc.services...)
    			if len(listeners) != len(tc.expectedListener) {
    				t.Logf("listeners: %v", listeners[0].GetAddress().GetSocketAddress().GetPortValue())
    				t.Fatalf("expected %d listeners, found %d", len(tc.expectedListener), len(listeners))
    			}
    			for _, port := range tc.expectedListener {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Fatalf("Unable to get second page: %v", err)
    	}
    	if len(out.Continue) != 0 {
    		t.Fatalf("Unexpected continuation token set")
    	}
    	key, rv, err := storage.DecodeContinue(continueFromSecondItem, "/pods")
    	t.Logf("continue token was %d %s %v", rv, key, err)
    	expectNoDiff(t, "incorrect second page", []example.Pod{*preset[1].storedObj, *preset[2].storedObj}, out.Items)
    	if out.ResourceVersion != currentRV {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			ctx := &ratchetingTestContext{
    				T:                   t,
    				DynamicClient:       dynamicClient,
    				APIExtensionsClient: apiExtensionClient,
    			}
    
    			for i, op := range c.Operations {
    				t.Logf("Performing Operation: %v", op.Description())
    				if err := op.Do(ctx); err != nil {
    					t.Fatalf("failed %T operation %v: %v\n%v", op, i, err, op)
    				}
    			}
    
    			// Reset resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	modified := update(t, objects, updates)
    	for i := range modified {
    		obj := modified[i]
    		if diff := cmp.Diff(objects[i], obj); diff != "" {
    			t.Logf("Updating %T %q, diff (-old, +new):\n%s", obj, obj.GetName(), diff)
    			switch obj := obj.(type) {
    			case *resourcev1alpha2.ResourceClaim:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top