Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 110 for value6 (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

      // visit the members of FooTest via 'this'.
      TypeParam n = this->value_;
    
      // To visit static members of the fixture, add the TestFixture::
      // prefix.
      n += TestFixture::shared_;
    
      // To refer to typedefs in the fixture, add the "typename
      // TestFixture::" prefix.
      typename TestFixture::List values;
      values.push_back(n);
      ...
    }
    
    TYPED_TEST(FooTest, HasPropertyA) { ... }
    
    #endif  // 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/mime/multipart/multipart_test.go

    func testMultipartBody(sep string) string {
    	testBody := `
    This is a multi-part message.  This line is ignored.
    --MyBoundary
    Header1: value1
    HEADER2: value2
    foo-bar: baz
    
    My value
    The end.
    --MyBoundary
    name: bigsection
    
    [longline]
    --MyBoundary
    Header1: value1b
    HEADER2: value2b
    foo-bar: bazb
    
    Line 1
    Line 2
    Line 3 ends in a newline, but just one.
    
    --MyBoundary
    
    never read data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      %index1 = "tfl.pseudo_const"() {value = dense<[0, 1, 0]> : tensor<3xi32>} : () -> tensor<3xi32>
      %value0 = "tfl.pseudo_const"() {value = dense<[[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]> : tensor<3x2xf32>} : () -> tensor<3x2xf32>
      %value1 = "tfl.pseudo_const"() {value = dense<[[[1.0, 2.0], [3.0, 4.0]], [[5.0, 6.0], [7.0, 8.0]]]> : tensor<2x2x2xf32>} : () -> tensor<2x2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers_test.go

    			Name:      "no taint changed",
    			Changed:   false,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value"}},
    			NewTaints: []v1.Taint{{Key: "key", Value: "value"}},
    		},
    		{
    			Name:      "taint value changed",
    			Changed:   true,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value1"}},
    			NewTaints: []v1.Taint{{Key: "key", Value: "value2"}},
    		},
    	} {
    		t.Run(test.Name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            options.systemProperties = [key: 12, key2: "value", key3: null]
    
            then:
            options.systemProperties == [key: 12, key2: "value", key3: null]
        }
    
        def "can add system properties"() {
            when:
            options.systemProperties(key: 12)
            options.systemProperty('key2', 'value2')
    
            then:
            options.systemProperties == [key: 12, key2: 'value2']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            public void setObjectValue(Object value) {
            }
    
            @Option(option = "booleanValue", description = "boolean value")
            public void setBooleanValue(boolean value) {
            }
    
            @Option(option = "enumValue", description = "enum value")
            public void setEnumValue(TestEnum value) {
            }
    
            @Option(option = "integerValue", description = "integer value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
Back to top