Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,033 for blockn (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

      }) {n = 2 : i32, operandSegmentSizes = array<i32: 0, 0>} : () -> ()
      func.return
    }
    
    // -----
    
    // Check that an empty replicate block is invalid.
    func.func @verifier_replicate_empty_block() {
      "tf_device.replicate" () ({
    // expected-error@-1 {{'tf_device.replicate' op expects a non-empty block}}
      ^entry:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

      // The data must consist only of PEM certificate blocks that parse as valid
      // X.509 certificates.  Each certificate must include a basic constraints
      // extension with the CA bit set.  The API server will reject objects that
      // contain duplicate certificates, or that use PEM block headers.
      //
      // Users of ClusterTrustBundles, including Kubelet, are free to reorder and
      // deduplicate certificate blocks in this file according to their own logic,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultPhasedBuildActionExecuterTest.groovy

            instant.resultAvailable < instant.resultReceived
        }
    
        def "run() blocks until result is available"() {
            given:
            asyncConnection.run(!null, !null) >> { def consumerAction, ResultHandlerVersion1 adaptedHandler ->
                start {
                    thread.block()
                    instant.resultAvailable
                    adaptedHandler.onComplete(null)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation.go

    	if len(pemData) == 0 {
    		return nil
    	}
    
    	blocks := 0
    	for {
    		block, remainingData := pem.Decode(pemData)
    		if block == nil {
    			break
    		}
    
    		if block.Type != utilcert.CertificateBlockType {
    			return fmt.Errorf("only CERTIFICATE PEM blocks are allowed, found %q", block.Type)
    		}
    		if len(block.Headers) != 0 {
    			return fmt.Errorf("no PEM block headers are permitted")
    		}
    		blocks++
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8_amd64.s

    #define SEED(off, reg, XR) \
    	MOVL (4*off)(AX), reg; \
    	REPLREG(reg, XR) \
    
    // block runs 4 ChaCha8 block transformations in the four stripes of the X registers.
    
    // func block(seed *[8]uint32, blocks *[16][4]uint32, counter uint32)
    TEXT ยทblock<ABIInternal>(SB), NOSPLIT, $16
    	// seed in AX
    	// blocks in BX
    	// counter in CX
    
    	// Load initial constants into top row.
    	REPL(0x61707865, X0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

        }
    
        def 'supports correct order of blocks in setttings file if there is #order'() {
            given:
            file("settings.gradle.dcl") << content
    
            expect:
            succeeds(":projects")
            outputContains("Root project 'test-project'")
    
            where:
            order                                     | content
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

        // We recur into these nested blocks to raise those as well. We don't raise
        // "CPU" ops who are themselves nested within a "CPU" op, so set
        // `skip_cpu` to true.
        if (device_is(device, kCpuDeviceName)) {
          for (auto& block : ops_added.func_op->getRegion(0).getBlocks())
            for (auto& op : block) {
              auto op_device = GetInferenceDeviceTypeForOp(&op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputReaderTest.groovy

        def userInputReader = new DefaultUserInputReader()
    
        def "blocks until user response received"() {
            expect:
            async {
                start {
                    def result = userInputReader.readInput()
                    instant.read
                    assert result == response
                }
                thread.block()
                instant.put
                userInputReader.putInput(response)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/internal/scan/config/fixtures/ApplyDevelocityPluginFixtureTest.groovy

            file.text =="""plugins {
                |    id("com.gradle.develocity") version("${VERSION}")
                |}
                |
                |includeBuild '../lib'""".stripMargin()
        }
    
        def "plugin management block blocks"() {
            given:
            File file = File.createTempFile("test_script", ".tmp")
            file.write("""pluginManagement {
                |    repositories {
                |        gradlePluginPortal()
                |    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      // The data must consist only of PEM certificate blocks that parse as valid
      // X.509 certificates.  Each certificate must include a basic constraints
      // extension with the CA bit set.  The API server will reject objects that
      // contain duplicate certificates, or that use PEM block headers.
      //
      // Users of ClusterTrustBundles, including Kubelet, are free to reorder and
      // deduplicate certificate blocks in this file according to their own logic,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top