Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getLogs (0.31 sec)

  1. 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)
  2. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchain#getLog():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.toolchain.DefaultToolchain#DefaultToolchain(org.apache.maven.toolchain.model.ToolchainModel,org.codehaus.plexus.logging.Logger):CONSTRUCTOR_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        loader = it->second.get();
      }
    
      // Cannot pass `op.getArgs().getTypes()` to `loader->RefineDynamicShapes`
      // because `op` and `loader` are using different MLIR contexts. See comments
      // on `xla_call_module_context_` for details.
      std::vector<xla::Shape> input_shapes;
      input_shapes.reserve(op.getArgs().size());
      for (mlir::Type type : op.getArgs().getTypes()) {
        input_shapes.push_back(xla::TypeToShape(type));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		ProbeManager:                    kubelet.probeManager,
    		Recorder:                        fakeRecorder,
    		NodeRef:                         nodeRef,
    		GetPodsFunc:                     kubelet.podManager.GetPods,
    		KillPodFunc:                     killPodNow(kubelet.podWorkers, fakeRecorder),
    		SyncNodeStatusFunc:              func() {},
    		ShutdownGracePeriodRequested:    0,
    		ShutdownGracePeriodCriticalPods: 0,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public List<String> getTaskNames() {
            List<String> taskNames = new ArrayList<>();
            for (TaskExecutionRequest taskRequest : taskRequests) {
                taskNames.addAll(taskRequest.getArgs());
            }
            return taskNames;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.AbstractCopyTask.isCaseSensitive()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractCopyTask.java:0)
    Method <org.gradle.api.tasks.AbstractExecTask.getArgs()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractExecTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            protected Map<String, String> getEnvironmentVars() {
                return environmentVars;
            }
    
            protected List<String> getArgs() {
                return args;
            }
    
            protected List<String> getBuildJvmArgs() {
                return buildJvmArgs;
            }
    
            protected List<String> getLauncherJvmArgs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			CreatedAt:  uint64(fakeSandbox.CreatedAt),
    			Containers: []*kubecontainer.Container{containers[0], containers[1]},
    			Sandboxes:  []*kubecontainer.Container{sandbox},
    		},
    	}
    
    	actual, err := m.GetPods(ctx, false)
    	assert.NoError(t, err)
    
    	if !verifyPods(expected, actual) {
    		t.Errorf("expected %#v, got %#v", expected, actual)
    	}
    }
    
    func TestGetPodsSorted(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Verify that module has a function named main.
      FuncOp main_fn = module.lookupSymbol<FuncOp>("main");
      if (!main_fn) {
        int entry_func_count = 0;
        for (auto fn : module.getOps<FuncOp>()) {
          auto attrs = fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
          if (attrs && !attrs.empty()) {
            ++entry_func_count;
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top