Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,171 for Trailing (0.13 sec)

  1. security/pkg/pki/testdata/cert-chain-trailing-line.pem

    sschepens <******@****.***> 1717506007 -0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/testdata/simple.yaml

              service:
                name: service1
                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
          - path: /sub/path/
            backend:
              service:
                name: service1
                port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
      Renderer Statement(absl::string_view text, const Args &...args) {
        return Statement(absl::Substitute(text, args...));
      }
    
      // Indent and append a call to a TF method returning a Status to check.
      // Note: do *not* include a trailing semicolon in the statement text.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toCamelCase("four or so Words") == "FourOrSoWords"
            toCamelCase("123-project") == "123Project"
            toCamelCase("i18n-admin") == "I18nAdmin"
            toCamelCase("trailing-") == "Trailing"
            toCamelCase("ABC") == "ABC"
            toCamelCase(".") == ""
            toCamelCase("-") == ""
        }
    
        def convertStringToLowerCamelCase() {
            expect:
            toLowerCamelCase(null) == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    //  The update needs permuting to be in the form (a,b,d,e,f) so that the update
    //  window dims are the trailing dimensions.
    //
    // To canonicalize the updates above, replace the updates with:
    //   transpose(updates, permutation={3,4,0,1,2})
    //
    // Note: NormalizeIndexVector is assumed to have run on the indices already so
    // that the index_vector_dim is the trailing dimension in `indices`.
    LogicalResult CanonicalizeScatterUpdates(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. internal/hash/checksum.go

    	case c.Is(ChecksumSHA1):
    		return sha1.New()
    	case c.Is(ChecksumSHA256):
    		return sha256.New()
    	}
    	return nil
    }
    
    // Trailing return whether the checksum is trailing.
    func (c ChecksumType) Trailing() bool {
    	return c.Is(ChecksumTrailing)
    }
    
    // NewChecksumFromData returns a new checksum from specified algorithm and base64 encoded value.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // The byte sequence is followed by a trailing and leading CCC if the values
    // for these are not zero.  The value of v determines which ccc are appended
    // to the sequences.  For v < firstCCC, there are none, for v >= firstCCC,
    // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
    // there is an additional leading ccc. The value of tccc itself is the
    // trailing CCC shifted left 2 bits. The two least-significant bits of tccc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    				k *= 2
    			}
    
    			// The length of the lowest-order zero run is an increment to our maximum.
    			j := uint(sys.TrailingZeros64(^x)) // count contiguous trailing ones
    			x >>= j & 63                       // remove trailing ones
    			j = uint(sys.TrailingZeros64(x))   // count contiguous trailing zeros
    			x >>= j & 63                       // remove zeros
    			most += j                          // we have a new maximum!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // The byte sequence is followed by a trailing and leading CCC if the values
    // for these are not zero.  The value of v determines which ccc are appended
    // to the sequences.  For v < firstCCC, there are none, for v >= firstCCC,
    // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
    // there is an additional leading ccc. The value of tccc itself is the
    // trailing CCC shifted left 2 bits. The two least-significant bits of tccc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/cmd/dist/testjson_test.go

    }
    
    func TestJSONFilterMalformed(t *testing.T) {
    	const in = `unexpected text
    {"Package":"abc"}
    more text
    {"Package":"abc"}trailing text
    {not json}
    no newline`
    	const want = `unexpected text
    {"Package":"abc:variant"}
    more text
    {"Package":"abc:variant"}trailing text
    {not json}
    no newline`
    	checkJSONFilter(t, in, want)
    }
    
    func TestJSONFilterBoundaries(t *testing.T) {
    	const in = `{"Package":"abc"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 20:13:24 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top