Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for broken1 (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            }
    
            @Override
            void expectGetStatus(HttpModule module, String status = 'release', boolean broken = false) {
                def path = pathOf(module)
                statusFiles[path.replace('/', ':')] = expectGetStatusOf(path, status, broken)
            }
    
            private String pathOf(HttpModule module) {
                if (module instanceof IvyHttpModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task broken = task("broken", finalizedBy: [finalizer], failure: new RuntimeException())
            Task task = task("task", dependsOn: [broken])
    
            when:
            executionPlan.setContinueOnFailure(continueOnFailure)
            addToGraphAndPopulate(task)
    
            then:
            executionPlan.tasks as List == [broken, finalizerDepDep, finalizerDep, finalizer, task]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            when:
            configurationCacheFails 'broken'
    
            then:
            def reportDir1 = reportDir()
            reportDir1?.isDirectory()
    
            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir2 = reportDir()
            reportDir2?.isDirectory()
            reportDir2 != reportDir1
    
            when:
            configurationCacheFails 'broken'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. docs/bucket/notifications/README.md

    ```
    KEY:
    notify_kafka[:name]  publish bucket notifications to Kafka endpoints
    
    ARGS:
    brokers*         (csv)       comma separated list of Kafka broker addresses
    topic            (string)    Kafka topic used for bucket notifications
    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    maxParallelUsages = 1
                }
    
                task broken(type: Consumer) {
                    // reference will be set by name
                }
            """
            enableStableConfigurationCache()
            executer.expectDocumentedDeprecationWarning(
                "Build service 'counter' is being used by task ':broken' without the corresponding declaration via 'Task#usesService'. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	"windows/arm64":   true,
    }
    
    // List of platforms that are marked as broken ports.
    // These require -force flag to build, and also
    // get filtered out of cgoEnabled for 'dist list'.
    // See go.dev/issue/56679.
    var broken = map[string]bool{
    	"linux/sparc64":  true, // An incomplete port. See CL 132155.
    	"openbsd/mips64": true, // Broken: go.dev/issue/58110.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The mode defines the action the controller will take when a pod is detected as broken.
      // If labelPods is true, the controller will label all broken pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
      // This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		// tests for broken code that doesn't type-check
    		{broken + `x0; func _() { var x struct {f string}; x.f := 0 }`, `x.f`, `string`},
    		{broken + `x1; func _() { var z string; type x struct {f string}; y := &x{q: z}}`, `z`, `string`},
    		{broken + `x2; func _() { var a, b string; type x struct {f string}; z := &x{f: a, f: b,}}`, `b`, `string`},
    		{broken + `x3; var x = panic("");`, `panic`, `func(interface{})`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://host/\ufffd").encodedPath).isEqualTo("/%EF%BF%BD")
      }
    
      @Test
      fun usernameCharacters() {
        if (!isJvm) return // TODO: this test is broken on non-JVM platforms.
        UrlComponentEncodingTester.newInstance()
          .override(
            Encoding.PERCENT,
            '['.code,
            ']'.code,
            '{'.code,
            '}'.code,
            '|'.code,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. tests/integration/security/authz_test.go

    							jwt:    "",
    							path:   "/token1",
    							allow:  false,
    						},
    						{
    							prefix: "[No JWT]",
    							jwt:    "",
    							path:   "/token2",
    							allow:  false,
    						},
    						{
    							prefix: "[Token1]",
    							jwt:    jwt.TokenIssuer1, path: "/token1", allow: true,
    						},
    						{
    							prefix: "[Token1]",
    							jwt:    jwt.TokenIssuer1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top