Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for Inits (0.03 sec)

  1. src/cmd/compile/internal/types2/resolver.go

    // another (constant) declaration.
    func (check *Checker) arity(pos syntax.Pos, names []*syntax.Name, inits []syntax.Expr, constDecl, inherited bool) {
    	l := len(names)
    	r := len(inits)
    
    	const code = WrongAssignCount
    	switch {
    	case l < r:
    		n := inits[l]
    		if inherited {
    			check.errorf(pos, code, "extra init expr at %s", n.Pos())
    		} else {
    			check.errorf(n, code, "extra init expr %s", n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Use     int32
    	Inits   uint32
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   int32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Use     int32
    	Inits   uint32
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   int32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/parser.go

    	case "priority":
    		p.next()
    		p.initdata.Priority = p.parseInt()
    		p.expectEOL()
    
    	case "init":
    		p.next()
    		for p.tok != '\n' && p.tok != ';' && p.tok != scanner.EOF {
    			p.initdata.Inits = append(p.initdata.Inits, p.parsePackageInit())
    		}
    		p.expectEOL()
    
    	case "init_graph":
    		p.next()
    		// The graph data is thrown away for now.
    		for p.tok != '\n' && p.tok != ';' && p.tok != scanner.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    	inittrace: setting inittrace=1 causes the runtime to emit a single line to standard
    	error for each package with init work, summarizing the execution time and memory
    	allocation. No information is printed for inits executed as part of plugin loading
    	and for packages without both user defined and compiler generated init work.
    	The format of this line is subject to change. Currently, it is:
    		init # @#ms, # ms clock, # bytes, # allocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    	// block starting with the init statements.
    
    	// if we can just say "for" n->ninit; ... then do so
    	simpleinit := len(n.Init()) == 1 && len(n.Init()[0].Init()) == 0 && StmtWithInit(n.Op())
    
    	// otherwise, print the inits as separate statements
    	complexinit := len(n.Init()) != 0 && !simpleinit && exportFormat
    
    	// but if it was for if/for/switch, put in an extra surrounding block to limit the scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * Units are resolved by calling the {@code valueOf(String)} method of {@link java.util.concurrent.TimeUnit} with the upper-cased string value.</p>
         *
         * @param value The number of time units
         * @param units The units
         * @since 1.0-milestone-6
         */
        void cacheChangingModulesFor(int value, String units);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicy.java

                }
            });
        }
    
        public void cacheChangingModulesFor(final int value, final TimeUnit units) {
            keepChangingModulesFor = units.toMillis(value);
            eachModule(moduleResolutionControl -> {
                if (moduleResolutionControl.isChanging()) {
                    moduleResolutionControl.cacheFor(value, units);
                }
            });
            eachArtifact(artifactResolutionControl -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    }
    
    // NumLabelUnits returns a map of numeric label keys to the units
    // associated with those keys and a map of those keys to any units
    // that were encountered but not used.
    // Unit for a given key is the first encountered unit for that key. If multiple
    // units are encountered for values paired with a particular key, then the first
    // unit encountered is used and all other units are returned in sorted order
    // in map of ignored units.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationRunner.java

                        }
    
                        @Override
                        public void progress(long progress, long total, String units, String status) {
                            assertNotFinished();
                            context.progress(progress, total, units, status);
                        }
    
                        private void finish() {
                            finished = true;
                            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top