Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 212 for A12345 (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/tracing_test.go

    	"os"
    	"reflect"
    	"strings"
    	"testing"
    
    	tracingapi "k8s.io/component-base/tracing/api/v1"
    )
    
    var (
    	localhost    = "localhost:4317"
    	ipAddress    = "127.0.0.1:4317"
    	samplingRate = int32(12345)
    )
    
    func strptr(s string) *string {
    	return &s
    }
    
    func TestValidateTracingOptions(t *testing.T) {
    	testcases := []struct {
    		name        string
    		expectError bool
    		contents    *TracingOptions
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	// arrays
    	{"%v", array, "[1 2 3 4 5]"},
    	{"%v", iarray, "[1 hello 2.5 <nil>]"},
    	{"%v", barray, "[1 2 3 4 5]"},
    	{"%v", &array, "&[1 2 3 4 5]"},
    	{"%v", &iarray, "&[1 hello 2.5 <nil>]"},
    	{"%v", &barray, "&[1 2 3 4 5]"},
    
    	// slices
    	{"%v", slice, "[1 2 3 4 5]"},
    	{"%v", islice, "[1 hello 2.5 <nil>]"},
    	{"%v", bslice, "[1 2 3 4 5]"},
    	{"%v", &slice, "&[1 2 3 4 5]"},
    	{"%v", &islice, "&[1 hello 2.5 <nil>]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/slices/iter_test.go

    			s:      []int{1, 2},
    			n:      2,
    			chunks: [][]int{{1, 2}},
    		},
    		{
    			name:   "even",
    			s:      []int{1, 2, 3, 4},
    			n:      2,
    			chunks: [][]int{{1, 2}, {3, 4}},
    		},
    		{
    			name:   "odd",
    			s:      []int{1, 2, 3, 4, 5},
    			n:      2,
    			chunks: [][]int{{1, 2}, {3, 4}, {5}},
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			var chunks [][]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz.txt

    go test fuzz v1
    []byte("12345")
    -- corpustesting/testdata/fuzz/FuzzPass/1 --
    go test fuzz v1
    []byte("00000")
    -- corpustesting/testdata/fuzz/FuzzPassString/1 --
    go test fuzz v1
    string("hello")
    -- corpustesting/testdata/fuzz/FuzzPanic/1 --
    malformed
    -- corpustesting/testdata/fuzz/FuzzInNestedDir/anotherdir/1 --
    go test fuzz v1
    []byte("12345")
    -- corpustesting/testdata/fuzz/FuzzWrongType/1 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. pkg/proxy/util/utils_test.go

    			expect: "0.0.0.0:12345",
    		},
    		{
    			name:   "non-zeros IPv4 config",
    			addr:   "9.8.7.6",
    			port:   12345,
    			expect: "9.8.7.6:12345",
    		},
    		{
    			name:   "IPv6 \"[::]\" bind address has port",
    			addr:   "[::]:12345",
    			port:   23456,
    			expect: "[::]:12345",
    		},
    		{
    			name:   "IPv6 config",
    			addr:   "fd00:1::5",
    			port:   23456,
    			expect: "[fd00:1::5]:23456",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/ProvidersTest.groovy

            return 12
        }
    
        @Override
        Integer someOtherValue() {
            return 123
        }
    
        @Override
        Integer someOtherValue2() {
            return 1234
        }
    
        @Override
        Integer someOtherValue3() {
            return 12345
        }
    
        @Override
        boolean isNoValueProviderImmutable() {
            return true
        }
    
        @Override
        ManagedFactory managedFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/SequentialOutputMatcher.groovy

                return actual.matches('Total time: .+ secs')
            }
    
            // Normalise default object toString() values
            actual = actual.replaceAll('(\\w+(\\.\\w+)*)@\\p{XDigit}+', '$1@12345')
            // Normalise file separators
            actual = TextUtil.normaliseFileSeparators(actual)
    
            return actual == expected
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  9. 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'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. 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)
Back to top