Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for reportCmd (0.27 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. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        return %0#0, %0#1, %0#2, %0#3 : tensor<?x3xi32>, tensor<?x3xi32>, tensor<3x!tf_type.string>, tensor<3x!tf_type.string>
      }
    }
    // -----
    
    // Tests that a an error is reported when the pass results in a cluster output
    // with a non-XLA type. The simplest way this can happen is if the inputing op
    // is not marked for outside compilation. In general control, data, and side
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.4.md

    * Send recycle events from pod to pv. ([#27714](https://github.com/kubernetes/kubernetes/pull/27714), [@jsafrane](https://github.com/jsafrane))
    * Limit the number of names per image reported in the node status ([#32914](https://github.com/kubernetes/kubernetes/pull/32914), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    * Update PodAntiAffinity to ignore calls to subresources ([#35608](https://github.com/kubernetes/kubernetes/pull/35608), [@soltysh](https://github.com/soltysh))
    * The apiserver can now select which type of kubelet-reported address to use for apiserver->node communications, using the --kubelet-preferred-address-types flag. ([#35497](https://github.com/kubernetes/kubernetes/pull/35497), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * Retrieve the time this <code>SmbFile</code> was created. The value
     * returned is suitable for constructing a {@link java.util.Date} object
     * (i.e. seconds since Epoch 1970). Times should be the same as those
     * reported using the properties dialog of the Windows Explorer program.
     *
     * For Win95/98/Me this is actually the last write time. It is currently
     * not possible to retrieve the create time from files on these systems.
     *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. 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)
Back to top