Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for nora (1.04 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	NAND R3, R4, R5                 // 7c851bb8
    	NANDCC R3, R4, R5               // 7c851bb9
    	EQV R3, R4, R5                  // 7c851a38
    	EQVCC R3, R4, R5                // 7c851a39
    	NOR R3, R4, R5                  // 7c8518f8
    	NORCC R3, R4, R5                // 7c8518f9
    
    	SUB R3, R4                      // 7c832050
    	SUB R3, R4, R5                  // 7ca32050
    	SUBC R3, R4                     // 7c832010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build.go

    	// in addition to the usual "true" and "false".
    	if s == "" || s == "auto" {
    		*f = "auto"
    		return nil
    	}
    
    	b, err := strconv.ParseBool(s)
    	if err != nil {
    		return errors.New("value is neither 'auto' nor a valid bool")
    	}
    	*f = (buildvcsFlag)(strconv.FormatBool(b)) // convert to canonical "true" or "false"
    	return nil
    }
    
    func (f *buildvcsFlag) String() string { return string(*f) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilder.java

       * access. Access time is reset by all cache read and write operations (including {@code
       * Cache.asMap().get(Object)} and {@code Cache.asMap().put(K, V)}), but not by {@code
       * containsKey(Object)}, nor by operations on the collection-views of {@link Cache#asMap}. So, for
       * example, iterating through {@code Cache.asMap().entrySet()} does not reset access time for the
       * entries you retrieve.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    func rewriteValuePPC64_OpCom16(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com16 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCom32(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com32 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Synchronized.java

     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Synchronized.java

     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

       * PeekingIterator#remove()}.
       *
       * <p>Note: If the given iterator is already a {@code PeekingIterator}, it <i>might</i> be
       * returned to the caller, although this is neither guaranteed to occur nor required to be
       * consistent. For example, this method <i>might</i> choose to pass through recognized
       * implementations of {@code PeekingIterator} when the behavior of the implementation is known to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

       * PeekingIterator#remove()}.
       *
       * <p>Note: If the given iterator is already a {@code PeekingIterator}, it <i>might</i> be
       * returned to the caller, although this is neither guaranteed to occur nor required to be
       * consistent. For example, this method <i>might</i> choose to pass through recognized
       * implementations of {@code PeekingIterator} when the behavior of the implementation is known to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	// This is OK as long as the packages that are farther down the
    	// dependency tree turn on *more* analysis, as here.
    	// (The unsafeptr check does not write any facts for use by
    	// later vet runs, nor does unreachable.)
    	if a.Package.Goroot && !VetExplicit && VetTool == "" {
    		// Turn off -unsafeptr checks.
    		// There's too much unsafe.Pointer code
    		// that vet doesn't like in low-level packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    		}
    		if def := typedef[t.Name]; def != nil {
    			if defgo, ok := def.Go.(*ast.Ident); ok {
    				switch defgo.Name {
    				case "complex64", "complex128":
    					// MSVC does not support the _Complex keyword
    					// nor the complex macro.
    					// Use GoComplex64 and GoComplex128 instead,
    					// which are typedef-ed to a compatible type.
    					// See go.dev/issues/36233.
    					return goTypesFixup(goTypes[defgo.Name])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top