Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,303 for invalide (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            // When true, the project is definitely invalid
            // When false, validity is not known
            private
            var invalid = false
    
            private
            val consumedBy = mutableSetOf<ProjectInvalidationState>()
    
            val isInvalid: Boolean
                get() = invalid
    
            fun consumedBy(consumer: ProjectInvalidationState) {
                if (invalid) {
                    consumer.invalidate()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/internal/types/errors/code_string.go

    // Code generated by "stringer -type Code codes.go"; DO NOT EDIT.
    
    package errors
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[InvalidSyntaxTree - -1]
    	_ = x[Test-1]
    	_ = x[BlankPkgName-2]
    	_ = x[MismatchedPkgName-3]
    	_ = x[InvalidPkgUse-4]
    	_ = x[BadImportPath-5]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/go/types/stmt.go

    		check.expr(nil, &v, e)
    		if x.mode == invalid || v.mode == invalid {
    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, token.EQL, true)
    		if res.mode == invalid {
    			continue L
    		}
    		if v.mode != constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. hack/testdata/invalid-rc-with-empty-args.yaml

    Angus Salkeld <******@****.***> 1464580898 +1000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 30 04:12:18 UTC 2016
    - 364 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		for _, valid := range valids {
    			for _, invalid := range gvksToInvalidFiles[gvk] {
    				validXInvalidPairs = append(validXInvalidPairs, pair{old: valid, new: invalid})
    			}
    		}
    	}
    
    	// For each invalid file, add pair with every other invalid file of the same
    	// GVK including itself
    	for gvk, invalids := range gvksToInvalidFiles {
    		for _, invalid := range invalids {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/version_test.go

    		},
    		{
    			name:          "invalid: client version is empty",
    			remoteVersion: "v1.12.1",
    			clientVersion: "",
    			expectedError: true,
    		},
    		{
    			name:          "invalid: error parsing the remote version",
    			remoteVersion: "invalid-version",
    			clientVersion: "v1.12.0",
    			expectedError: true,
    		},
    		{
    			name:          "invalid: error parsing the client version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    		kind = ImagLit
    		s.nextch()
    	}
    
    	s.setLit(kind, ok) // do this now so we can use s.lit below
    
    	if kind == IntLit && invalid >= 0 && ok {
    		s.errorAtf(invalid, "invalid digit %q in %s literal", s.lit[invalid], baseName(base))
    		ok = false
    	}
    
    	if digsep&2 != 0 && ok {
    		if i := invalidSep(s.lit); i >= 0 {
    			s.errorAtf(i, "'_' must separate successive digits")
    			ok = false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-request-redirect-with-backendref.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 344 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    		if err == nil {
    			t.Errorf("key %q should be invalid", key)
    		}
    	}
    }
    
    func TestInvalidKeys(t *testing.T) {
    	const invalidKey = "/foo/bar/../baz"
    	expectedError := fmt.Sprintf("invalid key: %q", invalidKey)
    
    	expectInvalidKey := func(methodName string, err error) {
    		if err == nil {
    			t.Errorf("[%s] expected invalid key error; got nil", methodName)
    		} else if err.Error() != expectedError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr-invalid.mlir

    // RUN: not tf-mlir-translate -mlir-tf-str-attr-to-mlir %s 2>&1 | FileCheck %s
    
    "builtin.totally @invalid MLIR module {here} <-"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 01 20:38:29 UTC 2021
    - 220 bytes
    - Viewed (0)
Back to top