Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,365 for blockn (0.35 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                is KtStringTemplateEntry ->
                    parent.expression == child
    
                // Catch blocks are used if the parent-try uses the catch block
                is KtCatchClause ->
                    doesParentUseChild(parent.parent, parent)
    
                // Finally blocks are never used
                is KtFinallySection ->
                    false
    
                is KtPropertyDelegate ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/printer/gobuild.go

    		block = append(block, "//go:build "...)
    		block = append(block, x.String()...)
    		block = append(block, tabwriter.Escape, '\n')
    		if len(p.plusBuild) > 0 {
    			lines, err := constraint.PlusBuildLines(x)
    			if err != nil {
    				lines = []string{"// +build error: " + err.Error()}
    			}
    			for _, line := range lines {
    				block = append(block, tabwriter.Escape)
    				block = append(block, line...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

                operation.failure {
                    thread.blockUntil.running
                    thread.block()
                    lifecycle.use {}
                }
            }
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot use [service] as it is currently stopping.'
        }
    
        def "stop() blocks while service is in use"() {
            when:
            async {
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1.go

    	Distribution []int `json:"distribution"`
    	// Checksums holds all bitrot checksums of all erasure encoded blocks
    	Checksums []ChecksumInfo `json:"checksum,omitempty"`
    }
    
    // Equal equates current erasure info with newer erasure info.
    // returns false if one of the following check fails
    // - erasure algorithm is different
    // - data blocks are different
    // - parity blocks are different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top