Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 303 for getLogs (0.42 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

                                  TF::XlaCallModuleOp xla_call_module_op) {
      SmallVector<Type> arg_types;
      SmallVector<Location> arg_locs;
      for (const Value arg : xla_call_module_op.getArgs()) {
        arg_types.push_back(arg.getType());
        arg_locs.push_back(arg.getLoc());
      }
    
      SmallVector<Type> output_types;
      for (const Value output : xla_call_module_op.getOutput()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime_cache.go

    import (
    	"context"
    	"sync"
    	"time"
    )
    
    // RuntimeCache is in interface for obtaining cached Pods.
    type RuntimeCache interface {
    	GetPods(context.Context) ([]*Pod, error)
    	ForceUpdateIfOlder(context.Context, time.Time) error
    }
    
    type podsGetter interface {
    	GetPods(context.Context, bool) ([]*Pod, error)
    }
    
    // NewRuntimeCache creates a container runtime cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ConsoleLayoutCalculatorTest.groovy

            given:
            1 * consoleMetaData.getRows() >> 100
    
            expect:
            consoleLayoutCalculator.calculateNumWorkersForConsoleDisplay(5) == 5
        }
    
        def "lines should be half the console size for small consoles"() {
            given:
            1 * consoleMetaData.getRows() >> rows
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/testing/mock_manager.go

    }
    
    // GetPods mocks base method.
    func (m *MockManager) GetPods() []*v1.Pod {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods")
    	ret0, _ := ret[0].([]*v1.Pod)
    	return ret0
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockManagerMockRecorder) GetPods() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/podresources/testing/provider_mock.go

    }
    
    // GetPods mocks base method.
    func (m *MockPodsProvider) GetPods() []*v1.Pod {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods")
    	ret0, _ := ret[0].([]*v1.Pod)
    	return ret0
    }
    
    // GetPods indicates an expected call of GetPods.
    func (mr *MockPodsProviderMockRecorder) GetPods() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. test/fixedbugs/bug343.go

    // issue 1900
    
    package main
    
    func getArgs(data map[string]interface{}, keys ...string) map[string]string {
           ret := map[string]string{}
           var ok bool
           for _, k := range keys {
                   ret[k], ok = data[k].(string)
                   if !ok {}
           }
           return ret
    }
    
    func main() {
    	x := getArgs(map[string]interface{}{"x":"y"}, "x")
    	if x["x"] != "y" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 721 bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

                    public List<String> getCleanTasks() {
                        return mostRecent.getCleanTasks();
                    }
    
                    @Override
                    public List<String> getArgs() {
                        return mostRecent.getArgs();
                    }
    
                    @Nullable
                    @Override
                    public List<String> getGradleOpts() {
                        return mostRecent.getGradleOpts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                    return block.getPos().compareTo(block1.getPos());
                }
            });
    
            for (int i = 0; i < blocks.size() - 1; i++) {
                Block b1 = blocks.get(i).getBlock();
                Block b2 = blocks.get(i + 1).getBlock();
                if (b1.getPos().getPos() + b1.getSize() > b2.getPos().getPos()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. cni/pkg/log/uds_test.go

    	// For each level, there should be two lines, one from direct log,
    	// the other one from UDS server
    	gotLogs := strings.Split(
    		strings.TrimSuffix(string(out), "\n"), "\n")
    	if want, got := len(cases)*2, len(gotLogs); want != got {
    		t.Fatalf("Number of logs want %v, got %v logs: %v", want, got, gotLogs)
    	}
    	i := 0
    	for _, l := range gotLogs {
    		var parsedLog map[string]any
    		assert.NoError(t, json.Unmarshal([]byte(l), &parsedLog))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

    // tag::bundle-task[]
    @CacheableTask                                       // <1>
    abstract class BundleTask extends NpmTask {
    
        @Override @Internal                              // <2>
        ListProperty<String> getArgs() {
            super.getArgs()
        }
    
        @InputDirectory
        @SkipWhenEmpty
        @PathSensitive(PathSensitivity.RELATIVE)         // <3>
        abstract DirectoryProperty getScripts()
    
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top