Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 486 for Upper (0.04 sec)

  1. pkg/kubelet/cm/util/cdi/cdi.go

    		return "", kind
    	}
    	return parts[0], parts[1]
    }
    
    // validateVendorName checks the validity of a vendor name.
    // A vendor name may contain the following ASCII characters:
    //   - upper- and lowercase letters ('A'-'Z', 'a'-'z')
    //   - digits ('0'-'9')
    //   - underscore, dash, and dot ('_', '-', and '.')
    func validateVendorName(vendor string) error {
    	if vendor == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/low_bit_utils.h

    // stored in 8-bit.
    // Returns a new buffer that is packed densely with 2 4-bit values in a byte.
    // The packing format is low-bits-first, i.e. the lower nibble of a byte is
    // filled first, followed by the upper nibble.
    std::vector<uint8_t> PackInt4ValuesDensely(std::vector<uint8_t> src_buffer);
    
    // Assumes `src_buffer` contains 2 4-bit elements packed in 8-bit.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 12 20:13:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/cases.go

    }
    
    // Span implements the transform.SpanningTransformer interface.
    func (c Caser) Span(src []byte, atEOF bool) (n int, err error) {
    	return c.t.Span(src, atEOF)
    }
    
    // Upper returns a Caser for language-specific uppercasing.
    func Upper(t language.Tag, opts ...Option) Caser {
    	return Caser{makeUpper(t, getOpts(opts...))}
    }
    
    // Lower returns a Caser for language-specific lowercasing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/icu.go

    			dst, C.int32_t(len(buf)),
    			src, C.int32_t(len(input)),
    			&err)
    	case "lower":
    		cn = C.ucasemap_utf8ToLower(cm,
    			dst, C.int32_t(len(buf)),
    			src, C.int32_t(len(input)),
    			&err)
    	case "upper":
    		cn = C.ucasemap_utf8ToUpper(cm,
    			dst, C.int32_t(len(buf)),
    			src, C.int32_t(len(input)),
    			&err)
    	case "title":
    		cn = C.ucasemap_utf8ToTitle(cm,
    			dst, C.int32_t(len(buf)),
    			src, C.int32_t(len(input)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/java/org/apache/maven/internal/impl/resolver/DefaultModelResolverTest.java

                    "Expected 'ModelResolverException' not thrown.");
            assertEquals("The requested version range '[1,)' does not specify an upper bound", e.getMessage());
        }
    
        @Test
        void testResolveParentSuccessfullyResolvesExistingParentWithoutRange() throws Exception {
            final Parent parent = Parent.newBuilder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4341</groupId>
      <artifactId>test</artifactId>
      <version>0.1</version>
      <!-- NOTE: The upper-case packaging name is intentional and triggers a special mode in the EmptyLifecycleExecutor -->
      <packaging>JAR</packaging>
    
      <name>Maven Integration Test :: MNG-4341</name>
      <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  7. cmd/data-usage-cache_gen.go

    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *allTierStats) Msgsize() (s int) {
    	s = 1 + 3 + msgp.MapHeaderSize
    	if z.Tiers != nil {
    		for za0001, za0002 := range z.Tiers {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  8. src/math/bits/bits.go

    	borrowOut = ((^x & y) | (^(x ^ y) & diff)) >> 63
    	return
    }
    
    // --- Full-width multiply ---
    
    // Mul returns the full-width product of x and y: (hi, lo) = x * y
    // with the product bits' upper half returned in hi and the lower
    // half returned in lo.
    //
    // This function's execution time does not depend on the inputs.
    func Mul(x, y uint) (hi, lo uint) {
    	if UintSize == 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. cmd/batch-job-common-types_gen.go

    				return
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BatchJobKV) Msgsize() (s int) {
    	s = 1 + 4 + msgp.StringPrefixSize + len(z.Key) + 6 + msgp.StringPrefixSize + len(z.Value)
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml

    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4332</groupId>
      <artifactId>test</artifactId>
      <version>0.1</version>
      <!-- NOTE: The upper-case packaging name is intentional and triggers a special mode in the EmptyLifecycleExecutor -->
      <packaging>JAR</packaging>
    
      <name>Maven Integration Test :: MNG-4332</name>
      <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top