Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 115 for LowerCase (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    		// Add "es" when ending with "s"
    		{Kind: "miss", Plural: "misses", Singular: "miss"},
    		// Add "s" otherwise
    		{Kind: "lowercase", Plural: "lowercases", Singular: "lowercase"},
    	}
    	for i, testCase := range testCases {
    		version := schema.GroupVersion{}
    
    		plural, singular := UnsafeGuessKindToResource(version.WithKind(testCase.Kind))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    	}
    	return c.ret()
    
    }
    
    // Span implements a generic lower-casing. This is possible as isLower works
    // for all lowercasing variants. All lowercase variants only vary in how they
    // transform a non-lowercase letter. They will never change an already lowercase
    // letter. In addition, there is no state.
    func (t undLowerIgnoreSigmaCaser) Span(src []byte, atEOF bool) (n int, err error) {
    	c := context{src: src, atEOF: atEOF}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/syscall/mkerrors.sh

    	qsort(errors, nelem(errors), sizeof errors[0], intcmp);
    	for(i=0; i<nelem(errors); i++) {
    		e = errors[i];
    		if(i > 0 && errors[i-1] == e)
    			continue;
    		strcpy(buf, strerror(e));
    		// lowercase first letter: Bad -> bad, but STREAM -> STREAM.
    		if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
    			buf[0] += a - A;
    		printf("\t%d: \"%s\",\n", e, buf);
    	}
    	printf("}\n\n");
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// too: plural.group and it must be all lowercase.
    	Plural string
    	// Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>
    	Singular string
    	// ShortNames are short names for the resource.  It must be all lowercase.
    	ShortNames []string
    	// Kind is the serialized kind of the resource.  It is normally CamelCase and singular.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/apis/apiserverinternal/validation/validation_test.go

    			DecodableVersions: []string{"v1", "mygroup_com/v2"},
    			ServedVersions:    []string{"v1", "mygroup_com/v2"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. internal/s3select/sql/funceval.go

    		return coalesce(argVals)
    
    	case sqlFnNullIf:
    		return nullif(argVals[0], argVals[1])
    
    	case sqlFnCharLength, sqlFnCharacterLength:
    		return charlen(argVals[0])
    
    	case sqlFnLower:
    		return lowerCase(argVals[0])
    
    	case sqlFnUpper:
    		return upperCase(argVals[0])
    
    	case sqlFnUTCNow:
    		return handleUTCNow()
    
    	case sqlFnToString, sqlFnToTimestamp:
    		// TODO: implement
    		fallthrough
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    	}, {
    		name:       "name should not include scheme",
    		targetName: "http://foo.k8s.io",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "email should be invalid",
    		targetName: "******@****.***",
    		err:        "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters",
    	}, {
    		name:       "name cannot be empty",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		"good": {
    			resources: testResources([]resourceapi.NamedResourcesInstance{{Name: goodName}}),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top