Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 507 for bland (0.05 sec)

  1. test/fixedbugs/bug392.dir/one.go

    // Issue 2682.
    func F2(c chan int) bool { return c == (<-chan int)(nil) }
    
    // Use of single named return value.
    func F3() (ret []int) { return append(ret, 1) }
    
    // Call of inlined method with blank receiver.
    func (_ *T) M() int { return 1 }
    func (t *T) MM() int { return t.M() }
    
    
    // One more like issue 2678
    type S struct { x, y int }
    type U []S
    
    func F4(S int) U { return U{{S,S}} }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 851 bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/generation_adapter.go

     limitations under the License.
    */
    
    package gateway
    
    type gatewayGeneration struct {
    	inner any
    }
    
    func (g *gatewayGeneration) SetObservedGeneration(i int64) {
    	// Intentionally blank.  The observed generation of a gateway
    	// status type is contained in the individual conditions
    	// not at the top level, and is the responsibility
    	// of the condition functions to update.
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 969 bytes
    - Viewed (0)
  3. src/go/token/token.go

    	MUL_ASSIGN // *=
    	QUO_ASSIGN // /=
    	REM_ASSIGN // %=
    
    	AND_ASSIGN     // &=
    	OR_ASSIGN      // |=
    	XOR_ASSIGN     // ^=
    	SHL_ASSIGN     // <<=
    	SHR_ASSIGN     // >>=
    	AND_NOT_ASSIGN // &^=
    
    	LAND  // &&
    	LOR   // ||
    	ARROW // <-
    	INC   // ++
    	DEC   // --
    
    	EQL    // ==
    	LSS    // <
    	GTR    // >
    	ASSIGN // =
    	NOT    // !
    
    	NEQ      // !=
    	LEQ      // <=
    	GEQ      // >=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gopath_paths.txt

    env ORIG_GOPATH
    stdout 'ORIG_GOPATH='$WORK[/\\]gopath
    cd $WORK
    env GOPATH=gopath
    ! go build gopath/src/go-cmd-test/helloworld.go
    stderr 'GOPATH entry is relative'
    
    # Blank paths in GOPATH should be rejected as relative (issue 21928).
    env GOPATH=' '${:}$ORIG_GOPATH
    ! go build go-cmd-test
    stderr 'GOPATH entry is relative'
    
    [short] stop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 21:48:52 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/setup.packages.sh

    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    # Remove commented lines and blank lines
    apt-get install -y --no-install-recommends $(sed -e '/^\s*#.*$/d' -e '/^\s*$/d' "$1" | sort -u)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/ModelReportParserTest.groovy

            then:
            def ex = thrown(AssertionError)
            ex.message.startsWith message
    
            where:
            text | message
            ''   | 'Report text must not be blank'
            null | 'Report text must not be blank'
            's'  | 'Should have at least 5 lines'
        }
    
        def "fails when missing the success marker"() {
            when:
            ModelReportParser.parse("""-----------
    Report
    --------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue5607.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5607: generation of init() function incorrectly
    // uses initializers of blank variables inside closures.
    
    package main
    
    var Test = func() {
    	var mymap = map[string]string{"a": "b"}
    
    	var innerTest = func() {
    		// Used to crash trying to compile this line as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 02 21:54:34 UTC 2013
    - 777 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/accessor.go

    }
    
    type BindingAccessor interface {
    	GetName() string
    	GetNamespace() string
    
    	// GetPolicyName returns the name of the (Validating/Mutating)AdmissionPolicy,
    	// which is cluster-scoped, so namespace is usually left blank.
    	// But we leave the door open to add a namespaced vesion in the future
    	GetPolicyName() types.NamespacedName
    	GetParamRef() *v1.ParamRef
    
    	GetMatchResources() *v1.MatchResources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/testdata/versions/test.go

    //
    // Make sure this source is extended such that it exercises
    // whatever export format change has taken place.
    
    package test
    
    // Any release before and including Go 1.7 didn't encode
    // the package for a blank struct field.
    type BlankField struct {
    	_ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 13 04:39:18 UTC 2018
    - 918 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/verbose/VerboseConsoleVerboseRenderingFunctionalTest.groovy

    class VerboseConsoleVerboseRenderingFunctionalTest extends AbstractConsoleVerboseRenderingFunctionalTest {
        ConsoleOutput consoleType = Verbose
    
        @SuppressWarnings("IntegrationTestFixtures")
        def 'verbose task header has no blank line above it'() {
            given:
            buildFile << '''
    task upToDate{
        outputs.upToDateWhen {true}
        doLast {}
    }
    '''
    
            when:
            succeeds('upToDate')
            succeeds('upToDate')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top