Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for pats (0.11 sec)

  1. src/runtime/map.go

    				} else {
    					typedmemmove(t.Elem, dst.e, e)
    				}
    				dst.i++
    				// These updates might push these pointers past the end of the
    				// key or elem arrays.  That's ok, as we have the overflow pointer
    				// at the end of the bucket to protect against pointing past the
    				// end of the bucket.
    				dst.k = add(dst.k, uintptr(t.KeySize))
    				dst.e = add(dst.e, uintptr(t.ValueSize))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	Name() string
    
    	// PkgPath returns a defined type's package path, that is, the import path
    	// that uniquely identifies the package, such as "encoding/base64".
    	// If the type was predeclared (string, error) or not defined (*T, struct{},
    	// []int, or A where A is an alias for a non-defined type), the package path
    	// will be the empty string.
    	PkgPath() string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		if imp, _ := s.(*ast.ImportSpec); imp != nil {
    			imports[imp.Path.Value] = imp
    		}
    	}
    
    	for _, test := range tests {
    		imp := imports[test.path]
    		if imp == nil {
    			t.Fatalf("invalid test case: import path %s not found", test.path)
    		}
    		got := info.PkgNameOf(imp)
    		if got == nil {
    			t.Fatalf("import %s: package name not found", test.path)
    		}
    		if got.Name() != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedNil:
    			// Unsafe.Pointer is a basic type that includes nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              // We unwind setFuture specifically to avoid StackOverflowErrors in the case of long
              // chains of SetFutures
              // Handling this special case is important because there is no way to pass an executor to
              // setFuture, so a user couldn't break the chain by doing this themselves.  It is also
              // potentially common if someone writes a recursive Futures.transformAsync transformer.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              // We unwind setFuture specifically to avoid StackOverflowErrors in the case of long
              // chains of SetFutures
              // Handling this special case is important because there is no way to pass an executor to
              // setFuture, so a user couldn't break the chain by doing this themselves.  It is also
              // potentially common if someone writes a recursive Futures.transformAsync transformer.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Rsh8x8          <t> x y) => (ISEL [2] (SRAD     <t> (MOVBreg  x) y) (SRADconst <t>  (MOVBreg x) [7]) (CMPconst [0] (ANDconst [0x00F8] y)))
    
    // Catch bounded shifts in situations like foo<<uint(shift&63) which might not be caught by the prove pass.
    (CMP(U|WU)const [d] (ANDconst z [c])) && uint64(d) > uint64(c) => (FlagLT)
    
    (ORN x (MOVDconst [-1])) => x
    
    (S(RAD|RD|LD) x (MOVDconst [c])) => (S(RAD|RD|LD)const [c&63 | (c>>6&1*63)] 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)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    final String path = target.getExists();
                    final String xformed = transformPath(path, target, "exists");
                    return xformed != path ? (builder != null ? builder : creator.get()).exists(xformed) : builder;
                }
    
                private String transformPath(String path, ActivationFile target, String locationKey) {
                    if (isNotEmpty(path)) {
                        try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    		// (See https://golang.org/issue/48495 and test_fuzz_modcache.txt.)
    		mainMods := modload.MainModules
    		if m := pkgs[0].Module; m != nil && m.Path != "" {
    			if !mainMods.Contains(m.Path) {
    				base.Fatalf("cannot use -fuzz flag on package outside the main module")
    			}
    		} else if pkgs[0].Standard && modload.Enabled() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	Telemetry *Telemetries `json:"-"`
    
    	// ProxyConfig stores the existing ProxyConfig resources for the cluster.
    	ProxyConfigs *ProxyConfigs `json:"-"`
    
    	// The following data is either a global index or used in the inbound path.
    	// Namespace specific views do not apply here.
    
    	// Mesh configuration for the mesh.
    	Mesh *meshconfig.MeshConfig `json:"-"`
    
    	// PushVersion describes the push version this push context was computed for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top