Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for reportCmd (0.25 sec)

  1. src/cmd/go/internal/work/exec.go

    			}
    			seen[key] = d.Pos
    		}
    	}
    	if len(msg) > 0 {
    		// We pass a non-nil error to reportCmd to trigger the failure reporting
    		// path, but the content of the error doesn't matter because msg is
    		// non-empty.
    		err := errors.New("invalid directive")
    		return b.Shell(a).reportCmd("", "", msg, err)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:foo:{strictly 1.0} -> 1.0 FAILED
    \\--- lockedConf
    
    org:foo:1.1 (by constraint) FAILED
       Failures:
          - Could not resolve org:foo:1.1. (already reported)
    
    org:foo:1.1 FAILED
    \\--- lockedConf
    
    org:foo:1.+ FAILED
       Failures:
          - Could not resolve org:foo:1.+. (already reported)
    
    org:foo:1.+ FAILED
    \\--- lockedConf
    """
        }
    
        def "shows forced version and substitution equivalent to force"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    	if len(tc.reportedLevels) != len(tc.reportedCPURequests) || len(tc.reportedLevels) == 0 {
    		return
    	}
    	reported := 0
    	for _, r := range tc.reportedLevels {
    		reported += int(r)
    	}
    	requested := 0
    	for _, req := range tc.reportedCPURequests {
    		requested += int(req.MilliValue())
    	}
    	tc.CPUCurrent = int32(100 * reported / requested)
    }
    
    func init() {
    	// set this high so we don't accidentally run into it when testing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // source code analysis tools exactly how test binaries are constructed.
    // The reported import path for a test binary is the import path of
    // the package followed by a ".test" suffix, as in "math/rand.test".
    // When building a test, it is sometimes necessary to rebuild certain
    // dependencies specially for that test (most commonly the tested
    // package itself). The reported import path of a package recompiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    .0","targets":[{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(envoy_cluster_upstream_cx_active{cluster_name=\"xds-grpc\"})","legendFormat":"Connections (client reported)"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(pilot_xds{})","legendFormat":"Connections (server reported)"}],"title":"Connections","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Number of push errors. Many of these are at least potentional fatal...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		key := pkg.ImportPath
    		if pkg.Internal.PGOProfile != "" {
    			key += " pgo:" + pkg.Internal.PGOProfile
    		}
    		if seen[key] && !reported[key] {
    			reported[key] = true
    			base.Errorf("internal error: duplicate loads of %s", pkg.ImportPath)
    		}
    		seen[key] = true
    	}
    	base.ExitIfErrors()
    }
    
    // mainPackagesOnly filters out non-main packages matched only by arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    			_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    			if err != nil {
    				t.Fatalf("Manager expects no error but got %v", err)
    			}
    
    			// verify PID pressure is still reported
    			if !manager.IsUnderPIDPressure() {
    				t.Errorf("Manager should still report PID pressure")
    			}
    
    			// verify the right pod was killed with the right grace period.
    			if podKiller.pod != podToEvict {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    			if err != nil {
    				return
    			}
    			// This is expected to give a cancel error most, but not all the time.
    			// Test failure will happen with a panic or other race condition being
    			// reported.
    			rows, _ := tx.QueryContext(ctx, "WAIT|"+qwait+"|SELECT|people|name|")
    			if rows != nil {
    				var name string
    				// Call Next to test Issue 21117 and check for races.
    				for rows.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// status to master. It is only used when node lease feature is enabled.
    	nodeStatusReportFrequency time.Duration
    
    	// lastStatusReportTime is the time when node status was last reported.
    	lastStatusReportTime time.Time
    
    	// syncNodeStatusMux is a lock on updating the node status, because this path is not thread-safe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		if err := wait.PollUntilContextTimeout(ctx, time.Second, time.Minute, true, func(context.Context) (bool, error) {
    			healthErr := a.HealthCheck()
    			if healthErr == nil {
    				return false, fmt.Errorf("authenticator reported healthy when it should not")
    			}
    
    			if strings.HasPrefix(healthErr.Error(), c.wantHealthErrPrefix) {
    				return true, nil
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
Back to top