Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for pinned (0.18 sec)

  1. src/cmd/dist/build.go

    			xremove(name)
    		}
    	}()
    
    	// dir = full path to pkg.
    	dir := pathf("%s/src/%s", goroot, pkg)
    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	runNames    []string // tests to run, exclusive with runRx; empty means all
    	banner      string   // prefix, or "" for none
    	lastHeading string   // last dir heading printed
    
    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    				}
    				i++
    			}
    			// Make sure we visited all the cached nodes in the above for loop.
    			if i != len(cache.nodes) {
    				t.Errorf("Not all the nodes were visited by following the NodeInfo linked list. Expected to see %v nodes, saw %v.", len(cache.nodes), i)
    			}
    
    			// Check number of nodes with pods with affinity
    			if len(snapshot.havePodsWithAffinityNodeInfoList) != test.expectedHavePodsWithAffinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The S3 repository transport protocol allows Gradle to publish artifacts to AWS S3 buckets.
    Starting with this release, every artifact uploaded to an S3 bucket will be equipped with the `bucket-owner-full-control` canned ACL.
    Make sure that the AWS account used to publish artifacts has the `s3:PutObjectAcl` and `s3:PutObjectVersionAcl` permissions, otherwise the upload will fail.
    
    [source,json]
    ----
    {
        "Version":"2012-10-17",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    			// relocations with R_ADDR relocations on
    			// Elf64_Rela.r_offset. This field should contain the
    			// symbol offset as determined by reloc(), not the
    			// final dynamically linked address as a dynamic
    			// relocation would provide.
    			switch ldr.SymName(s) {
    			case ".dynsym", ".rela", ".rela.plt", ".got.plt", ".dynamic":
    				return false
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		meta := uintptr(sysReserve(nil, arenaMetaSize))
    		if meta != 0 {
    			mheap_.heapArenaAlloc.init(meta, arenaMetaSize, true)
    		}
    
    		// We want to start the arena low, but if we're linked
    		// against C code, it's possible global constructors
    		// have called malloc and adjusted the process' brk.
    		// Query the brk so we can avoid trying to map the
    		// region over it (which will cause the kernel to put
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	return dwarfSecInfo{syms: []loader.Sym{abrvs.Sym()}}
    }
    
    var dwtypes dwarf.DWDie
    
    // newattr attaches a new attribute to the specified DIE.
    //
    // FIXME: at the moment attributes are stored in a linked list in a
    // fairly space-inefficient way -- it might be better to instead look
    // up all attrs in a single large table, then store indices into the
    // table in the DIE. This would allow us to common up storage for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    To disable the running of go vet, use the -vet=off flag. To run all
    checks, use the -vet=all flag.
    
    All test output and summary lines are printed to the go command's
    standard output, even if the test printed them to its own standard
    error. (The go command's standard error is reserved for printing
    errors building the tests.)
    
    The go command places $GOROOT/bin at the beginning of $PATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    						break
    					}
    				}
    			}
    
    		case pkg.err != nil:
    			// pkg had an error in with a pruned module graph (presumably suppressed
    			// with the -e flag), but the error went away using an unpruned graph.
    			//
    			// This is possible, if, say, the import is unresolved in the pruned graph
    			// (because the "latest" version of each candidate module either is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/asm5.go

    		if sc&C_UBIT == 0 {
    			o |= 1 << 7 /* signed */
    		}
    		return o | 0xe<<24 | 0xb<<20 | 8<<16 | 0xa<<8 | 4<<4 | 0<<18 | 0<<8 // toint, double
    
    	case AMOVWD:
    		if sc&C_UBIT == 0 {
    			o |= 1 << 7 /* signed */
    		}
    		return o | 0xe<<24 | 0xb<<20 | 8<<16 | 0xa<<8 | 4<<4 | 0<<18 | 1<<8 // toint, double
    
    	case AMOVFW:
    		if sc&C_UBIT == 0 {
    			o |= 1 << 16 /* signed */
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top