Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 502 for picard (0.19 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

        }
    
        def "creates lazy MavenArtifact for Provider<RegularFile> notation"() {
            def provider = Mock(ProviderInternal)
            def file = Stub(File) {
                getName() >> 'picard.txt'
            }
            def regularFile = Mock(RegularFile)
    
            when:
            def artifact = parser.parseNotation(provider)
    
            then:
            0 * provider._
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            e.message == 'Unable to find matching strategy for someOther'
    
            when:
            schema.getMatchingStrategy(Attribute.of('picard', Flavor))
    
            then:
            e = thrown(IllegalArgumentException)
            e.message == 'Unable to find matching strategy for picard'
        }
    
        static class CustomCompatibilityRule implements AttributeCompatibilityRule<Flavor> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

        }
    
        def "creates lazy IvyArtifact for Provider<RegularFile> notation"() {
            def provider = Mock(ProviderInternal)
            def file = Stub(File) {
                getName() >> 'picard.txt'
            }
            def regularFile = Mock(RegularFile)
    
            when:
            def artifact = parser.parseNotation(provider)
    
            then:
            0 * provider._
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    			},
    			"", "",
    		},
    		{
    			"simple with client bundle",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_SIMPLE,
    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. internal/ioutil/discard.go

    import (
    	"io"
    )
    
    // Discard is just like io.Discard without the io.ReaderFrom compatible
    // implementation which is buggy on NUMA systems, we have to use a simpler
    // io.Writer implementation alone avoids also unnecessary buffer copies,
    // and as such incurred latencies.
    var Discard io.Writer = discard{}
    
    // discard is /dev/null for Golang.
    type discard struct{}
    
    func (discard) Write(p []byte) (int, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 06 22:26:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/printers/discard.go

    Ilya Dmitrichenko <******@****.***> 1551884065 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 843 bytes
    - Viewed (0)
  7. src/log/slog/internal/benchmarks/benchmarks_test.go

    		name     string
    		h        slog.Handler
    		skipRace bool
    	}{
    		{"disabled", disabledHandler{}, false},
    		{"async discard", newAsyncHandler(), true},
    		{"fastText discard", newFastTextHandler(io.Discard), false},
    		{"Text discard", slog.NewTextHandler(io.Discard, nil), false},
    		{"JSON discard", slog.NewJSONHandler(io.Discard, nil), false},
    	} {
    		logger := slog.New(handler.h)
    		b.Run(handler.name, func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:32:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/log/log_test.go

    		buf.Reset()
    		l.Println(testString)
    	}
    }
    
    // discard is identical to io.Discard,
    // but copied here to avoid the io.Discard optimization in Logger.
    type discard struct{}
    
    func (discard) Write(p []byte) (int, error) {
    	return len(p), nil
    }
    
    func BenchmarkConcurrent(b *testing.B) {
    	l := New(discard{}, "prefix: ", Ldate|Ltime|Lmicroseconds|Llongfile|Lmsgprefix)
    	var group sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_start.jsp

            </div>
            <section class="content">
                <la:form action="/admin/wizard/">
                    <div class="row">
                        <div class="col-md-12">
                            <div class="card card-outline card-primary">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.wizard_start_crawler_title"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  10. src/compress/flate/deflate_test.go

    			break
    		}
    		w, err := NewWriter(io.Discard, level)
    		if err != nil {
    			t.Fatalf("NewWriter: %v", err)
    		}
    		buf := []byte("hello world")
    		n := 1024
    		if testing.Short() {
    			n = 10
    		}
    		for i := 0; i < n; i++ {
    			w.Write(buf)
    		}
    		w.Reset(io.Discard)
    
    		wref, err := NewWriter(io.Discard, level)
    		if err != nil {
    			t.Fatalf("NewWriter: %v", err)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top