Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 189 for Inits (0.06 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * among the other work units of the same type in the current build.
         */
        Identity identify(Map<String, ValueSnapshot> identityInputs, Map<String, CurrentFileCollectionFingerprint> identityFileInputs);
    
        interface Identity {
            /**
             * The identity of the work unit that uniquely identifies it
             * among the other work units of the same type in the current build.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // allow you to define the test pattern without knowing what the type
    // parameters are.  The defined pattern can be instantiated with
    // different types any number of times, in any number of translation
    // units.
    //
    // If you are designing an interface or concept, you can define a
    // suite of type-parameterized tests to verify properties that any
    // valid implementation of the interface/concept should have.  Then,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            baselineResults.results.addAll(rawResults.collect {
                new MeasuredOperation([totalTime: Amount.valueOf(it.totalTime.value + shift, it.totalTime.units), exception: it.exception])
            })
            return baselineResults
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/runtime/metrics/description.go

    	// codepoint that is not a delimiter.
    	// Examples of units might be "seconds", "bytes", "bytes/second", "cpu-seconds",
    	// "byte*cpu-seconds", and "bytes/second/second".
    	//
    	// For histograms, multiple units may apply. For instance, the units of the buckets and
    	// the count. By convention, for histograms, the units of the count are always "samples"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

                }
    
                @Override
                public void progress(BuildOperationDescriptor descriptor, long progress, long total, String units, String status) {
                    LOGGER.info("Progress: {} ({} / {} {} - {})", descriptor.getDisplayName(), progress, total, units, status);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // allow you to define the test pattern without knowing what the type
    // parameters are.  The defined pattern can be instantiated with
    // different types any number of times, in any number of translation
    // units.
    //
    // If you are designing an interface or concept, you can define a
    // suite of type-parameterized tests to verify properties that any
    // valid implementation of the interface/concept should have.  Then,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/debug/dwarf/typeunit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dwarf
    
    import (
    	"fmt"
    	"strconv"
    )
    
    // Parse the type units stored in a DWARF4 .debug_types section. Each
    // type unit defines a single primary type and an 8-byte signature.
    // Other sections may then use formRefSig8 to refer to the type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		putDelimitedString(l)
    		values := sample.NumLabel[l]
    		putNumber(uint64(len(values)))
    		for _, v := range values {
    			putNumber(uint64(v))
    		}
    		units := sample.NumUnit[l]
    		putNumber(uint64(len(units)))
    		for _, v := range units {
    			putDelimitedString(v)
    		}
    	}
    
    	return sampleKey(buf.String())
    }
    
    type sampleKey string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/iexport.go

    // index table, which allows efficient random access of individual
    // declarations and inline function bodies. In turn, this allows
    // avoiding unnecessary work for compilation units that import large
    // packages.
    //
    //
    // The top-level data format is structured as:
    //
    //     Header struct {
    //         Tag        byte   // 'i'
    //         Version    uvarint
    //         StringSize uvarint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	Error   *apiservercel.Error
    	// If true, the compiled expression contains a reference to the identifier "oldSelf".
    	UsesOldSelf bool
    	// Represents the worst-case cost of the compiled expression in terms of CEL's cost units, as used by cel.EstimateCost.
    	MaxCost uint64
    	// MaxCardinality represents the worse case number of times this validation rule could be invoked if contained under an
    	// unbounded map or list in an OpenAPIv3 schema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top