Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for entry_point (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            TaskInternal entryPoint = task("entryPoint", type: Async, finalizedBy: [finalizer])
            relationships(finalizer, dependsOn: [finalizerDep, entryPoint])
    
            when:
            addToGraphAndPopulate(entryPoint)
    
            then:
            executionPlan.tasks as List == [entryPoint, finalizerDep, finalizer]
            assertTaskReady(entryPoint)
            assertTaskReady(finalizerDep)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	eyecatcherOffset   = 16                 // From function entrypoint (negative)
    	ppa1LocationOffset = 8                  // From function entrypoint (negative)
    
    	nameLenOffset = 0x14 // From PPA1 start
    	nameOffset    = 0x16 // From PPA1 start
    )
    
    func getPpaOffset(funcptr uintptr) int64 {
    	entrypoint, err := safeload(funcptr + entrypointLocationOffset)
    	if err != 0 {
    		return -1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    	// TODO(bradfitz): just use all directories?
    	dirs = []string{".", "ken", "chan", "interface", "syntax", "dwarf", "fixedbugs", "codegen", "runtime", "abi", "typeparam", "typeparam/mdempsky", "arenas"}
    )
    
    // Test is the main entrypoint that runs tests in the GOROOT/test directory.
    //
    // Each .go file test case in GOROOT/test is registered as a subtest with a
    // a full name like "Test/fixedbugs/bug000.go" ('/'-separated relative path).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    			jn := configs[j].Namespace + "/" + configs[j].Name
    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top