Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for annotated (0.23 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            when:
            services.get(Runnable)
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'Service Runnable at DefaultListenerManagerInServiceRegistryTest$.createListener() is annotated with @StatefulListener but is not declared as a service with this annotation. This service is declared as having type Runnable.'
        }
    
        def "fails when stateful listener registered after first event"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/informers.go

    		if isAnnotated && isTerminated {
    			log.Debugf("deleting pod %s from mesh, reason: isAnnotated(%v), isTerminated(%v)", newPod.Name, isAnnotated, isTerminated)
    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    			// - kubernetes will (weirdly) issue a new status to the pod with no IP on termination, meaning
    			// our check of `pod.status` will fail for (some) termination events.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package report
    
    // This file contains routines related to the generation of annotated
    // source listings.
    
    import (
    	"bufio"
    	"fmt"
    	"html/template"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    
    	"github.com/google/pprof/internal/graph"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	// sure the default heuristics of excluding insignificant nodes and edges
    	// from the call graph do not apply. One example where it is important is
    	// annotated source or disassembly listing. Those reports run on a specific
    	// function (or functions), but the trimming is applied before the function
    	// data is selected. So, with trimming enabled, the report could end up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

    /**
     * A spec that executes tests against all compatible versions of tooling API consumer and testDirectoryProvider, including the current Gradle version under test.
     *
     * <p>A test class or test method can be annotated with the following annotations to specify which versions the test is compatible with:
     * </p>
     *
     * <ul>
     *     <li>{@link ToolingApiVersion} - specifies the tooling API consumer versions that the test is compatible with.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		StartLine:  int64(ni.StartLine),
    	}
    	fm[fName] = f
    	return f, true
    }
    
    // printAssembly prints an annotated assembly listing.
    func printAssembly(w io.Writer, rpt *Report, obj plugin.ObjTool) error {
    	return PrintAssembly(w, rpt, obj, -1)
    }
    
    // PrintAssembly prints annotated disassembly of rpt to w.
    func PrintAssembly(w io.Writer, rpt *Report, obj plugin.ObjTool, maxFuncs int) error {
    	o := rpt.options
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    	err := parseFlags()
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		fmt.Fprintln(os.Stderr, `For usage information, run "go tool cover -help"`)
    		os.Exit(2)
    	}
    
    	// Generate coverage-annotated source.
    	if *mode != "" {
    		annotate(flag.Args())
    		return
    	}
    
    	// Output HTML or function coverage information.
    	if *htmlOut != "" {
    		err = htmlOutput(profile, *output)
    	} else {
    		err = funcOutput(profile, *output)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

            } else if (!method.getParameters().isEmpty() || !method.getSimpleName().toString().startsWith("get")) {
                return Collections.singletonList(new InvalidRequest(String.format("Method '%s.%s' annotated with @ReplacesEagerProperty should be a simple getter: name should start with 'get' and method should not have any parameters.", method.getEnclosingElement(), method)));
            }
    
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    * The task type and its classpath
    * The names of the output properties
    * The names and values of properties annotated as described in <<incremental_build.adoc#sec:task_input_output_annotations,the section called "Custom task types">>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net.go

    		return err
    	}
    
    	// For *any* failures after calling `CreateInpodRules`, we must return PartialAdd error.
    	// The pod was injected with iptables rules, so it must be annotated as "inpod" - even if
    	// the following fails.
    	// This is so that if it is removed from the mesh, the inpod rules will unconditionally
    	// be removed.
    
    	log.Debug("notifying subscribed node proxies")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top