Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 579 for chains (0.14 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

        // TODO: This exists because we detect all available native tool chains on a system (clang, gcc, swiftc, msvc).
        //
        // Many of our old tests assume that available tool chains can compile many/most languages, so they do not try to
        // restrict the required set of tool chains.
        //
        // The swiftc tool chain can build _only_ Swift, so tests that expect to use the swiftc tool chain properly annotate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. releasenotes/notes/trim-certificate-chain.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 175 bytes
    - Viewed (0)
  3. releasenotes/notes/fix-default-filter-chain.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue: []
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 09 11:48:47 UTC 2020
    - 186 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/testdata/stackcheck/main.s

    TEXT ·startSelf(SB),NOSPLIT,$1000-0
    	RET
    
    // Test reporting of multiple over-the-limit chains
    TEXT ·startChain(SB),NOSPLIT,$16-0
    	CALL ·chain0(SB)
    	CALL ·chain1(SB)
    	CALL ·chain2(SB)
    	RET
    TEXT ·chain0(SB),NOSPLIT,$32-0
    	CALL ·chainEnd(SB)
    	RET
    TEXT ·chain1(SB),NOSPLIT,$48-0 // Doesn't go over
    	RET
    TEXT ·chain2(SB),NOSPLIT,$64-0
    	CALL ·chainEnd(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 21:35:26 UTC 2023
    - 950 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/settings.gradle

    rootProject.name = 'tool-chains'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listenertest/match.go

    	// present.
    	TotalMatch bool
    }
    
    type FilterChainTest struct {
    	// Match a filter chain by name
    	Name string
    	// Match filter chain by 'type'. This can be important since Name is currently not unique
    	Type FilterChainType
    	// Port the filter chain matches
    	Port uint32
    
    	NetworkFilters []string
    	HTTPFilters    []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. test/README.md

    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/side_effects.mlir

    // RUN: tf-tfrt-opt -tf-to-tfrt %s | FileCheck %s --dump-input=fail
    
    // CHECK-LABEL: func @assign_variable
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain) -> !tfrt.chain
    func.func @assign_variable() {
      // CHECK: [[ch1:%.*]], %results = tfrt_fallback_async.executeop.seq([[in_chain]]) key(0) cost({{.*}}) device("/device:CPU:0") "tf.VarHandleOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1008 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistryTest.groovy

            then:
            GradleException e = thrown()
            e.message == toPlatformLineSeparators("""No tool chain is available to build for platform 'platform':
      - Tool chain 'test': nope
      - Tool chain 'test2': not me
      - Tool chain 'test3': not me either""")
        }
    
        def "provides unavailable tool chain when no tool chain available for requested source language and target platform"() {
            unavailableToolChain("test", "nope")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftMissingToolchainIntegrationTest.groovy

            fails("assemble")
    
            then:
            failure.assertHasDescription("Execution failed for task ':compileDebugSwift'.")
            failure.assertHasCause("""No tool chain is available to build Swift for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'swiftc' (Swift Compiler):
          - Could not find Swift compiler 'swiftc'. Searched in:
              - ${file('swift-bin')}""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top