Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 486 for nicard (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/encoder_with_allocator_test.go

    	for _, tc := range benchTestCases() {
    		b.Run(tc.name, func(b *testing.B) {
    			b.ReportAllocs()
    			for n := 0; n < b.N; n++ {
    				err := target.Encode(tc.obj, ioutil.Discard)
    				if err != nil {
    					b.Fatal(err)
    				}
    			}
    		})
    	}
    }
    
    func benchmarkEncodeWithAllocatorFor(b *testing.B, target runtime.EncoderWithAllocator) {
    	for _, tc := range benchTestCases() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/compress/flate/writer_test.go

    			if len(buf0) > n-i {
    				buf0 = buf0[:n-i]
    			}
    			copy(buf1[i:], buf0)
    		}
    		buf0 = nil
    		w, err := NewWriter(io.Discard, level)
    		if err != nil {
    			b.Fatal(err)
    		}
    		runtime.GC()
    		b.StartTimer()
    		for i := 0; i < b.N; i++ {
    			w.Reset(io.Discard)
    			w.Write(buf1)
    			w.Close()
    		}
    	})
    }
    
    // errorWriter is a writer that fails after N writes.
    type errorWriter struct {
    	N int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/testdata/libgo6/sigprof.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"io"
    	"runtime/pprof"
    )
    
    import "C"
    
    //export go_start_profile
    func go_start_profile() {
    	pprof.StartCPUProfile(io.Discard)
    }
    
    //export go_stop_profile
    func go_stop_profile() {
    	pprof.StopCPUProfile()
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 404 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

        /**
         * Sets the value of the property to the given value, replacing whatever value the property already had.
         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
         * value is discarded (or has never been set in the first place), the convention (default value) for this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibrariesWithApiDependencies.groovy

    #include <string>
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    class EXPORT_FUNC Card {
        std::string name;
    public:
        Card();
        std::string& getName();
    };
    """))
            final SourceFileElement source = ofFile(new SourceFile("cpp", "card.cpp", """
    #include "card.h"
    
    Card::Card() {
        name = "ace of spades";
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/compress/flate/reader_test.go

    	"os"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestNlitOutOfRange(t *testing.T) {
    	// Trying to decode this bogus flate data, which has a Huffman table
    	// with nlit=288, should not panic.
    	io.Copy(io.Discard, NewReader(strings.NewReader(
    		"\xfc\xfe\x36\xe7\x5e\x1c\xef\xb3\x55\x58\x77\xb6\x56\xb5\x43\xf4"+
    			"\x6f\xf2\xd2\xe6\x3d\x99\xa0\x85\x8c\x48\xeb\xf8\xda\x83\x04\x2a"+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/wizard/IndexForm.java

     * 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 org.codelibs.fess.app.web.admin.wizard;
    
    public class IndexForm {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 698 bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                            <div class="card card-outline card-primary">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.upgrade_reindex"/>
                                    </h3>
                                </div>
                                <div class="card-body">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp

                    </div>
                    <div class="col-md-6">
                        <div class="card card-outline card-primary">
                            <la:form action="/admin/design/">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <la:message key="labels.design_title_file"/>
                                    </h3>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  10. src/flag/export_test.go

    // After calling ResetForTesting, parse errors in flag handling will not
    // exit the program.
    func ResetForTesting(usage func()) {
    	CommandLine = NewFlagSet(os.Args[0], ContinueOnError)
    	CommandLine.SetOutput(io.Discard)
    	CommandLine.Usage = commandLineUsage
    	Usage = usage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 09:29:14 UTC 2022
    - 653 bytes
    - Viewed (0)
Back to top