Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,507 for Lach (0.21 sec)

  1. 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)
  2. 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)
  3. src/cmd/link/internal/ld/macho.go

    	BIND_SUBOPCODE_THREADED_SET_BIND_ORDINAL_TABLE_SIZE_ULEB = 0x00
    	BIND_SUBOPCODE_THREADED_APPLY                            = 0x01
    )
    
    const machoHeaderSize64 = 8 * 4 // size of 64-bit Mach-O header
    
    // Mach-O file writing
    // https://developer.apple.com/mac/library/DOCUMENTATION/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html
    
    var machohdr MachoHdr
    
    var load []MachoLoad
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            0 * _
        }
    
        def testCanScanForFiles() {
            File included1 = new File(testDir, 'subDir/included1')
            File included2 = new File(testDir, 'subDir2/included2')
            [included1, included2].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            when:
            def files = fileTree.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

                        }
                    }
                }
            }
            if (componentLevelAttributes) {
                componentLevelAttributes.each { key, value ->
                    module.attributes[key] = value
                }
            }
            if (variants) {
                variants.each { variant ->
                    module.withVariant(variant.name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                artifact([:])
            }
    
            artifacts.each { artifact ->
                def artifactFile = file(artifact)
                publish(artifactFile) { Writer writer ->
                    writer << "${artifactFile.name} : $artifactContent"
                }
            }
    
            variants.each {
                it.artifacts.findAll { it.name }.each {
                    def variantArtifact = moduleDir.file(it.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

            "align the 'org' group only"()
    
            when:
            repositoryInteractions {
                group('org') {
                    ['webapp', 'xml', 'other'].each { mod ->
                        module(mod) {
                            ['1.0', '2.0'].each { v ->
                                version(v) {
                                    allowAll()
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
         *     With a deep and wide hierarchy, each subproject is formed as above, except each group of libraries depend on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/initorder.go

    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    		// and drop the function node (don't collect it in G)
    		for p := range n.pred {
    			// ignore self-cycles
    			if p != n {
    				// Each successor s of n becomes a successor of p, and
    				// each predecessor p of n becomes a predecessor of s.
    				for s := range n.succ {
    					// ignore self-cycles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/initorder.go

    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    		// and drop the function node (don't collect it in G)
    		for p := range n.pred {
    			// ignore self-cycles
    			if p != n {
    				// Each successor s of n becomes a successor of p, and
    				// each predecessor p of n becomes a predecessor of s.
    				for s := range n.succ {
    					// ignore self-cycles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top