Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PrintValue (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                ${serviceTaskImpl("printValue", injectionAnnotation, propertyType, valueGetter, taskConfiguration)}
            """)
    
            when:
            configurationCacheRun("printValue")
    
            then:
            // Note that load-after-store doesn't check build fingerprint
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun("printValue")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. src/fmt/print.go

    			// interface methods that could be used for formatting.
    			p.printValue(reflect.ValueOf(f), verb, 0)
    		}
    	}
    }
    
    // printValue is similar to printArg but starts with a reflect value, not an interface{} value.
    // It does not handle 'p' and 'T' verbs because these should have been already handled by printArg.
    func (p *pp) printValue(value reflect.Value, verb rune, depth int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

                            setNonSerializableSupplier(() -> getName().length());
                        }
    
                        @TaskAction
                        void printValue() {
                            System.out.println("this.serializableSupplier.get() -> " + this.serializableSupplier.get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

                              // (e.g. a named or unnamed enum type)
      kOtherType              // anything else
    };
    
    // TypeWithoutFormatter<T, kTypeKind>::PrintValue(value, os) is called
    // by the universal printer to print a value of type T when neither
    // operator<< nor PrintTo() is defined for T, where kTypeKind is the
    // "kind" of T as defined by enum TypeKind.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

                              // (e.g. a named or unnamed enum type)
      kOtherType              // anything else
    };
    
    // TypeWithoutFormatter<T, kTypeKind>::PrintValue(value, os) is called
    // by the universal printer to print a value of type T when neither
    // operator<< nor PrintTo() is defined for T, where kTypeKind is the
    // "kind" of T as defined by enum TypeKind.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. src/text/template/exec.go

    	if v.Kind() != reflect.Interface {
    		return v
    	}
    	if v.IsNil() {
    		return reflect.Value{}
    	}
    	return v.Elem()
    }
    
    // printValue writes the textual representation of the value to the output of
    // the template.
    func (s *state) printValue(n parse.Node, v reflect.Value) {
    	s.at(n)
    	iface, ok := printableValue(v)
    	if !ok {
    		s.errorf("can't print %s of type %s", n, v.Type())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                abstract class PrintValueTask extends DefaultTask {
    
                    @Input
                    abstract Property<String> getValue();
    
                    @TaskAction
                    void printValue() {
                        println("*" + value.get() + "*")
                    }
                }
    
                def chain = providers
                    .systemProperty("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top