Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,046 for Reporter (0.2 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/reporter/PerformanceReporter.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.performance.reporter
    
    import groovy.transform.CompileStatic
    import org.gradle.api.Action
    import org.gradle.api.GradleException
    import org.gradle.api.file.FileCollection
    import org.gradle.api.file.FileSystemOperations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/configcontroller.go

    	if features.EnableDistributionTracking {
    		s.statusReporter = &distribution.Reporter{
    			UpdateInterval: features.StatusUpdateInterval,
    			PodName:        args.PodName,
    		}
    		s.addStartFunc("status reporter init", func(stop <-chan struct{}) error {
    			s.statusReporter.Init(s.environment.GetLedger(), stop)
    			return nil
    		})
    		s.addTerminatingStartFunc("status reporter", func(stop <-chan struct{}) error {
    			if writeStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-performance-dashboard.json

                "uid": "${datasource}"
              },
              "expr": "sum(irate(istio_response_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m])) + sum(irate(istio_request_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m]))",
              "format": "time_series",
              "intervalFactor": 1,
              "legendFormat": "istio-proxy",
              "refId": "B"
            }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

    import gradlebuild.integrationtests.tasks.DistributionTest
    import gradlebuild.performance.PerformanceTestService
    import gradlebuild.performance.ScenarioBuildResultData
    import gradlebuild.performance.reporter.PerformanceReporter
    import groovy.json.JsonOutput
    import groovy.transform.CompileStatic
    import org.apache.commons.io.FileUtils
    import org.gradle.api.GradleException
    import org.gradle.api.file.ConfigurableFileCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. code_of_conduct.md

    ## Enforcement
    
    Instances of abusive, harassing, or otherwise unacceptable behavior may be
    reported by contacting the project team at ******@****.***. The project team
    will review and investigate all complaints, and will respond in a way that it deems
    appropriate to the circumstances. The project team is obligated to maintain
    confidentiality with regard to the reporter of an incident.
    Further details of specific enforcement policies may be posted separately.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    "def sharedMethod(p) { 'shared' + p }",
                    "task testTask {",
                    "  doLast { new Reporter().checkMethods(project) }",
                    "}",
                    // Use a separate class, to isolate Project from the script
                    "class Reporter {",
                    "  def checkMethods(object) {",
                    "    assert 'rootMethod' == object.rootMethod('Method')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/HtmlDependencyReporter.java

    import org.gradle.util.internal.GFileUtils;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * Class responsible for the generation of an HTML dependency report.
     * <p>
     * The strategy is the following. The reporter uses an HTML template file containing a
     * placeholder <code>@js@</code>. For every project, it generates a JSON structure containing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 03 18:14:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

        verbs: ["update"]
        # TODO: should be on just */status but wildcard is not supported
        resources: ["*"]
    
      # Needed because status reporter sets the config map owner reference to the istiod pod
      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
      - apiGroups: ["networking.istio.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/reporter_test.go

    	Expect(r.reverseStatus).To(Equal(map[string]sets.String{"a": {"conB~": x}, "c": {"conC~": x}, "d": {"conD~": x}}))
    }
    
    func initReporterWithoutStarting() (out Reporter) {
    	out.PodName = "tespod"
    	out.inProgressResources = map[string]*inProgressEntry{}
    	out.client = nil              // TODO
    	out.clock = clock.RealClock{} // TODO
    	out.UpdateInterval = 300 * time.Millisecond
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt_test.go

    		}
    	}
    
    	initParserMode()
    	initRewrite()
    
    	const maxWeight = 2 << 20
    	var buf, errBuf bytes.Buffer
    	s := newSequencer(maxWeight, &buf, &errBuf)
    	s.Add(fileWeight(in, info), func(r *reporter) error {
    		return processFile(in, info, nil, r)
    	})
    	if errBuf.Len() > 0 {
    		t.Logf("%q", errBuf.Bytes())
    	}
    	if s.GetExitCode() != 0 {
    		t.Fail()
    	}
    
    	expected, err := os.ReadFile(out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top