Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for value6 (0.16 sec)

  1. src/fmt/scan.go

    func (s *ss) hexByte() (b byte, ok bool) {
    	rune1 := s.getRune()
    	if rune1 == eof {
    		return
    	}
    	value1, ok := hexDigit(rune1)
    	if !ok {
    		s.UnreadRune()
    		return
    	}
    	value2, ok := hexDigit(s.mustReadRune())
    	if !ok {
    		s.errorString("illegal hex digit")
    		return
    	}
    	return byte(value1<<4 | value2), true
    }
    
    // hexString returns the space-delimited hexpair-encoded string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. src/fmt/doc.go

    are simpler.
    
    # Printing
    
    The verbs:
    
    General:
    
    	%v	the value in a default format
    		when printing structs, the plus flag (%+v) adds field names
    	%#v	a Go-syntax representation of the value
    		(floating-point infinities and NaNs print as ±Inf and NaN)
    	%T	a Go-syntax representation of the type of the value
    	%%	a literal percent sign; consumes no value
    
    Boolean:
    
    	%t	the word true or false
    
    Integer:
    
    	%b	base 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//  }
    	NoNewVar
    
    	// MultiValAssignOp occurs when an assignment operation (+=, *=, etc) does
    	// not have single-valued left-hand or right-hand side.
    	//
    	// Per the spec:
    	//  "In assignment operations, both the left- and right-hand expression lists
    	//  must contain exactly one single-valued expression"
    	//
    	// Example:
    	//  func f() int {
    	//  	x, y := 1, 2
    	//  	x, y += 1
    	//  	return x + y
    	//  }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'Map'      | '<String,Integer>' | 'Collections.singletonMap("a", Integer.valueOf(1))'                 | 'java.lang.Integer'
            'Provider' | '<Boolean>'        | 'getProject().getProviders().provider(() -> Boolean.valueOf(true))' | 'java.lang.Boolean'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23049")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. internal/bucket/replication/replication_test.go

    		<And><Prefix>key-prefix</Prefix><Tag><Key>key1</Key><Value>value1</Value></Tag><Tag><Key>key2</Key><Value>value2</Value></Tag></And></Filter><Destination><Bucket>arn:aws:s3:::destinationbucket</Bucket></Destination></Rule></ReplicationConfiguration>`,
    			prefix:         "testdir/",
    			expectedNonRec: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            when:
            property.getOrNull()
    
            then:
            def e2 = thrown(IllegalArgumentException)
            e2.message == 'Cannot get the value of a property of type java.lang.Boolean as the provider associated with this property returned a value of type java.lang.Integer.'
        }
    
        def "fails when convention is set using incompatible value"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/provision_test.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	pvtesting "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/testing"
    )
    
    var class1Parameters = map[string]string{
    	"param1": "value1",
    }
    var class2Parameters = map[string]string{
    	"param2": "value2",
    }
    var deleteReclaimPolicy = v1.PersistentVolumeReclaimDelete
    var modeImmediate = storage.VolumeBindingImmediate
    var storageClasses = []*storage.StorageClass{
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. src/text/template/doc.go

    		Y is a func-valued field, map entry, or the like.
    		The first argument must be the result of an evaluation
    		that yields a value of function type (as distinct from
    		a predefined function such as print). The function must
    		return either one or two result values, the second of which
    		is of type error. If the arguments don't match the function
    		or the returned error value is non-nil, execution stops.
    	html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/go/types/call.go

    				// x is a function call returning multiple values; it cannot be generic.
    				resList = make([]*operand, t.Len())
    				for i, v := range t.vars {
    					resList[i] = &operand{mode: value, expr: e, typ: v.typ}
    				}
    			} else {
    				// x is exactly one value (possibly invalid or uninstantiated generic function).
    				resList = []*operand{&x}
    			}
    		}
    	} else if n > 1 {
    		// multiple values
    		resList = make([]*operand, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/storage_test.go

    	_, err = bindingStorage.Create(ctx, "foo", &api.Binding{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace:   metav1.NamespaceDefault,
    			Name:        "foo",
    			Annotations: map[string]string{"label1": "value1"},
    		},
    		Target: api.ObjectReference{Name: "machine"},
    	}, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top