Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 317 for 2345 (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "int"                                 | "123"                                                 | "-45"                                                        | null
            "Integer"                             | "123"                                                 | "-45"                                                        | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/integration_test/tensorflow_to_stablehlo_test.py

    def build_savedmodel(tempdir) -> str:
    
      class AddOneModel(tf.keras.Model):
    
        def call(self, x):
          return x + 1
    
      model = AddOneModel()
    
      x_train = tf.constant([1, 2, 3, 4, 5], dtype=tf.float32)
      y_train = tf.constant([2, 3, 4, 5, 6], dtype=tf.float32)
    
      model.compile(optimizer='sgd', loss='mse')
      model.fit(x_train, y_train, epochs=1)
    
      path = tempdir + '/add_one_model'
      model.save(path)
      return path
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/go/token/token.go

    const (
    	// Special tokens
    	ILLEGAL Token = iota
    	EOF
    	COMMENT
    
    	literal_beg
    	// Identifiers and basic type literals
    	// (these tokens stand for classes of literals)
    	IDENT  // main
    	INT    // 12345
    	FLOAT  // 123.45
    	IMAG   // 123.45i
    	CHAR   // 'a'
    	STRING // "abc"
    	literal_end
    
    	operator_beg
    	// Operators and delimiters
    	ADD // +
    	SUB // -
    	MUL // *
    	QUO // /
    	REM // %
    
    	AND     // &
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/testx.go

    //export issue5548FromC
    func issue5548FromC(s string, i int) int {
    	if len(s) == 4 && s == "test" && i == 42 {
    		return 12345
    	}
    	println("got", len(s), i)
    	return 9876
    }
    
    func test5548(t *testing.T) {
    	if x := C.issue5548_in_c(); x != 12345 {
    		t.Errorf("issue5548_in_c = %d, want %d", x, 12345)
    	}
    }
    
    // issue 6833
    
    //export GoIssue6833Func
    func GoIssue6833Func(aui uint, aui64 uint64) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def target = tmpDir.file('versionDir')
            repoSpec.url = 'ssh://******@****.***d:12345/TestGradleLibrary.git'
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            GradleException e = thrown()
            e.message.contains('Could not clone from ssh://******@****.***d:12345/TestGradleLibrary.git in')
            e.cause != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/net/unixsock_linux_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	c, err := ListenUnixgram("unixgram", la)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer c.Close()
    
    	off := make(chan bool)
    	data := [5]byte{1, 2, 3, 4, 5}
    	go func() {
    		defer func() { off <- true }()
    		s, err := syscall.Socket(syscall.AF_UNIX, syscall.SOCK_DGRAM, 0)
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer syscall.Close(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 03:00:34 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  7. src/mime/mediatype.go

    package mime
    
    import (
    	"errors"
    	"fmt"
    	"slices"
    	"strings"
    	"unicode"
    )
    
    // FormatMediaType serializes mediatype t and the parameters
    // param as a media type conforming to RFC 2045 and RFC 2616.
    // The type and parameter names are written in lower-case.
    // When any of the arguments result in a standard violation then
    // FormatMediaType returns the empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. test/typeparam/index2.go

    	return x[3]
    }
    
    func test[T comparable](got, want T) {
    	if got != want {
    		panic(fmt.Sprintf("got %v, want %v", got, want))
    	}
    }
    
    func main() {
    	x := make([]int64, 4)
    	x[3] = 2
    	y := [5]int64{1, 2, 3, 4, 5}
    	z := "abcd"
    	w := make([]byte, 4)
    	w[3] = 5
    	v := make(map[int]int64)
    	v[3] = 18
    
    	test(Index1(x), int64(2))
    	test(Index1(y), int64(4))
    	test(Index2(z), byte(100))
    	test(Index2(w), byte(5))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

                }
                tasks.named("bar", CustomTask).configure {
                    number = 12345
                }
            """
            expect:
            succeeds("foo", "bar")
            outputContains("foo named(String, Class) 200")
            outputContains("bar named(String, Class, Action) 12345")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue22344.go

    // license that can be found in the LICENSE file.
    
    // Test iota inside a function in a ConstSpec is accepted
    package main
    
    import (
    	"unsafe"
    )
    
    // iotas are usable inside closures in constant declarations (#22345)
    const (
    	_ = iota
    	_ = len([iota]byte{})
    	_ = unsafe.Sizeof(iota)
    	_ = unsafe.Sizeof(func() { _ = iota })
    	_ = unsafe.Sizeof(func() { var _ = iota })
    	_ = unsafe.Sizeof(func() { const _ = iota })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 12 06:46:57 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top