Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 337 for broken2 (0.1 sec)

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

            failure.assertHasCause("Could not GET '${mavenHttpRepo.uri.toString()}/${group}/${module}/maven-metadata.xml'. Received status code 500 from server: broken")
        }
    
        private void assertDependencyListingUnauthorizedError(String group, String module, String version) {
            failure.assertHasCause("Could not resolve ${group}:${module}:${version}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

                public class Bar implements Serializable {
                    private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException {
                        throw new IOException("Broken");
                    }
                }
            """
        }
    
        String getClassThatFailsSerialization() {
            return """
                package org.gradle.other;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  3. pkg/scheduler/metrics/metrics.go

    		&metrics.GaugeOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "unschedulable_pods",
    			Help:           "The number of unschedulable pods broken down by plugin name. A pod will increment the gauge for all plugins that caused it to not schedule and so this metric have meaning only when broken down by plugin.",
    			StabilityLevel: metrics.ALPHA,
    		}, []string{"plugin", "profile"})
    
    	PluginEvaluationTotal = metrics.NewCounterVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. internal/config/notify/parse.go

    			return nil, err
    		}
    		if !enabled {
    			continue
    		}
    		var brokers []xnet.Host
    		brokersEnv := target.EnvKafkaBrokers
    		if k != config.Default {
    			brokersEnv = brokersEnv + config.Default + k
    		}
    		kafkaBrokers := env.Get(brokersEnv, kv.Get(target.KafkaBrokers))
    		if len(kafkaBrokers) == 0 {
    			return nil, config.Errorf("kafka 'brokers' cannot be empty")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            when:
            server.resetExpectations()
    
            then:
            executer.withArguments("-PaddRepo2")
            checkResolve "group:projectA:1.+": "group:projectA:1.2"
        }
    
        def "fails on broken directory listing in subsequent resolution"() {
            def repo1 = ivyHttpRepo("repo1")
            def repo2 = ivyHttpRepo("repo2")
    
            given:
            useRepository repo1, repo2
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *
     * <p>The value itself might be "missing", which means there is no value available, or "broken", which means the calculation failed with some exception, or some object.
     * Behavior for broken values is currently provider implementation specific. Some implementations collect the failure and rethrow it each time the value is queried, and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

            buildFile << "apply plugin: 'swift-library'"
            lib.main.writeToSourceDir(file("Sources"))
            lib.test.writeToSourceDir(file("Tests"))
            file("src/main/swift/broken.swift") << "ignore me!"
            file("src/test/swift/broken.swift") << "ignore me!"
    
            and:
            buildFile << """
                library {
                    source.from 'Sources'
                }
                xctest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                class Rules extends RuleSource {
                  @Model
                  void people(ModelMap<Person> people) {
                    people.create("foo") {
                        throw new RuntimeException("broken")
                    }
                  }
    
                  @Mutate
                  void tasks(ModelMap<Task> tasks, ModelMap<Person> people) { }
                }
    
                apply type: Rules
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            result2.value.result.serializedModel.size() == 1
            result2.value.failure == null
            result2.value.exception == null
    
            def buildFailed = BuildActionResult.failed(new RuntimeException("broken"))
            def message3 = new Success(buildFailed)
            def result3 = serialize(message3, serializer)
            result3 instanceof Success
            result3.value instanceof BuildActionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/os/pipe_test.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test broken pipes on Unix systems.
    //
    //go:build !plan9 && !js && !wasip1
    
    package os_test
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"os/signal"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top