Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 296 for defeats (0.13 sec)

  1. pkg/volume/metrics_block.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	servermetrics "k8s.io/kubernetes/pkg/kubelet/server/metrics"
    )
    
    var _ MetricsProvider = &metricsBlock{}
    
    // metricsBlock represents a MetricsProvider that detects the size of the
    // BlockMode Volume.
    type metricsBlock struct {
    	// the device node where the volume is attached to.
    	device string
    }
    
    // NewMetricsStatfs creates a new metricsBlock with the device node of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.CompiledLanguage
    
    abstract class CrossTaskClassChangesIncrementalCompilationIntegrationTest extends AbstractCrossTaskIncrementalCompilationSupport {
    
        def "detects changed class in an upstream project"() {
            source api: ["class A {}", "class B {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeCliIncrementalCompilationIntegrationTest.groovy

        }
    
        /**
         * Test scenario from {@link BaseIncrementalCompilationAfterFailureIntegrationTest#detects deletion of a source base class that leads to compilation failure but keeps old files()}
         * but for the CLI compiler where incremental compilation after failure is not supported.
         */
        def "detects deletion of a source base class that leads to compilation failure"() {
            def a = source "class A {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainerTest.groovy

        }
    
        def "detects cycles early"() {
            replacements.module("o:a").replacedBy("o:b")
            when: replacements.module("o:b").replacedBy("o:a")
    
            then:
            def ex = thrown(InvalidUserDataException)
            ex.message == "Cannot declare module replacement o:b->o:a because it introduces a cycle: o:b->o:a->o:b"
        }
    
        def "detects transitive cycles early"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. releasenotes/notes/35483.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 06 19:12:46 UTC 2021
    - 141 bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/limit.go

    	netLimitSem  chan struct{}
    )
    
    type netTokenChecker struct {
    	released bool
    	// We want to use a finalizer to check that all acquired tokens are returned,
    	// so we arbitrarily pad the tokens with a string to defeat the runtime's
    	// “tiny allocator”.
    	unusedAvoidTinyAllocator string
    }
    
    func (c *netTokenChecker) panicUnreleased() {
    	panic("internal error: net token acquired but not released")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/appends/doc.go

    // Copyright 2023 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.
    
    // Package appends defines an Analyzer that detects
    // if there is only one variable in append.
    //
    // # Analyzer appends
    //
    // appends: check for missing values after append
    //
    // This checker reports calls to append that pass
    // no values to be appended to the slice.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 20:55:20 UTC 2023
    - 577 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		{name: ":status", value: "404"}:                   13,
    		{name: ":status", value: "500"}:                   14,
    		{name: "accept-charset", value: ""}:               15,
    		{name: "accept-encoding", value: "gzip, deflate"}: 16,
    		{name: "accept-language", value: ""}:              17,
    		{name: "accept-ranges", value: ""}:                18,
    		{name: "accept", value: ""}:                       19,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/assign/doc.go

    // Copyright 2023 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.
    
    // Package assign defines an Analyzer that detects useless assignments.
    //
    // # Analyzer assign
    //
    // assign: check for useless assignments
    //
    // This checker reports assignments of the form x = x or a[i] = a[i].
    // These are almost always useless, and even when they aren't they are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 481 bytes
    - Viewed (0)
  10. pkg/kubelet/userns/inuserns/inuserns_others.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package inuserns
    
    // RunningInUserNS detects whether the current process is running in a user namespace.
    func RunningInUserNS() bool {
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 01:42:20 UTC 2024
    - 758 bytes
    - Viewed (0)
Back to top