Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for vlogf (0.04 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    				return strings.HasPrefix(c.Name, "inbound")
    			})
    			if len(s.PushContext().ProxyStatus) != 0 {
    				// TODO make this fatal, once inbound conflict is silenced
    				t.Logf("got unexpected error: %+v", s.PushContext().ProxyStatus)
    			}
    			cmap := xdstest.ExtractClusters(clusters)
    			got := xdstest.MapKeys(cmap)
    
    			// Check we have all expected clusters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        // dimensions. Such info is still useful for the downstream. We don't need
        // to abort here.
        // TODO(b/316639984): improve RefineDynamicShapes return values to include
        // these info.
        VLOG(1) << "Failed during XlaCallModule shape refinement: " << status;
      }
      mlir::ResultRange op_results = op.getResults();
      // The main_outputs may include tokens that are not among the op_results;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    func (ctxt *Link) AddTramp(s *loader.SymbolBuilder) {
    	s.SetType(sym.STEXT)
    	s.SetReachable(true)
    	s.SetOnList(true)
    	ctxt.tramps = append(ctxt.tramps, s.Sym())
    	if *FlagDebugTramp > 0 && ctxt.Debugvlog > 0 {
    		ctxt.Logf("trampoline %s inserted\n", s.Name())
    	}
    }
    
    // compressSyms compresses syms and returns the contents of the
    // compressed section. If the section would get larger, it returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	    If d is 0, the timeout is disabled.
    //	    The default is 10 minutes (10m).
    //
    //	-v
    //	    Verbose output: log all tests as they are run. Also print all
    //	    text from Log and Logf calls even if the test succeeds.
    //
    //	-vet list
    //	    Configure the invocation of "go vet" during "go test"
    //	    to use the comma-separated list of vet checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top