Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 926 for RAW (0.03 sec)

  1. src/vendor/golang.org/x/net/route/sys_openbsd.go

    // Sys implements the Sys method of Message interface.
    func (m *InterfaceMessage) Sys() []Sys {
    	return []Sys{
    		&InterfaceMetrics{
    			Type: int(m.raw[24]),
    			MTU:  int(nativeEndian.Uint32(m.raw[28:32])),
    		},
    	}
    }
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	var p uintptr
    	rtm := &wireFormat{extOff: -1, bodyOff: -1}
    	rtm.parse = rtm.parseRouteMessage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // proved fragile) or locating the raw cgo file (e.g. from //line
    // directives) and working with that, as we now do.
    //
    // Specifically, we must type-check the raw cgo source files (or at
    // least the subtrees needed for this analyzer) in an environment that
    // simulates the rest of the already type-checked package.
    //
    // For example, for each raw cgo source file in the original package,
    // such as this one:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/test/api_meta_help_test.go

    			out: []interface{}{},
    		},
    		{
    			in:  &List{Items: list1},
    			out: []interface{}{list1[0], list1[1]},
    		},
    		{
    			in:    list2,
    			out:   []interface{}{&runtime.Unknown{Raw: list2.Items[0].Raw}, &runtime.Unknown{Raw: list2.Items[1].Raw}, list2.Items[2].Object},
    			equal: true,
    		},
    		{
    			in:  list3,
    			out: []interface{}{list3.Items[0], list3.Items[1]},
    		},
    		{
    			in:  list4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. tests/benchmark_test.go

    	b.ResetTimer()
    	for x := 0; x < b.N; x++ {
    		DB.Raw("select * from users where id = ?", user.ID).Scan(&u)
    	}
    }
    
    func BenchmarkScanSlice(b *testing.B) {
    	DB.Exec("delete from users")
    	for i := 0; i < 10_000; i++ {
    		user := *GetUser(fmt.Sprintf("scan-%d", i), Config{})
    		DB.Create(&user)
    	}
    
    	var u []User
    	b.ResetTimer()
    	for x := 0; x < b.N; x++ {
    		DB.Raw("select * from users").Scan(&u)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 01 03:50:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/encoding/ascii85/ascii85_test.go

    }
    
    func TestBig(t *testing.T) {
    	n := 3*1000 + 1
    	raw := make([]byte, n)
    	const alpha = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
    	for i := 0; i < n; i++ {
    		raw[i] = alpha[i%len(alpha)]
    	}
    	encoded := new(bytes.Buffer)
    	w := NewEncoder(encoded)
    	nn, err := w.Write(raw)
    	if nn != n || err != nil {
    		t.Fatalf("Encoder.Write(raw) = %d, %v want %d, nil", nn, err, n)
    	}
    	err = w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

            Hashing.hmacSha1(keyData).toString());
    
        assertEquals(
            "Hashing.hmacSha256(Key[algorithm=HmacSHA256, format=RAW])",
            Hashing.hmacSha256(SHA256_KEY).toString());
        assertEquals(
            "Hashing.hmacSha256(Key[algorithm=HmacSHA256, format=RAW])",
            Hashing.hmacSha256(keyData).toString());
    
        assertEquals(
            "Hashing.hmacSha512(Key[algorithm=HmacSHA512, format=RAW])",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. src/text/template/parse/lex_test.go

    	tRight      = mkItem(itemRightDelim, "}}")
    	tRpar       = mkItem(itemRightParen, ")")
    	tSpace      = mkItem(itemSpace, " ")
    	raw         = "`" + `abc\n\t\" ` + "`"
    	rawNL       = "`now is{{\n}}the time`" // Contains newline inside raw quote.
    	tRawQuote   = mkItem(itemRawString, raw)
    	tRawQuoteNL = mkItem(itemRawString, rawNL)
    )
    
    var lexTests = []lexTest{
    	{"empty", "", []item{tEOF}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/route/sys_dragonfly.go

    // Sys implements the Sys method of Message interface.
    func (m *InterfaceMessage) Sys() []Sys {
    	return []Sys{
    		&InterfaceMetrics{
    			Type: int(m.raw[m.extOff]),
    			MTU:  int(nativeEndian.Uint32(m.raw[m.extOff+8 : m.extOff+12])),
    		},
    	}
    }
    
    func probeRoutingStack() (int, map[int]*wireFormat) {
    	var p uintptr
    	rtm := &wireFormat{extOff: 40, bodyOff: sizeofRtMsghdrDragonFlyBSD4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         * undergone any updates by the model builder, e.g. reflects neither inheritance nor interpolation. The model
         * identifier should be from the collection obtained by {@link #getModelIds()}. As a special case, an empty string
         * can be used as the identifier for the super POM.
         *
         * @param modelId The identifier of the desired raw model, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files into a shared library, and runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top