Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 497 for Trailing (0.8 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "http://testrepo"      | "./directory1"               | "explicit relative URLS"
            "http://testrepo"      | "directory1/"                | "trailing slash"
            "http://testrepo"      | "./directory1/"              | "relative URL with trailing slash"
            "http://testrepo"      | "http://testrepo/directory1" | "complete URLS"
            "http://testrepo"      | "http://testrepo/directory1" | "hrefs with truncated text"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Utf8.java

                //     || byte1 == (byte) 0xF4 && byte2 > (byte) 0x8F)
                || (((byte1 << 28) + (byte2 - (byte) 0x90)) >> 30) != 0
                // Third byte trailing-byte test
                || bytes[index++] > (byte) 0xBF
                // Fourth byte trailing-byte test
                || bytes[index++] > (byte) 0xBF) {
              return false;
            }
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Utf8.java

                //     || byte1 == (byte) 0xF4 && byte2 > (byte) 0x8F)
                || (((byte1 << 28) + (byte2 - (byte) 0x90)) >> 30) != 0
                // Third byte trailing-byte test
                || bytes[index++] > (byte) 0xBF
                // Fourth byte trailing-byte test
                || bytes[index++] > (byte) 0xBF) {
              return false;
            }
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue55242.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 55242: gofrontend crash calling function that returns
    // trailing empty struct.
    
    package p
    
    func F1() (int, struct{}) {
    	return 0, struct{}{}
    }
    
    func F2() {
    	F1()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 20:27:13 UTC 2023
    - 346 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    }
    
    // HandlePrefix is like Handle, but matches for anything under the path.  Like a standard golang trailing slash.
    func (m *PathRecorderMux) HandlePrefix(path string, handler http.Handler) {
    	if !strings.HasSuffix(path, "/") {
    		panic(fmt.Sprintf("%q must end in a trailing slash", path))
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    	m.trackCallers(path)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

      if (!IsIotaAttr(update_window_dims, update_window_dims.size()))
        return rewriter.notifyMatchFailure(
            scatter_op, "update_window_dims are not leading or trailing indices");
    
      SmallVector<int64_t, 4> permutation_array(updates_type.getRank());
      int64_t dim = 0;
      // Move leading indices to the back of the array.
      const auto permutation_array_size = permutation_array.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  8. src/math/big/decimal.go

    func (x *decimal) init(m nat, shift int) {
    	// special case 0
    	if len(m) == 0 {
    		x.mant = x.mant[:0]
    		x.exp = 0
    		return
    	}
    
    	// Optimization: If we need to shift right, first remove any trailing
    	// zero bits from m to reduce shift amount that needs to be done in
    	// decimal format (since that is likely slower).
    	if shift < 0 {
    		ntz := m.trailingZeroBits()
    		s := uint(-shift)
    		if s >= ntz {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  9. test/syntax/composite.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var a = []int{
    	3 // ERROR "need trailing comma before newline in composite literal|possibly missing comma or }"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 00:26:58 UTC 2022
    - 304 bytes
    - Viewed (0)
  10. test/fixedbugs/issue4162.go

    // compile
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4162. Trailing commas now allowed in conversions.
    
    package p
    
    // All these are valid now.
    var (
    	_ = int(1.0,)      // comma was always permitted (like function call)
    	_ = []byte("foo",) // was syntax error: unexpected comma
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 524 bytes
    - Viewed (0)
Back to top