Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for broken2 (0.26 sec)

  1. src/runtime/netpoll_stub.go

    var netpollBrokenLock mutex
    var netpollBroken bool
    
    func netpollGenericInit() {
    	netpollInited.Store(1)
    }
    
    func netpollBreak() {
    	lock(&netpollBrokenLock)
    	broken := netpollBroken
    	netpollBroken = true
    	if !broken {
    		notewakeup(&netpollNote)
    	}
    	unlock(&netpollBrokenLock)
    }
    
    // Polls for ready network connections.
    // Returns list of goroutines that become runnable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_embed.txt

    embedded file of xtest in subdirectory of package
    -- broken_no_matching_files/go.mod --
    module example.com/broken
    go 1.16
    
    require (
    	example.com/brokendep v0.1.0
    )
    
    replace (
    	example.com/brokendep v0.1.0 => ./brokendep
    )
    -- broken_no_matching_files/f.go --
    package broken
    
    import _ "example.com/brokendep"
    
    func F() {}
    -- broken_no_matching_files/brokendep/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/metrics.go

    	)
    
    	requestLatency = compbasemetrics.NewHistogramVec(
    		&compbasemetrics.HistogramOpts{
    			Name:           "apiserver_delegated_authz_request_duration_seconds",
    			Help:           "Request latency in seconds. Broken down by status code.",
    			Buckets:        []float64{0.25, 0.5, 0.7, 1, 1.5, 3, 5, 10},
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"code"},
    	)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. cni/pkg/constants/constants.go

    	RepairDeletePods         = "repair-delete-pods"
    	RepairRepairPods         = "repair-repair-pods"
    	RepairLabelPods          = "repair-label-pods"
    	RepairLabelKey           = "repair-broken-pod-label-key"
    	RepairLabelValue         = "repair-broken-pod-label-value"
    	RepairNodeName           = "repair-node-name"
    	RepairSidecarAnnotation  = "repair-sidecar-annotation"
    	RepairInitContainerName  = "repair-init-container-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginEndOfBuildCallbackIntegrationTest.groovy

            then:
            plugin.assertEndOfBuildWithFailure(output, null)
            failure.assertHasDescription("broken")
    
            when:
            fails succeedingTaskName, "-Dbuild-listener-failure"
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
            failure.assertHasDescription("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

                                        tsl::FileSystem** result) override {
        return absl::InternalError("Broken file system");
      }
    
     private:
      void GetLocalTempDirectories(std::vector<tsl::string>* list) override {
        list->push_back("/tmp");
      }
    };
    
    // Represents an environment with broken file system and no available local tmp
    // directories.
    class TestEnvBrokenFileSystemAndNoLocalTempDirs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. cni/pkg/config/config.go

    	// The node name that the CNI DaemonSet runs on
    	NodeName string
    
    	// Key and value for broken pod label
    	LabelKey   string
    	LabelValue string
    
    	// Whether to fix race condition by repairing them
    	RepairPods bool
    
    	// Whether to fix race condition by delete broken pods
    	DeletePods bool
    
    	// Whether to label broken pods
    	LabelPods bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildProblemReportingIntegrationTest.groovy

            """
            file("inc/settings.gradle") << """
                include 'sub'
            """
            file("inc/sub/build.gradle") << """
                gradle.buildFinished { }
                tasks.register('broken') {
                    inputs.property('p', project).optional(true)
                    doLast { t -> t.project }
                }
            """
    
            when:
            configurationCacheFails ":inc:sub:broken"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

        }
    
        AnnotationProcessorDetector detector = new AnnotationProcessorDetector(new TestFileContentCacheFactory(), logger, true)
    
        def "detects no processors in broken jars"() {
            given:
            def jar = tmpDir.file("classes.jar")
            jar << "broken"
            def cp = files(jar)
    
            when:
            def processors = detector.detectProcessors(cp)
    
            then:
            processors == [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemDiagnosticsFactoryTest.groovy

            expect:
            stream.forCurrentCaller().stack.empty
    
            def failure1 = new Exception("broken")
            def diagnostics1 = stream.forCurrentCaller(failure1)
            diagnostics1.exception == failure1
            !diagnostics1.stack.empty
    
            def failure2 = new Exception("broken")
            def diagnostics2 = factory.forException(failure2)
            diagnostics2.exception == failure2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top