Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 549 for Unrecognized (0.14 sec)

  1. cmd/kubeadm/app/util/error.go

    		if !strings.HasSuffix(msg, "\n") {
    			msg += "\n"
    		}
    
    		fmt.Fprint(os.Stderr, msg)
    	}
    	os.Exit(code)
    }
    
    // CheckErr prints a user friendly error to STDERR and exits with a non-zero
    // exit code. Unrecognized errors will be printed with an "error: " prefix.
    //
    // This method is generic to the command in use and may be used by non-Kubectl
    // commands.
    func CheckErr(err error) {
    	checkErr(err, fatal)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/util/GradleVersionTest.groovy

    import spock.lang.Issue
    import spock.lang.Specification
    
    class GradleVersionTest extends Specification {
        final GradleVersion version = GradleVersion.current()
    
        def "parsing fails for unrecognized version string"() {
            when:
            GradleVersion.version(versionString)
    
            then:
            IllegalArgumentException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/stmtlines_test.go

    		return fh.DWARF()
    	}
    
    	if fh, err := macho.Open(path); err == nil {
    		return fh.DWARF()
    	}
    
    	if fh, err := xcoff.Open(path); err == nil {
    		return fh.DWARF()
    	}
    
    	return nil, fmt.Errorf("unrecognized executable format")
    }
    
    func must(err error) {
    	if err != nil {
    		panic(err)
    	}
    }
    
    type Line struct {
    	File string
    	Line int
    }
    
    func TestStmtLines(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. istioctl/pkg/ztunnelconfig/ztunnelconfig_test.go

    		},
    		{ // logger name invalid when namespacing is used improperly
    			execClientConfig: loggingConfig,
    			args:             strings.Split("log ztunnel-9v7nw --level ztunnel:::pool:debug", " "),
    			expectedString:   "unrecognized logging level: pool:debug",
    			wantException:    true,
    		},
    		{ // logger name valid and logging level valid
    			execClientConfig: loggingConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    			rst.writeString("::")
    		}
    		rst.writeByte('<')
    		rst.genericArgs()
    		rst.writeByte('>')
    		rst.checkChar('E')
    	case 'B':
    		rst.backref(func() { rst.path(needsSeparator) })
    	default:
    		rst.fail("unrecognized letter in path")
    	}
    }
    
    // implPath parses:
    //
    //	<impl-path> = [<disambiguator>] <path>
    func (rst *rustState) implPath() {
    	// This path is not part of the demangled string.
    	hold := rst.skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    					}
    				})
    			default:
    				// reject all unrecognized simple values
    				each.assertOnError = func(t *testing.T, e error) {
    					// TODO: Once this can pass, make the assertion stronger.
    					if e == nil {
    						t.Error("expected non-nil error")
    					}
    				}
    				each.fixme = "unrecognized simple values should be rejected"
    			}
    			generated = append(generated, each)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
              kind:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/Pac.java

                int bufferCount = pacStream.readInt();
                int version = pacStream.readInt();
    
                if ( version != PacConstants.PAC_VERSION ) {
                    throw new PACDecodingException("Unrecognized PAC version " + version);
                }
    
                for ( int bufferIndex = 0; bufferIndex < bufferCount; bufferIndex++ ) {
                    int bufferType = pacStream.readInt();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		ByteStringToString: cbor.ByteStringToStringAllowed,
    
    		// Allow CBOR byte strings to match struct fields when appearing as a map key.
    		FieldNameByteString: cbor.FieldNameByteStringAllowed,
    
    		// When decoding an unrecognized tag to interface{}, return the decoded tag content
    		// instead of the default, a cbor.Tag representing a (number, content) pair.
    		UnrecognizedTagToAny: cbor.UnrecognizedTagContentToAny,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor/tableconvertor.go

    	}
    	c := &convertor{
    		headers: headers,
    	}
    
    	for _, col := range crdColumns {
    		path := jsonpath.New(col.Name)
    		if err := path.Parse(fmt.Sprintf("{%s}", col.JSONPath)); err != nil {
    			return c, fmt.Errorf("unrecognized column definition %q", col.JSONPath)
    		}
    		path.AllowMissingKeys(true)
    
    		desc := fmt.Sprintf("Custom resource definition column (in JSONPath format): %s", col.JSONPath)
    		if len(col.Description) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 20:21:32 UTC 2022
    - 5.2K bytes
    - Viewed (0)
Back to top