Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for REPORT (0.26 sec)

  1. src/cmd/go/alldocs.go

    //	vcs             controlling version control with GOVCS
    //
    // Use "go help <topic>" for more information about that topic.
    //
    // # Start a bug report
    //
    // Usage:
    //
    //	go bug
    //
    // Bug opens the default browser and starts a new bug report.
    // The report includes useful system information.
    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    //	go build [-o output] [build flags] [packages]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    				skipLines = 1
    				continue
    			}
    
    			save = append(save, line)
    		}
    		out = bytes.Join(save, nil)
    	}
    	// Note that failure is an expected outcome here, so we report output only
    	// in debug mode and don't report the error.
    	if cfg.BuildN || cfg.BuildX {
    		sh.reportCmd("", "", out, nil)
    	}
    	return err
    }
    
    // GccCmd returns a gcc command line prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    	return mg
    }
    
    func getTierMetrics() *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval: 10 * time.Second,
    	}
    	mg.RegisterRead(func(ctx context.Context) []MetricV2 {
    		return globalTierMetrics.Report()
    	})
    	return mg
    }
    
    func getTransitionPendingTasksMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: ilmSubsystem,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	// plugins need to be registered/unregistered based on this node and makes it so.
    	pluginManager pluginmanager.PluginManager
    
    	// This flag sets a maximum number of images to report in the node status.
    	nodeStatusMaxImages int32
    
    	// Handles RuntimeClass objects for the Kubelet.
    	runtimeClassManager *runtimeclass.Manager
    
    	// Handles node shutdown events for the Node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        dependencies that are not explainable by side effects of the involved ops.
        More precisely, for every minimal unexplainable control dependency path
        we emit op warnings for all involved ops. The pass does not report
        intermediate dummy ops for grouping control dependencies (Identity, NoOp),
        unless they are part of an unexplainable path between other ops.
        This pass is useful to understand control dependency conservatism for a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    			metrics.WorkingPodCount.WithLabelValues(state.String(), configState, staticString).Set(float64(count))
    		}
    	}
    	if len(counts) > 0 {
    		// in case a combination is lost
    		klog.V(3).InfoS("Programmer error, did not report a kubelet_working_pods metric for a value returned by SyncKnownPods", "counts", counts)
    	}
    
    	// Remove any cgroups in the hierarchy for pods that are definitely no longer
    	// running (not in the container runtime).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. go.sum

    github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
    github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
    github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
    github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      fi
    }
    
    function create-nodes-firewall() {
      # Create a single firewall rule for all minions.
      create-firewall-rule "${NODE_TAG}-all" "${CLUSTER_IP_RANGE}" "${NODE_TAG}" &
    
      # Report logging choice (if any).
      if [[ "${ENABLE_NODE_LOGGING-}" == "true" ]]; then
        echo "+++ Logging using Fluentd to ${LOGGING_DESTINATION:-unknown}"
      fi
    
      # Wait for last batch of jobs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top