Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 97 of 97 for zero (0.06 sec)

  1. cluster/gce/gci/configure-helper.sh

    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-error {
      local bootstep="$1"
    
      log-proto "${bootstep}" "${LOG_STATUS_ERROR}" "encountered non-zero exit code"
    }
    
    # Wraps a command with bootstrap logging.
    # Args:
    #   $1    : bootstrap step name.
    #   $2... : the command to run.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// we kill the pod directly since we have lost all other information about the pod.
    	klog.V(4).InfoS("Orphaned running pod terminating without grace period", "pod", klog.KObj(pod), "podUID", pod.UID)
    	// TODO: this should probably be zero, to bypass any waiting (needs fixes in container runtime)
    	gracePeriod := int64(1)
    	if err := kl.killPod(ctx, pod, *runningPod, &gracePeriod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    			p.Internal.PGOProfile = file
    			updateBuildInfo(p, file)
    		}
    	}
    }
    
    // CheckPackageErrors prints errors encountered loading pkgs and their
    // dependencies, then exits with a non-zero status if any errors were found.
    func CheckPackageErrors(pkgs []*Package) {
    	var anyIncomplete bool
    	for _, pkg := range pkgs {
    		if pkg.Incomplete {
    			anyIncomplete = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      local machine_type="$6"
    
      # First, ensure the template doesn't exist.
      # TODO(zmerlynn): To make this really robust, we need to parse the output and
      #                 add retries. Just relying on a non-zero exit code doesn't
      #                 distinguish an ephemeral failed call from a "not-exists".
      if gcloud compute instance-templates describe "${template_name}" --project "${PROJECT}" &>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              TF_ASSIGN_OR_RETURN(auto attr, ConvertFunctionCallName(item.name()));
              if (item.attr_size() != 0)
                return errors::Unimplemented(
                    "func attributes with non-zero attr.size()");
              if (attr) attrs.push_back(attr);
            }
            return builder_.getArrayAttr(
                llvm::ArrayRef(attrs.begin(), attrs.end()));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    		}
    
    		for pname := range allPolicies {
    			if _, ok := policyStats[pname]; !ok {
    				policyStats[pname] = make([]srPolicy, numSites)
    			}
    
    			// if pname is not present in the map, the zero value
    			// will be returned.
    			pi := sri.Policies[pname]
    			policyStats[pname][i] = srPolicy{SRIAMPolicy: pi, DeploymentID: sri.DeploymentID}
    		}
    		for user := range allUserWPolicies {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test2", "1/3", "Running", "7 (10s ago)", "<unknown>"}}},
    		},
    		{
    			// Test pod has 2 restartable init containers completed with non-zero and 1 container completed
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test3"},
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top