Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 804 for emits (0.05 sec)

  1. src/cmd/internal/obj/objfile.go

    		}
    	} else if v := s.VarInfo(); v != nil {
    		if v.dwarfInfoSym != nil && v.dwarfInfoSym.Size != 0 {
    			w.aux1(goobj.AuxDwarfInfo, v.dwarfInfoSym)
    		}
    	}
    }
    
    // Emits flags of referenced indexed symbols.
    func (w *writer) refFlags() {
    	seen := make(map[*LSym]bool)
    	w.ctxt.traverseSyms(traverseRefs, func(rs *LSym) { // only traverse refs, not auxs, as tools don't need auxs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/internal/coverage/defs.go

    // license that can be found in the LICENSE file.
    
    package coverage
    
    // Types and constants related to the output files written
    // by code coverage tooling. When a coverage-instrumented binary
    // is run, it emits two output files: a meta-data output file, and
    // a counter data output file.
    
    //.....................................................................
    //
    // Meta-data definitions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    // and sets b.current to nil.
    func (b *builder) jump(target *Block) {
    	b.current.Succs = append(b.current.Succs, target)
    	b.current = nil
    }
    
    // ifelse emits edges from the current block to the t and f blocks,
    // and sets b.current to nil.
    func (b *builder) ifelse(t, f *Block) {
    	b.current.Succs = append(b.current.Succs, t, f)
    	b.current = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            WithDocumentation(DeprecationMessageBuilder<?> builder) {
                this.builder = builder;
            }
    
            /**
             * Terminal operation. Emits the deprecation message.
             */
            public void nagUser() {
                DeprecationLogger.nagUserWith(builder, WithDocumentation.class);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // of the type checker in which they are emitted in exactly one place. For
    // example, the type checker emits different error messages for "too many
    // arguments" and "too few arguments", but one can imagine an alternative type
    // checker where this check instead just emits a single "wrong number of
    // arguments", so these errors should have the same code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    	ctxt.Errors++
    	ctxt.DiagFunc(format, args...)
    }
    
    func (ctxt *Link) Logf(format string, args ...interface{}) {
    	fmt.Fprintf(ctxt.Bso, format, args...)
    	ctxt.Bso.Flush()
    }
    
    // SpillRegisterArgs emits the code to spill register args into whatever
    // locations the spill records specify.
    func (fi *FuncInfo) SpillRegisterArgs(last *Prog, pa ProgAlloc) *Prog {
    	// Spill register args.
    	for _, ra := range fi.spills {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    import java.util.Set;
    import java.util.concurrent.Callable;
    
    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    
    /**
     * A plugin for building java gradle plugins. Automatically generates plugin descriptors. Emits warnings for common error conditions. <p> Provides a direct integration with TestKit by declaring the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. src/internal/trace/oldtrace.go

    		nid := max + 1 + uint64(id)
    		it.inlineToStringID = append(it.inlineToStringID, nid)
    		add(stringID(nid), s)
    	}
    	max += uint64(len(pr.InlineStrings))
    	pr.InlineStrings = nil
    
    	// Add strings that the converter emits explicitly.
    	if max+uint64(sLast) < max {
    		return errors.New("trace contains too many strings")
    	}
    	it.builtinToStringID = make([]uint64, sLast)
    	addBuiltin := func(c int, s string) {
    		nid := max + 1 + uint64(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/sync/sync.go

    	// UpdateNodeNetworkUnavailable updates the network unavailable status for the node.
    	UpdateNodeNetworkUnavailable(nodeName string, unavailable bool) error
    	// EmitNodeWarningEvent emits an event for the given node.
    	EmitNodeWarningEvent(nodeName, reason, fmt string, args ...interface{})
    }
    
    // controller is the interface to the controller.
    type controller interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

                configurations.custom.canBeResolved = false
            """
    
            expect:
            succeeds 'help'
        }
    
        def "using a reserved configuration name emits a deprecation warning if JavaBasePlugin applied"() {
            given:
            file("buildSrc/src/main/groovy/MyPlugin.groovy") << """
                import org.gradle.api.Plugin
                import org.gradle.api.plugins.BasePlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top