Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for told (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if !defined(GTEST_HAS_STD_STRING)
    // Even though we don't use this macro any longer, we keep it in case
    // some clients still depend on it.
    # define GTEST_HAS_STD_STRING 1
    #elif !GTEST_HAS_STD_STRING
    // The user told us that ::std::string isn't available.
    # error "Google Test cannot be used where ::std::string isn't available."
    #endif  // !defined(GTEST_HAS_STD_STRING)
    
    #ifndef GTEST_HAS_GLOBAL_STRING
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    			if !hint.down {
    				p += n
    			}
    			hint.addr = p
    			size = n
    			break
    		}
    		// Failed. Discard this hint and try the next.
    		//
    		// TODO: This would be cleaner if sysReserve could be
    		// told to only return the requested address. In
    		// particular, this is already how Windows behaves, so
    		// it would simplify things there.
    		if v != nil {
    			sysFreeOS(v, n)
    		}
    		*hintList = hint.next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if !defined(GTEST_HAS_STD_STRING)
    // Even though we don't use this macro any longer, we keep it in case
    // some clients still depend on it.
    # define GTEST_HAS_STD_STRING 1
    #elif !GTEST_HAS_STD_STRING
    // The user told us that ::std::string isn't available.
    # error "Google Test cannot be used where ::std::string isn't available."
    #endif  // !defined(GTEST_HAS_STD_STRING)
    
    #ifndef GTEST_HAS_GLOBAL_STRING
    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. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    set77 Helvetica-Bold;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc \f0\b\fs24 \cf0 PluginManager}TextPlacement0Bounds{{617.51, 87}, {117, 12}}ClassShapedGraphicFi{-0.294118, -0.264706}TextAlign0TextPlacem{{598, 196}, {117, 14}}ClassShapedGraphicFi{-0.294118, -0.264706}TextText{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica-Bold;} {\colortbl;\red255\green255\blue255;} ...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 11 17:19:02 UTC 2017
    - 96.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	padding: 0.625em 0.75em;
    }
    
    .vcard li {
    	margin: 0;
    	display: block;
    }
    
    .vcard .fn {
    	font-weight: bold;
    	font-size: 0.9375em;
    }
    
    .vevent .summary {
    	font-weight: bold;
    }
    
    .vevent abbr {
    	cursor: auto;
    	text-decoration: none;
    	font-weight: bold;
    	border: none;
    	padding: 0 0.0625em;
    }
    
    @media only screen and (min-width: 768px) {
    
    	h1,
    	h2,
    	h3,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

            padding-top: 26px;
        }
        button.snippet-copy {
            top: 4px;
            right: 4px;
        }
    }
    pre.snippet .italic {
        font-style: italic;
    }
    pre.snippet .bold {
        font-weight: bold;
    }
    pre.snippet .highlighted {
        background-color: var(--snippet-highlight-color);
        border-radius: 10%;
    }
    
    
    /*
     * Custom changes
     */
    
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (AtomicExchange64 ptr val mem) => (LoweredAtomicExchange64 ptr val mem)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (LoweredAtomicCas32 ptr old new_ mem)
    (AtomicCompareAndSwap64 ptr old new_ mem) => (LoweredAtomicCas64 ptr old new_ mem)
    
    // Atomic and: *(*uint8)(ptr) &= val
    //
    // Round pointer down to nearest word boundary and pad value with ones before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AtomicExchange(32|64) ...) => (LoweredAtomicExchange(32|64) ...)
    
    (AtomicAdd(32|64) ...) => (LoweredAtomicAdd(32|64) ...)
    
    (AtomicCompareAndSwap(32|64) ptr old new_ mem) => (LoweredAtomicCas(32|64) [1] ptr old new_ mem)
    (AtomicCompareAndSwapRel32   ptr old new_ mem) => (LoweredAtomicCas32 [0] ptr old new_ mem)
    
    (AtomicAnd(8|32)  ...) => (LoweredAtomicAnd(8|32)  ...)
    (AtomicOr(8|32)   ...) => (LoweredAtomicOr(8|32)   ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Select1     (AddTupleFirst64   _ tuple)) => (Select1 tuple)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (CMPXCHGLlock ptr old new_ mem)
    (AtomicCompareAndSwap64 ptr old new_ mem) => (CMPXCHGQlock ptr old new_ mem)
    
    // Atomic memory updates.
    (AtomicAnd8  ptr val mem) => (ANDBlock ptr val mem)
    (AtomicAnd32 ptr val mem) => (ANDLlock ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                if (!containsCoordinates(e.getMessage(), groupId, artifactId, version)) {
                    buffer.append(' ').append(ModelProblemUtils.toId(groupId, artifactId, version));
                }
                if (childModel != problems.getRootModel()) {
                    buffer.append(" for ").append(ModelProblemUtils.toId(childModel));
                }
                buffer.append(": ").append(e.getMessage());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top