Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,609 for Lach (0.04 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		if err != nil {
    			return nil, fmt.Errorf("error reading Mach-O file %s: %v", name, err)
    		}
    		return f, nil
    	}
    	if machoMagicLittle == macho.MagicFat || machoMagicBig == macho.MagicFat {
    		f, err := b.openFatMachO(name, start, limit, offset)
    		if err != nil {
    			return nil, fmt.Errorf("error reading fat Mach-O file %s: %v", name, err)
    		}
    		return f, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/EqualsTester.java

     * </pre>
     *
     * <p>This tests:
     *
     * <ul>
     *   <li>comparing each object against itself returns true
     *   <li>comparing each object against null returns false
     *   <li>comparing each object against an instance of an incompatible class returns false
     *   <li>comparing each pair of objects within the same equality group returns true
     *   <li>comparing each pair of objects from different equality groups returns false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            buildFile << """
                task verifyBinariesSwiftVersion {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
                            assert it.targetPlatform.sourceCompatibility.version == ${expectedVersion}
                        }
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

            """
    
            when:
            // Wait for each project to list versions concurrently
            httpServer.expectConcurrent("A", "B", "C", "D")
            // Only one project should clone
            repo.expectListVersions()
            repo.expectCloneSomething()
    
            then:
            succeeds('resolve', '--parallel', '--max-workers=4')
    
            when:
            // Wait for each project to list versions concurrently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/check/checkers.go

    	return Each(func(r echoClient.Response) error {
    		return requestHeader(r, key, expected)
    	})
    }
    
    func ResponseHeader(key, expected string) echo.Checker {
    	return Each(func(r echoClient.Response) error {
    		return responseHeader(r, key, expected)
    	})
    }
    
    func RequestHeaders(expected map[string]string) echo.Checker {
    	return Each(func(r echoClient.Response) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DependencyTree.groovy

            parentToChildClassIds.get(parentClassId).each {
                allVisibleChildClassIds(it, result)
            }
            return result
        }
    
        private allVisibleChildClassIds(int parentClassId, List<Integer> result) {
            def directChildrenIds = parentToChildClassIds.get(parentClassId)
            if (directChildrenIds && !directChildrenIds.isEmpty()) {
                directChildrenIds.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

     * </pre>
     *
     * <p>This tests:
     *
     * <ul>
     *   <li>comparing each object against itself returns true
     *   <li>comparing each object against null returns false
     *   <li>comparing each object against an instance of an incompatible class returns false
     *   <li>comparing each pair of objects within the same equality group returns true
     *   <li>comparing each pair of objects from different equality groups returns false
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    				Help:           "Admission sub-step latency summary in seconds, broken out for each operation and API resource and step type (validate or admit).",
    				MaxAge:         latencySummaryMaxAge,
    				StabilityLevel: metrics.ALPHA,
    			},
    			[]string{"type", "operation", "rejected"},
    		),
    	}
    
    	// Built-in admission controller metrics. Each admission controller is identified by name.
    	// Use buckets ranging from 5 ms to 2.5 seconds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace tf_test {
    namespace {
    
    // A pass that annotates each operation with a resource type result with the
    // aliasing values for each such result. Each value is assigned a unique ID, and
    // that ID is used to annotate the operations.
    struct TestResourceAliasAnalysis
        : public TF::PerFunctionAggregateAnalysisConsumerPass<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. src/internal/bytealg/count_s390x.s

    	// Note: only the low 32-bits of R_LEN are used for the index.
    	VLL R_LEN, (R_PTR), V_VAL
    	VLL R_LEN, (R_MPTR), V_MASK
    
    	// Compare each byte in input chunk against byte to be counted.
    	// Each byte element will be set to either 0 (no match) or 1 (match).
    	VCEQB V_CHAR, V_VAL, V_VAL // each byte will be either 0xff or 0x00
    	VN    V_MASK, V_VAL, V_VAL // mask out most significant 7 bits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
Back to top