Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for loadsys (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "FlagLT_UGT"}, // signed < and unsigned >
    		{name: "FlagGT_UGT"}, // signed > and unsigned >
    		{name: "FlagGT_ULT"}, // signed > and unsigned <
    
    		// Atomic loads.  These are just normal loads but return <value,memory> tuples
    		// so they can be properly ordered with other loads.
    		// load from arg0+auxint+aux.  arg1=mem.
    		{name: "MOVBatomicload", argLength: 2, reg: gpload, asm: "MOVB", aux: "SymOff", faultOnNilArg0: true, symEffect: "Read"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/go/internal/load/pkg.go

    // Copyright 2011 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 load loads packages.
    package load
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/build"
    	"go/scanner"
    	"go/token"
    	"internal/platform"
    	"io/fs"
    	"os"
    	pathpkg "path"
    	"path/filepath"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. go.sum

    github.com/go-openapi/loads v0.17.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU=
    github.com/go-openapi/loads v0.18.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU=
    github.com/go-openapi/loads v0.19.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU=
    github.com/go-openapi/loads v0.19.2/go.mod h1:QAskZPMX5V0C2gvfkGZzJlINuP7Hx/4+ix5jWFxsNPs=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

            recordRead(e, now);
            return value;
          } finally {
            statsCounter.recordMisses(1);
          }
        }
    
        // at most one of loadSync/loadAsync may be called for any given LoadingValueReference
    
        V loadSync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
            CacheLoader<? super K, V> loader)
            throws ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

              return null;
            }
          } finally {
            unlock();
            postWriteCleanup();
          }
        }
    
        // at most one of loadSync/loadAsync may be called for any given LoadingValueReference
    
        V loadSync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
            CacheLoader<? super K, V> loader)
            throws ExecutionException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    // the groundwork for turning a given relocation into an external reloc
    // (to be applied by the external linker). For more on how relocations
    // work in general, see
    //
    //	"Linkers and Loaders", by John R. Levine (Morgan Kaufmann, 1999), ch. 7
    //
    // This is a performance-critical function for the linker; be careful
    // to avoid introducing unnecessary allocations in the main loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. src/cmd/internal/obj/arm64/asm7.go

    			if isMOVop(p.As) && (cmp(C_LAUTO, a1) || cmp(C_LOREG, a1)) {
    				// More specific classification of large offset loads and stores.
    				a1 = c.loadStoreClass(p, a1, c.instoffset)
    			}
    			if isLoadStorePairOp(p.As) && (cmp(C_LAUTO, a1) || cmp(C_LOREG, a1)) {
    				// More specific classification of large offset loads and stores.
    				a1 = c.loadStorePairClass(p, a1, c.instoffset)
    			}
    		}
    		p.From.Class = int8(a1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

          break
        fi
        (( retries-- ))
        sleep 3
      done
    }
    
    # Starts kubernetes controller manager.
    # It prepares the log file, loads the docker image, calculates variables, sets them
    # in the manifest file, and then copies the manifest file to /etc/kubernetes/manifests.
    #
    # Assumed vars (which are calculated in function compute-master-manifest-variables)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    		} else if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    
    	case 75: // 32 bit offset symbol loads (got/toc/addr)
    		var rel *obj.Reloc
    		v := p.From.Offset
    
    		// Offsets in DS form loads must be a multiple of 4
    		inst := c.opload(p.As)
    		switch p.From.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			if v != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Load <t1> p1 (Store {t2} p2 (Const32F [x]) _)) && isSamePtr(p1,p2) && sizeof(t2) == 4 && is32BitInt(t1)   => (Const32  [int32(math.Float32bits(x))])
    
    // Float Loads up to Zeros so they can be constant folded.
    (Load <t1> op:(OffPtr [o1] p1)
    	(Store {t2} p2 _
    		mem:(Zero [n] p3 _)))
    	&& o1 >= 0 && o1+t1.Size() <= n && isSamePtr(p1, p3)
    	&& CanSSA(t1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top