Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 162 for Uncommon (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:configuration_avoidance]]
    === Configuration Avoidance API disallows common configuration errors
    
    The <<task_configuration_avoidance.adoc#task_configuration_avoidance, configuration avoidance API>> introduced in Gradle 4.9 allows you to avoid creating and configuring tasks that are never used.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

     * </td>
     * </tr>
     *
     * </table>
     * 
     * <p>
     * A second constructor argument may be specified to augment the URL
     * for better programmatic control when processing many files under
     * a common base. This is slightly different from the corresponding
     * <code>java.io.File</code> usage; a '/' at the beginning of the second
     * parameter will still use the server component of the first parameter. The
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    }
    inline char ToUpper(char ch) {
      return static_cast<char>(toupper(static_cast<unsigned char>(ch)));
    }
    
    // The testing::internal::posix namespace holds wrappers for common
    // POSIX functions.  These wrappers hide the differences between
    // Windows/MSVC and POSIX systems.  Since some compilers define these
    // standard functions as macros, the wrapper cannot have the same name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	got := log.String()
    	log.Unlock()
    
    	got = strings.TrimSpace(got)
    	want = strings.TrimSpace(want)
    
    	if got != want {
    		got, want, lines := removeCommonLines(got, want)
    		t.Errorf("Log differs after %d common lines.\n\nGot:\n%s\n\nWant:\n%s\n", lines, got, want)
    	}
    }
    
    func removeCommonLines(a, b string) (asuffix, bsuffix string, commonLines int) {
    	for {
    		nl := strings.IndexByte(a, '\n')
    		if nl < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    // non-generational and non-compacting. Allocation is done using size segregated per P allocation
    // areas to minimize fragmentation while eliminating locks in the common case.
    //
    // The algorithm decomposes into several steps.
    // This is a high level description of the algorithm being used. For an overview of GC a good
    // place to start is Richard Jones' gchandbook.org.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    		}
    
    		// Write out the header.
    		*header = gctyp
    		scanSize = span.elemsize
    	}
    
    	if doubleCheck {
    		doubleCheckHeapPointers(x, dataSize, gctyp, header, span)
    
    		// To exercise the less common path more often, generate
    		// a random interior pointer and make sure iterating from
    		// that point works correctly too.
    		maxIterBytes := span.elemsize
    		if header == nil {
    			maxIterBytes = dataSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    }
    inline char ToUpper(char ch) {
      return static_cast<char>(toupper(static_cast<unsigned char>(ch)));
    }
    
    // The testing::internal::posix namespace holds wrappers for common
    // POSIX functions.  These wrappers hide the differences between
    // Windows/MSVC and POSIX systems.  Since some compilers define these
    // standard functions as macros, the wrapper cannot have the same name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    // in the tool, than to avoid false negatives.
    const yesTsanProlog = `
    #line 1 "cgo-tsan-prolog"
    #define CGO_NO_SANITIZE_THREAD __attribute__ ((no_sanitize_thread))
    
    long long _cgo_sync __attribute__ ((common));
    
    extern void __tsan_acquire(void*);
    extern void __tsan_release(void*);
    
    __attribute__ ((unused))
    static void _cgo_tsan_acquire() {
    	__tsan_acquire(&_cgo_sync);
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (NEG (SUBFCconst [c] x)) && is32Bit(-c) => (ADDconst [-c] x)
    (NEG (SUB x y)) => (SUB y x)
    (NEG (NEG x)) => x
    
    // Use register moves instead of stores and loads to move int<=>float values
    // Common with math Float64bits, Float64frombits
    (MOVDload [off] {sym} ptr (FMOVDstore [off] {sym} ptr x _)) => (MFVSRD x)
    (FMOVDload [off] {sym} ptr (MOVDstore [off] {sym} ptr x _)) => (MTVSRD x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/go/build/build.go

    		if p == "" || p == ctxt.GOROOT {
    			// Empty paths are uninteresting.
    			// If the path is the GOROOT, ignore it.
    			// People sometimes set GOPATH=$GOROOT.
    			// Do not get confused by this common mistake.
    			continue
    		}
    		if strings.HasPrefix(p, "~") {
    			// Path segments starting with ~ on Unix are almost always
    			// users who have incorrectly quoted ~ while setting GOPATH,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top