Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,567 for repoId (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    		ac.Event.Level = auditinternal.LevelMetadata
    
    		record.resp, record.ok, record.err = a.authenticator.AuthenticateToken(ctx, token)
    		record.annotations = ac.Event.Annotations
    		record.warnings = recorder.extractWarnings()
    
    		if !a.cacheErrs && record.err != nil {
    			return record, nil
    		}
    
    		switch {
    		case record.ok && a.successTTL > 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

        private static class TestBuildOperationContext implements BuildOperationContext {
    
            private final Log.Record record;
    
            public TestBuildOperationContext(Log.Record record) {
                this.record = record;
            }
    
            @Override
            public void failed(@Nullable Throwable failure) {
                this.record.failure = failure;
            }
    
            @Override
            public void setResult(@Nullable Object result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/labels.go

    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl.pos, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    				} else {
    					b.insert(s)
    					check.recordDef(s.Label, lbl)
    				}
    				// resolve matching forward jumps and remove them from fwdJumps
    				i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    	if f == nil {
    		return
    	}
    
    	if f.Record != nil {
    		cmd.Flags().BoolVar(f.Record, "record", *f.Record, "Record current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.")
    		cmd.Flags().MarkDeprecated("record", "--record will be removed in the future")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/log/slog/logger.go

    // NewLogLogger returns a new [log.Logger] such that each call to its Output method
    // dispatches a Record to the specified handler. The logger acts as a bridge from
    // the older log API to newer structured logging handlers.
    func NewLogLogger(h Handler, level Level) *log.Logger {
    	return log.New(&handlerWriter{h, level, true}, "", 0)
    }
    
    // Log emits a log record with the current time and the given level and message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // 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 report
    
    // This file contains routines related to the generation of annotated
    // source listings.
    
    import (
    	"bufio"
    	"fmt"
    	"html/template"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

            succeeds("check")
            executedAndNotSkipped(":codenarcMain")
            ["html", "xml", "txt"].each {
                assert report("main", it).exists()
            }
            // HTML report is sortable
            report("main").text.contains("Sort by")
        }
    
        def "reports HTML report over text or XML report in failure message"() {
            badCode()
            buildFile << """
                codenarcTest.reports {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/TaskGeneratedSingleFileReportTest.groovy

            def report = TestUtil.objectFactory(tmpDir.testDirectory).newInstance(TaskGeneratedSingleFileReport, "report", Stub(Task))
            def output = new File("report.txt")
            def resolvedOutput = tmpDir.file("report.txt")
    
            expect:
            !report.outputLocation.isPresent()
    
            report.conventionMapping.map("destination") { output }
    
            report.outputLocation.asFile.get() == resolvedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            def report = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassCoverage("direct.Multiplier")
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
        def "aggregated report does not contain external dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilderTest.kt

            assertThat(reports.size, equalTo(1))
            reports.single().let { report ->
                assertThat(report.severity, equalTo(EditorReportSeverity.WARNING))
                assertThat(report.position, notNullValue())
                assertThat(report.position!!.line, equalTo(3))
                assertThat(report.message, equalTo("BOOM"))
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top