Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for Upper (0.12 sec)

  1. src/net/textproto/reader.go

    	}
    	if noCanon {
    		return string(a), true
    	}
    
    	upper := true
    	for i, c := range a {
    		// Canonicalize: first letter upper case
    		// and upper case after each dash.
    		// (Host, User-Agent, If-Modified-Since).
    		// MIME headers are ASCII only, so no Unicode issues.
    		if upper && 'a' <= c && c <= 'z' {
    			c -= toLower
    		} else if !upper && 'A' <= c && c <= 'Z' {
    			c += toLower
    		}
    		a[i] = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            }
        }
    
        /**
         * Creates an instance of {@link WildcardType} bound by upper and lower bounds
         *
         * @param upperBounds a wildcard upper bound types
         * @param lowerBounds a wildcard lower bound types
         * @return an instance of {@link WildcardType}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

            wagonManager.getArtifact(artifact, repo, null, false);
    
            wagon.clearExpectedContent();
            wagon.addExpectedContent("path", "upper-case-checksum");
            wagon.addExpectedContent("path.sha1", "B7BB97D7D0B9244398D9B47296907F73313663E6");
            wagonManager.getArtifact(artifact, repo, null, false);
    
            wagon.clearExpectedContent();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                if (!boundTypeArguments.isCompatible) {
                    return false
                }
    
                checkedTypeParameters.add(typeParameter)
                if (!areBoundsCompatible(boundTypeArguments.upper, boundTypeArguments.lower, checkedTypeParameters)) {
                    return false
                }
            }
    
            return true
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

         * @see #getUpperBound()
         */
        public boolean isWildcard() {
            return type.isWildcard();
        }
    
        /**
         * Returns the first declared upper-bound of the wildcard type expression represented by this type.
         *
         * @return null if no upper-bound has been explicitly declared.
         */
        @Nullable
        public TypeOf<?> getUpperBound() {
            return nullableTypeOf(type.getUpperBound());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. pkg/registry/certificates/certificates/storage/metrics_test.go

    				},
    			},
    			options:       &metav1.UpdateOptions{},
    			wantSigner:    "kubernetes.io/educate-dolphins",
    			wantRequested: true,
    			wantHonored:   false,
    		},
    		{
    			name:    "honors duration upper bound",
    			success: true,
    			obj: &certificates.CertificateSigningRequest{
    				Status: certificates.CertificateSigningRequestStatus{
    					Certificate: createCert(t, 1349*time.Second, caPrivateKey, caCert),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/cmd/doc/main.go

    		if importErr == nil {
    			return pkg, arg, "", false
    		}
    	}
    	// Another disambiguator: If the argument starts with an upper
    	// case letter, it can only be a symbol in the current directory.
    	// Kills the problem caused by case-insensitive file systems
    	// matching an upper case name as a package name.
    	if !strings.ContainsAny(arg, `/\`) && token.IsExported(arg) {
    		pkg, err := build.ImportDir(".", build.ImportComment)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                    throw new UnresolvableModelException(
                            String.format(
                                    "The requested parent version range '%s' does not specify an upper bound",
                                    parent.getVersion()),
                            parent.getGroupId(),
                            parent.getArtifactId(),
                            parent.getVersion());
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. fastapi/openapi/utils.py

                        process_response = additional_response.copy()
                        process_response.pop("model", None)
                        status_code_key = str(additional_status_code).upper()
                        if status_code_key == "DEFAULT":
                            status_code_key = "default"
                        openapi_response = operation_responses.setdefault(
                            status_code_key, {}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/strings/strings.go

    // most-significant bit of the highest word, map to the full range of all
    // 128 ASCII characters. The 128-bits of the upper 16 bytes will be zeroed,
    // ensuring that any non-ASCII character will be reported as not in the set.
    // This allocates a total of 32 bytes even though the upper half
    // is unused to avoid bounds checks in asciiSet.contains.
    type asciiSet [8]uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top