Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 262 for bland (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cache.kt

            responseHeaders = responseHeadersBuilder.build()
    
            if (url.isHttps) {
              val blank = source.readUtf8LineStrict()
              if (blank.isNotEmpty()) {
                throw IOException("expected \"\" but was \"$blank\"")
              }
              val cipherSuiteString = source.readUtf8LineStrict()
              val cipherSuite = CipherSuite.forJavaName(cipherSuiteString)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/go/doc/example.go

    	// paths for imports w/o renames (should be good enough most of the time).
    	var namedImports []ast.Spec
    	var blankImports []ast.Spec // _ imports
    
    	// To preserve the blank lines between groups of imports, find the
    	// start position of each group, and assign that position to all
    	// imports from that group.
    	groupStarts := findImportGroupStarts(file.Imports)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. JavadocStyleGuide.md

    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/decls1.go

    var (
    	a, b bool
    	c byte
    	d uint8
    	r rune
    	i int
    	j, k, l int
    	x, y float32
    	xx, yy float64
    	u, v complex64
    	uu, vv complex128
    	s, t string
    	array []byte
    	iface interface{}
    
    	blank _ /* ERROR "cannot use _" */
    )
    
    // Global variables with initialization
    var (
    	s1 = i + j
    	s2 = i /* ERROR "mismatched types" */ + x
    	s3 = c + d
    	s4 = s + t
    	s5 = s /* ERROR "invalid operation" */ / t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

            ["b", "c"]              | ["a", "b"]                        || PotentialMatchesExistComparisonFailure   || 0
        }
    
        def "by default, matching blank lines should NOT cause a potential match: #expectedLines vs #actualLines"() {
            when:
            comparer.assertLinesContainedIn(expectedLines, actualLines)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

            Set<K> participants = new LinkedHashSet<>(targets);
            participants.add(replacedBy);
    
            //We need to ensure that the conflict is orderly injected to the list of conflicts
            //Brand new conflict goes to the end
            //If we find any matching conflict we have to hook up with it
    
            //Find an existing matching conflict
            for (K participant : participants) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	"internal/buildcfg"
    	. "internal/types/errors"
    )
    
    func (check *Checker) declare(scope *Scope, id *syntax.Name, obj Object, pos syntax.Pos) {
    	// spec: "The blank identifier, represented by the underscore
    	// character _, may be used in a declaration like any other
    	// identifier but the declaration does not introduce a new
    	// binding."
    	if obj.Name() != "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// Test is reserved for errors that only apply while in self-test mode.
    	Test
    
    	/* package names */
    
    	// BlankPkgName occurs when a package name is the blank identifier "_".
    	//
    	// Per the spec:
    	//  "The PackageName must not be the blank identifier."
    	BlankPkgName
    
    	// MismatchedPkgName occurs when a file's package name doesn't match the
    	// package name already established by other files.
    	MismatchedPkgName
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. src/net/textproto/reader.go

    	if err != nil {
    		return nil, err
    	}
    	if len(line) == 0 { // blank line - no continuation
    		return line, nil
    	}
    
    	if err := validateFirstLine(line); err != nil {
    		return nil, err
    	}
    
    	// Optimistically assume that we have started to buffer the next line
    	// and it starts with an ASCII letter (the next header key), or a blank
    	// line, so we can avoid copying that buffered data around in memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/html/template/js_test.go

    			t.Errorf("%q: want %s got %s", test.s, test.jsCtx, ctx)
    		}
    	}
    
    	if nextJSCtx([]byte("   "), jsCtxRegexp) != jsCtxRegexp {
    		t.Error("Blank tokens")
    	}
    
    	if nextJSCtx([]byte("   "), jsCtxDivOp) != jsCtxDivOp {
    		t.Error("Blank tokens")
    	}
    }
    
    type jsonErrType struct{}
    
    func (e *jsonErrType) MarshalJSON() ([]byte, error) {
    	return nil, errors.New("beep */ boop </script blip <!--")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top