Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 293 for vlogf (0.04 sec)

  1. pkg/controller/nodeipam/ipam/range_allocator_test.go

    		if err != nil {
    			t.Logf("%v: failed to create CIDRRangeAllocator with error %v", tc.description, err)
    		}
    		rangeAllocator, ok := allocator.(*rangeAllocator)
    		if !ok {
    			t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    				t.Errorf("state got after prefilter does not match (-want,+got):\n%s", diff)
    			}
    
    			t.Logf("Verify: call Filter and check status")
    			for i, nodeInfo := range nodeInfos {
    				gotStatus := p.Filter(ctx, state, item.pod, nodeInfo)
    				assert.Equal(t, item.wantFilterStatus[i], gotStatus)
    			}
    
    			t.Logf("Verify: call PreScore and check status")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/print/print.go

    	// level := 123
    	// externalprintf.Logf(level, "%d", 42)                        // OK
    	// externalprintf.Errorf(level, level, "foo %q bar", "foobar") // OK
    	// externalprintf.Logf(level, "%d")                            // no error "Logf format %d reads arg #1, but call has 0 args"
    	// var formatStr = "%s %s"
    	// externalprintf.Sprintf(formatStr, "a", "b")     // OK
    	// externalprintf.Logf(level, formatStr, "a", "b") // OK
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

            return LogicalResult::failure();
          }
          if (is_variable && use_in_forward)
            forward_variable_inputs.insert(argument.getArgNumber());
        }
      }
    
      VLOG(3) << "Found " << forward_variable_inputs.size()
              << " variables used in forward pass of " << resource_count
              << " total resource inputs";
    
      // Clone the TPUReplicatedInputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/os/signal/signal_cgo_test.go

    	// will pass.
    	time.Sleep(pause)
    
    	t.Logf("Sending ^Z...")
    
    	// Send a ^Z to stop the program.
    	if _, err := pty.Write([]byte{26}); err != nil {
    		t.Fatalf("writing ^Z to pty: %v", err)
    	}
    
    	// Wait for subprocess 1 to cycle the foreground process group.
    	if _, err := controlR.Read(b); err != nil {
    		t.Fatalf("error reading readiness: %v", err)
    	}
    
    	t.Logf("Sending SIGCONT...")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/vet/vet_test.go

    	out, _ := cmd.CombinedOutput()
    	return string(out) == "true\n"
    }
    
    func errchk(c *exec.Cmd, files []string, t *testing.T) {
    	output, err := c.CombinedOutput()
    	if _, ok := err.(*exec.ExitError); !ok {
    		t.Logf("vet output:\n%s", output)
    		t.Fatal(err)
    	}
    	fullshort := make([]string, 0, len(files)*2)
    	for _, f := range files {
    		fullshort = append(fullshort, f, filepath.Base(f))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    		},
    		{
    			input:     FromString("#%"),
    			expectErr: true,
    		},
    		{
    			input:     FromString("90"),
    			expectErr: true,
    		},
    	}
    
    	for i, test := range tests {
    		t.Logf("test case %d", i)
    		value, err := GetScaledValueFromIntOrPercent(&test.input, test.total, test.roundUp)
    		if test.expectErr && err == nil {
    			t.Errorf("expected error, but got none")
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. pkg/credentialprovider/plugin/config_test.go

    				t.Fatal(err)
    			}
    
    			if err == nil && testcase.expectErr {
    				t.Error("expected error but got none")
    			}
    
    			if !reflect.DeepEqual(authConfig, testcase.config) {
    				t.Logf("actual auth config: %#v", authConfig)
    				t.Logf("expected auth config: %#v", testcase.config)
    				t.Error("credential provider config did not match")
    			}
    		})
    	}
    }
    
    func Test_validateCredentialProviderConfig(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

      for (const std::string& node_name : control_ret_node_names) {
        if (absl::StrContains(node_name, contains)) {
          VLOG(1) << "Node found: " << node_name << ", contains: " << contains;
          return node_name;
        }
      }
      VLOG(1) << "Could not find node whose name conatins: " << contains;
      return "";
    }
    
    // Returns the file prefix tensor name. An empty string is returned if no such a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager_test.go

    			_, exists := m.getWorker(w.podUID, w.containerName, w.probeType)
    			return !exists, nil
    		}
    		if exited, _ := condition(); exited {
    			continue // Already exited, no need to poll.
    		}
    		t.Logf("Polling %v", w)
    		if err := wait.Poll(interval, wait.ForeverTestTimeout, condition); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // Wait for the given workers to exit & clean up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top