Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 114514 (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/openapi/compiling_test.go

    			p, err := env.Program(ast)
    			if err != nil {
    				t.Fatal(err)
    			}
    			ret, _, err := p.Eval(&simpleActivation{
    				foo: map[string]any{"foo": "value", "common": 1, "confusion": "114514"},
    				bar: map[string]any{"bar": "value", "common": 2, "confusion": 114514},
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    			if ret.Type() != types.BoolType {
    				t.Errorf("bad result type: %v", ret.Type())
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeresolver_test.go

    	for _, tc := range []struct {
    		name          string
    		expression    string
    		expectedValue any
    	}{
    		{
    			name:          "not an object",
    			expression:    `string(114514)`,
    			expectedValue: "114514",
    		},
    		{
    			name:          "empty",
    			expression:    "Object{}",
    			expectedValue: map[string]any{},
    		},
    		{
    			name:       "Object.spec",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    				&testVariable{
    					name:       "count",
    					expression: "object.subsets[114514].addresses.size()", // array index out of bound
    				},
    			},
    			attributes:           endpointCreateAttributes(),
    			expression:           "variables.count == 810",
    			expectErr:            true,
    			expectedErrorMessage: `composited variable "count" fails to evaluate: index out of bounds: 114514`,
    		},
    		{
    			name: "out of budget during lazy evaluation",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    					{
    						Name:       "foo",
    						Expression: "114 + '514'", // compile error: type confusion
    					},
    				},
    				Validations: []admissionregistration.Validation{
    					{
    						Expression: "true",
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. pkg/util/filesystem/util_windows.go

    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// Amount of time to wait between attempting to use a Unix domain socket.
    	// As detailed in https://github.com/kubernetes/kubernetes/issues/104584
    	// the first attempt will most likely fail, hence the need to retry
    	socketDialRetryPeriod = 1 * time.Second
    	// Overall timeout value to dial a Unix domain socket, including retries
    	socketDialTimeout = 4 * time.Second
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. pkg/util/filesystem/util_windows_test.go

    }
    
    // This is required as on Windows it's possible for the socket file backing a Unix domain socket to
    // exist but not be ready for socket communications yet as per
    // https://github.com/kubernetes/kubernetes/issues/104584
    func TestPendingUnixDomainSocket(t *testing.T) {
    	// Create a temporary file that will simulate the Unix domain socket file in a
    	// not-yet-ready state. We need this because the Kubelet keeps an eye on file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

         * @since 4.7
         */
        VERSION_HIGHER;
        // Since Java 9, version should be X instead of 1.X
        private static final int FIRST_MAJOR_VERSION_ORDINAL = 9 - 1;
        // Class file versions: 1.1 == 45, 1.2 == 46...
        private static final int CLASS_MAJOR_VERSION_OFFSET = 44;
        private static JavaVersion currentJavaVersion;
        private final String versionName;
    
        JavaVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                        FunctionArgument.Positional [indexes: 13..16, line/column: 1/14..1/17, file: test] (
                            expr = FunctionCall [indexes: 13..16, line/column: 1/14..1/17, file: test] (
                                name = g
                                args = []
                            )
                        )
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Updated API reference for Requests, specifying they must not exceed limits ([#115434](https://github.com/kubernetes/kubernetes/pull/115434), [@ehashman](https://github.com/ehashman))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/response-model.md

        {!> ../../../docs_src/response_model/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="11  13-14"
        {!> ../../../docs_src/response_model/tutorial004.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top