Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for PrintValue (0.21 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/tests-groovy/environmentVariablesGroovy.sample.conf

    executable: gradle
    args: printValue
    flags: "--quiet --stacktrace -I init.gradle -Dorg.gradle.sampletest.env.ENVIRONMENTAL=environmentalValue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/environmentVariables/tests-kotlin/environmentVariablesKotlin.sample.conf

    executable: gradle
    args: printValue
    flags: "--quiet --stacktrace -I init.gradle.kts -Dorg.gradle.sampletest.env.ENVIRONMENTAL=environmentalValue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 193 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/ModelDslRuleDetectionIntegrationSpec.groovy

                    @Model
                    void a(A a) { }
    
                    @Mutate
                    void addTask(ModelMap<Task> tasks, @Path("$normalisedPath") Item item) {
                        tasks.create("printValue") {
                            it.doLast {
                                println "value: " + item.value
                            }
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/snippets/tutorial/projectProperties/tests-kotlin/projectPropertiesKotlin.sample.conf

    executable: gradle
    args: printValue
    flags: "--quiet --stacktrace -Dorg.gradle.project.myProjectProp=systemPropertyValue"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 165 bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                        private static final AtomicInteger value = new AtomicInteger();
    
                        private final String projectName = getProject().getName();
    
                        @TaskAction
                        void printValue() {
                            // When ClassLoaders are reused
                            // the 1st run should print `<project name>.value = 1`
                            // the 2nd run should print `<project name>.value = 2`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top