Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 114 for getLogs (0.34 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    func New(_ context.Context, plArgs runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	if h.SnapshotSharedLister() == nil {
    		return nil, fmt.Errorf("SnapshotSharedlister is nil")
    	}
    	args, err := getArgs(plArgs)
    	if err != nil {
    		return nil, err
    	}
    	if err := validation.ValidatePodTopologySpreadArgs(nil, &args); err != nil {
    		return nil, err
    	}
    	pl := &PodTopologySpread{
    		parallelizer:       h.Parallelizer(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

        // input token in the parent op or a new token for the entry computation.
        auto token = StringAttr::get(ctx, tensorflow::kXlaTokenArgNodeName);
        for (Operation& op : region->getOps()) {
          // Only communication related ops that needs to have token should have the
          // extra attribute.
          if (!ops_with_tokens.contains(&op)) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      // functions and avoid converting ConstOps inside initializer functions.
      for (auto func_op : module_op.getOps<func::FuncOp>()) {
        // Do not unfreeze constants under these functions.
        if (func_op.getSymName().contains("while_body")) continue;
        if (func_op.getSymName().contains("while_cond")) continue;
        absl::c_copy_if(func_op.getOps<TF::ConstOp>(),
                        std::back_inserter(target_const_ops),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

                .append("duplicate exported name '", exported_name, "'")
                .attachNote(p.first->getSecond()->getLoc())
                .append("previously seen here");
          }
        }
      }
      for (auto func : module.getOps<func::FuncOp>()) {
        const bool is_exported = IsExported(func);
    
        if (is_exported && !func.isPublic()) {
          return func.emitError()
                 << "exported function @" << func.getName() << " should be public";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

        @Override
        public Property<String> getMainClass() {
            return mainClass;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public List<String> getArgs() {
            return javaExecSpec.getArgs();
        }
    
        /**
         * Parses an argument list from {@code args} and passes it to {@link #setArgs(List)}.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. pkg/kubelet/container/runtime.go

    	// function itself fails, nil otherwise.
    	Status(ctx context.Context) (*RuntimeStatus, error)
    	// GetPods returns a list of containers grouped by pods. The boolean parameter
    	// specifies whether the runtime returns all containers including those already
    	// exited and dead containers (used for garbage collection).
    	GetPods(ctx context.Context, all bool) ([]*Pod, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                        linkTask.getInstallName().set(binary.getSharedLibraryFile().getName());
                        linkTask.getLinkerArgs().set(binary.getLinker().getArgs());
                        linkTask.getImportLibrary().set(binary.getSharedLibraryLinkFile());
    
                        linkTask.lib(new NativeComponents.BinaryLibs(binary) {
                            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  8. pkg/kubelet/preemption/preemption_test.go

    func (f *fakePodProvider) setPods(pods []*v1.Pod) {
    	f.pods = pods
    }
    
    func (f *fakePodProvider) getPods() []*v1.Pod {
    	return f.pods
    }
    
    func getTestCriticalPodAdmissionHandler(podProvider *fakePodProvider, podKiller *fakePodKiller) *CriticalPodAdmissionHandler {
    	return &CriticalPodAdmissionHandler{
    		getPodsFunc: podProvider.getPods,
    		killPodFunc: podKiller.killPodNow,
    		recorder:    &record.FakeRecorder{},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/wait.go

    		scope.Errorf("failed to verify CRD creation; %s", errPoll)
    		return fmt.Errorf("failed to verify CRD creation: %s", errPoll)
    	}
    
    	scope.Info("Finished applying CRDs.")
    	return nil
    }
    
    func getPods(client kubernetes.Interface, namespace string, selector labels.Selector) ([]corev1.Pod, error) {
    	list, err := client.CoreV1().Pods(namespace).List(context.TODO(), metav1.ListOptions{
    		LabelSelector: selector.String(),
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                            .value(modelProp.getValue())
                            .build();
                    activation.property(prop);
                }
    
                org.apache.maven.api.model.ActivationOS modelOs = modelActivation.getOs();
    
                if (modelOs != null) {
                    ActivationOS os = ActivationOS.newBuilder()
                            .arch(modelOs.getArch())
                            .family(modelOs.getFamily())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top