Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for Scans (0.08 sec)

  1. src/runtime/mgc.go

    // improve parallelism, the garbage collector breaks up scan jobs for
    // objects larger than maxObletBytes into "oblets" of at most
    // maxObletBytes. When scanning encounters the beginning of a large
    // object, it scans only the first oblet and enqueues the remaining
    // oblets as new scan jobs.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const (
    	_DebugGC      = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

          - Was requested: first reason
    
    org.test:leaf:1.0
    \\--- org.test:a:1.0
         \\--- compileClasspath
    """
        }
    
        def "mentions web-based dependency insight report available using build scans"() {
            given:
            mavenRepo.module("org", "leaf1").publish()
            mavenRepo.module("org", "leaf2").publish()
    
            mavenRepo.module("org", "middle").dependsOnModules("leaf1", "leaf2").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    			lib.Fingerprint = fingerprint
    		}
    		checkFingerprint(lib, fingerprint, lib.Srcref, lib.Fingerprint)
    	}
    
    	addImports(ctxt, lib, pn)
    	return nil
    }
    
    // symbolsAreUnresolved scans through the loader's list of unresolved
    // symbols and checks to see whether any of them match the names of the
    // symbols in 'want'. Return value is a list of bools, with list[K] set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	if err != nil {
    		base.Fatalf("internal error: loadImport of %q with nil parent returned an error", path)
    	}
    	return p
    }
    
    // loadImport scans the directory named by path, which must be an import path,
    // but possibly a local import path (an absolute file system path or one beginning
    // with ./ or ../). A local relative path is interpreted relative to srcDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // create or update Go source files.
    //
    // Go generate is never run automatically by go build, go test,
    // and so on. It must be run explicitly.
    //
    // Go generate scans the file for directives, which are lines of
    // the form,
    //
    //	//go:generate command argument...
    //
    // (note: no leading spaces and no space in "//go") where command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    }
    
    var ysha1rnds4 = []ytab{
    	{Zibm_r, 2, argList{Yu2, Yxm, Yxr}},
    }
    
    // You are doasm, holding in your hand a *obj.Prog with p.As set to, say,
    // ACRC32, and p.From and p.To as operands (obj.Addr).  The linker scans optab
    // to find the entry with the given p.As and then looks through the ytable for
    // that instruction (the second field in the optab struct) for a line whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	gp.syscallsp = gp.sched.sp
    	gp.stktopsp = gp.sched.sp
    	// malg returns status as _Gidle. Change to _Gdead before
    	// adding to allg where GC can see it. We use _Gdead to hide
    	// this from tracebacks and stack scans since it isn't a
    	// "real" goroutine until needm grabs it.
    	casgstatus(gp, _Gidle, _Gdead)
    	gp.m = mp
    	mp.curg = gp
    	mp.isextra = true
    	// mark we are in C by default.
    	mp.isExtraInC = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top