Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,042 for descriptive (0.3 sec)

  1. src/internal/trace/oldtrace.go

    			line:   uint64(f.Line),
    		}
    	}
    	pr.Stacks = nil
    	pr.PCs = nil
    	evt.stacks.compactify()
    	return nil
    }
    
    // next returns the next event, io.EOF if there are no more events, or a
    // descriptive error for invalid events.
    func (it *oldTraceConverter) next() (Event, error) {
    	if len(it.extra) > 0 {
    		ev := it.extra[0]
    		it.extra = it.extra[1:]
    
    		if len(it.extra) == 0 {
    			it.extra = it.extraArr[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    import org.apache.maven.project.ProjectBuildingResult;
    
    /*
    
    - test projects for each of these
    - how to categorize the problems so that the id of the problem can be match to a page with descriptive help and the test
      project
    - nice little sample projects that could be run in the core as well as integration tests
    
    All Possible Errors
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            1 * execution.canStoreOutputsInCache() >> true
    
            then:
            interaction { outputStored {} }
            0 * _
        }
    
        def "fails after #exceptionName unpack failure with descriptive error"() {
            def loadedOutputFile = file("output.txt")
            def loadedOutputDir = file("output")
            def failure = new RuntimeException("unpack failure")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    ====
    <1> Make sure your project has a `group` set which is used to identify the artifacts (jar and metadata) you publish for your plugins
    in the repository of the {portal} and which is descriptive of the plugin author or the organization the plugins belong too.
    <2> Set the version of your project, which will also be used as the version of your plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/fmt/example_test.go

    // license that can be found in the LICENSE file.
    
    package fmt_test
    
    import (
    	"fmt"
    	"io"
    	"math"
    	"os"
    	"strings"
    	"time"
    )
    
    // The Errorf function lets us use formatting features
    // to create descriptive error messages.
    func ExampleErrorf() {
    	const name, id = "bueller", 17
    	err := fmt.Errorf("user %q (id %d) not found", name, id)
    	fmt.Println(err.Error())
    
    	// Output: user "bueller" (id 17) not found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    	"database/sql/driver"
    	"errors"
    	"fmt"
    	"reflect"
    	"strconv"
    	"time"
    	"unicode"
    	"unicode/utf8"
    	_ "unsafe" // for linkname
    )
    
    var errNilPtr = errors.New("destination pointer is nil") // embedded in descriptive error
    
    func describeNamedValue(nv *driver.NamedValue) string {
    	if len(nv.Name) == 0 {
    		return fmt.Sprintf("$%d", nv.Ordinal)
    	}
    	return fmt.Sprintf("with name %q", nv.Name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/shell.go

    		// Just return the error.
    		//
    		// TODO: This is what we've done for a long time, but it may be a
    		// mistake because it loses all of the extra context and results in
    		// ultimately less descriptive output. We should probably just take the
    		// text of cmdErr as the output in this case and do everything we
    		// otherwise would. We could chain the errors if we feel like it.
    		return cmdErr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    var localOnce sync.Once
    
    func (l *Location) get() *Location {
    	if l == nil {
    		return &utcLoc
    	}
    	if l == &localLoc {
    		localOnce.Do(initLocal)
    	}
    	return l
    }
    
    // String returns a descriptive name for the time zone information,
    // corresponding to the name argument to [LoadLocation] or [FixedZone].
    func (l *Location) String() string {
    	return l.get().name
    }
    
    var unnamedFixedZones []*Location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
      // Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/flag/flag.go

    // These constants cause [FlagSet.Parse] to behave as described if the parse fails.
    const (
    	ContinueOnError ErrorHandling = iota // Return a descriptive error.
    	ExitOnError                          // Call os.Exit(2) or for -h/-help Exit(0).
    	PanicOnError                         // Call panic with a descriptive error.
    )
    
    // A FlagSet represents a set of defined flags. The zero value of a FlagSet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top